mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit 239286737d15cb84a893703ee5a8b33a2d67ad3d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit 34fb4cca2aa78deb84d4cbc359992a7c6bba7ea5.
55 lines
1.8 KiB
C#
55 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;
|
|
|
|
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();
|
|
}
|
|
}
|
|
|
|
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());
|
|
}
|
|
}
|
|
}
|