mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
a6d97118fa
* Update ProviderService tests * Use BitAutoData in CipherService tests * Simplify UserCipher fixture Because we use a single customizer for all ciphers, they all have the same userId. * Clean up more cipher fixtures * Swap Cipher Fixtures to BitCustomizeAttribute * Clean up collection fixtures * Clean up GroupFixtures * Move SendService Tests to BitAutoData * Clean up Organization Fixtures TODO: The customize attributes should not be customizing more than one class * Name files after the class they contain * Clear up usage of CustomAutoDataAttribute in tests * Clean up usages of InlineCustomAutoData * format * Manually merge with file-scoped-namespace changes
60 lines
1.8 KiB
C#
60 lines
1.8 KiB
C#
using AutoFixture;
|
|
using AutoFixture.Kernel;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
using Bit.Core.Models;
|
|
using Bit.Core.Test.AutoFixture.OrganizationFixtures;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
|
|
namespace Bit.Core.Test.AutoFixture.UserFixtures;
|
|
|
|
public class UserBuilder : ISpecimenBuilder
|
|
{
|
|
public object Create(object request, ISpecimenContext context)
|
|
{
|
|
if (context == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(context));
|
|
}
|
|
|
|
var type = request as Type;
|
|
if (type == typeof(User))
|
|
{
|
|
var fixture = new Fixture();
|
|
var providers = fixture.Create<Dictionary<TwoFactorProviderType, TwoFactorProvider>>();
|
|
var user = fixture.WithAutoNSubstitutions().Create<User>();
|
|
user.SetTwoFactorProviders(providers);
|
|
return user;
|
|
}
|
|
else if (type == typeof(List<User>))
|
|
{
|
|
var fixture = new Fixture();
|
|
var users = fixture.WithAutoNSubstitutions().CreateMany<User>(2);
|
|
foreach (var user in users)
|
|
{
|
|
var providers = fixture.Create<Dictionary<TwoFactorProviderType, TwoFactorProvider>>();
|
|
user.SetTwoFactorProviders(providers);
|
|
}
|
|
return users;
|
|
}
|
|
|
|
return new NoSpecimen();
|
|
}
|
|
}
|
|
|
|
internal class UserCustomizeAttribute : BitCustomizeAttribute
|
|
{
|
|
public override ICustomization GetCustomization() => new UserFixture();
|
|
}
|
|
|
|
public class UserFixture : ICustomization
|
|
{
|
|
public virtual void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customizations.Add(new GlobalSettingsBuilder());
|
|
fixture.Customizations.Add(new UserBuilder());
|
|
fixture.Customizations.Add(new OrganizationBuilder());
|
|
}
|
|
}
|