mirror of
https://github.com/bitwarden/server.git
synced 2025-01-16 20:51:23 +01:00
40 lines
932 B
C#
40 lines
932 B
C#
|
using System.Reflection;
|
|||
|
using AutoFixture;
|
|||
|
using AutoFixture.Xunit2;
|
|||
|
using Bit.Core.Enums;
|
|||
|
|
|||
|
namespace Bit.Core.Test.AutoFixture.OrganizationUserFixtures
|
|||
|
{
|
|||
|
internal class Policy : ICustomization
|
|||
|
{
|
|||
|
public PolicyType Type { get; set; }
|
|||
|
|
|||
|
public Policy(PolicyType type)
|
|||
|
{
|
|||
|
Type = type;
|
|||
|
}
|
|||
|
|
|||
|
public void Customize(IFixture fixture)
|
|||
|
{
|
|||
|
fixture.Customize<Core.Models.Table.Policy>(composer => composer
|
|||
|
.With(o => o.Type, Type)
|
|||
|
.With(o => o.Enabled, true));
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public class PolicyAttribute : CustomizeAttribute
|
|||
|
{
|
|||
|
private readonly PolicyType _type;
|
|||
|
|
|||
|
public PolicyAttribute(PolicyType type)
|
|||
|
{
|
|||
|
_type = type;
|
|||
|
}
|
|||
|
|
|||
|
public override ICustomization GetCustomization(ParameterInfo parameter)
|
|||
|
{
|
|||
|
return new Policy(_type);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|