You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.6 KiB
74 lines
2.6 KiB
using AutoFixture; |
|
using AutoFixture.Kernel; |
|
using Bit.Core.Entities; |
|
using Bit.Core.Test.AutoFixture.EntityFrameworkRepositoryFixtures; |
|
using Bit.Core.Test.AutoFixture.OrganizationFixtures; |
|
using Bit.Core.Test.AutoFixture.Relays; |
|
using Bit.Infrastructure.EntityFramework.Repositories; |
|
using Bit.Test.Common.AutoFixture; |
|
using Bit.Test.Common.AutoFixture.Attributes; |
|
|
|
namespace Bit.Core.Test.AutoFixture.GroupFixtures |
|
{ |
|
internal class GroupOrganizationAutoDataAttribute : CustomAutoDataAttribute |
|
{ |
|
public GroupOrganizationAutoDataAttribute() : base( |
|
new SutProviderCustomization(), new OrganizationCustomization { UseGroups = true }) |
|
{ } |
|
} |
|
|
|
internal class GroupOrganizationNotUseGroupsAutoDataAttribute : CustomAutoDataAttribute |
|
{ |
|
public GroupOrganizationNotUseGroupsAutoDataAttribute() : base( |
|
new SutProviderCustomization(), new OrganizationCustomization { UseGroups = false }) |
|
{ } |
|
} |
|
|
|
internal class GroupBuilder : ISpecimenBuilder |
|
{ |
|
public object Create(object request, ISpecimenContext context) |
|
{ |
|
if (context == null) |
|
{ |
|
throw new ArgumentNullException(nameof(context)); |
|
} |
|
|
|
var type = request as Type; |
|
if (type == null || type != typeof(Group)) |
|
{ |
|
return new NoSpecimen(); |
|
} |
|
|
|
var fixture = new Fixture(); |
|
fixture.Customizations.Insert(0, new MaxLengthStringRelay()); |
|
var obj = fixture.WithAutoNSubstitutions().Create<Group>(); |
|
return obj; |
|
} |
|
} |
|
|
|
internal class EfGroup : ICustomization |
|
{ |
|
public void Customize(IFixture fixture) |
|
{ |
|
fixture.Customizations.Add(new IgnoreVirtualMembersCustomization()); |
|
fixture.Customizations.Add(new GlobalSettingsBuilder()); |
|
fixture.Customizations.Add(new GroupBuilder()); |
|
fixture.Customizations.Add(new OrganizationBuilder()); |
|
fixture.Customizations.Add(new EfRepositoryListBuilder<GroupRepository>()); |
|
fixture.Customizations.Add(new EfRepositoryListBuilder<OrganizationRepository>()); |
|
} |
|
} |
|
|
|
internal class EfGroupAutoDataAttribute : CustomAutoDataAttribute |
|
{ |
|
public EfGroupAutoDataAttribute() : base(new SutProviderCustomization(), new EfGroup()) |
|
{ } |
|
} |
|
|
|
internal class InlineEfGroupAutoDataAttribute : InlineCustomAutoDataAttribute |
|
{ |
|
public InlineEfGroupAutoDataAttribute(params object[] values) : base(new[] { typeof(SutProviderCustomization), |
|
typeof(EfGroup) }, values) |
|
{ } |
|
} |
|
}
|
|
|