mirror of
https://github.com/bitwarden/server.git
synced 2024-12-04 14:13:28 +01:00
65 lines
2.1 KiB
C#
65 lines
2.1 KiB
C#
|
using AutoFixture;
|
||
|
using TableModel = Bit.Core.Models.Table;
|
||
|
using Bit.Core.Test.AutoFixture.Attributes;
|
||
|
using Bit.Core.Test.AutoFixture.GlobalSettingsFixtures;
|
||
|
using AutoMapper;
|
||
|
using Bit.Core.Models.EntityFramework;
|
||
|
using Bit.Core.Models;
|
||
|
using System.Collections.Generic;
|
||
|
using Bit.Core.Enums;
|
||
|
using AutoFixture.Kernel;
|
||
|
using System;
|
||
|
using Bit.Core.Test.AutoFixture.OrganizationFixtures;
|
||
|
using Bit.Core.Repositories.EntityFramework;
|
||
|
using Bit.Core.Test.AutoFixture.EntityFrameworkRepositoryFixtures;
|
||
|
using Bit.Core.Test.AutoFixture.Relays;
|
||
|
|
||
|
namespace Bit.Core.Test.AutoFixture.GrantFixtures
|
||
|
{
|
||
|
internal class GrantBuilder: 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(TableModel.Grant))
|
||
|
{
|
||
|
return new NoSpecimen();
|
||
|
}
|
||
|
|
||
|
var fixture = new Fixture();
|
||
|
fixture.Customizations.Insert(0, new MaxLengthStringRelay());
|
||
|
var obj = fixture.WithAutoNSubstitutions().Create<TableModel.Grant>();
|
||
|
return obj;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal class EfGrant: ICustomization
|
||
|
{
|
||
|
public void Customize(IFixture fixture)
|
||
|
{
|
||
|
fixture.Customizations.Add(new IgnoreVirtualMembersCustomization());
|
||
|
fixture.Customizations.Add(new GlobalSettingsBuilder());
|
||
|
fixture.Customizations.Add(new GrantBuilder());
|
||
|
fixture.Customizations.Add(new EfRepositoryListBuilder<GrantRepository>());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
internal class EfGrantAutoDataAttribute : CustomAutoDataAttribute
|
||
|
{
|
||
|
public EfGrantAutoDataAttribute() : base(new SutProviderCustomization(), new EfGrant())
|
||
|
{ }
|
||
|
}
|
||
|
|
||
|
internal class InlineEfGrantAutoDataAttribute : InlineCustomAutoDataAttribute
|
||
|
{
|
||
|
public InlineEfGrantAutoDataAttribute(params object[] values) : base(new[] { typeof(SutProviderCustomization),
|
||
|
typeof(EfGrant) }, values)
|
||
|
{ }
|
||
|
}
|
||
|
}
|