mirror of
https://github.com/bitwarden/server.git
synced 2024-11-28 13:15:12 +01:00
febc696c80
* fix: align policy checks for excluded types, update tests, create fixture, refs AC-240 * fix: update final policy check against other orgs (not including the current), refs AC-240
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using System.Reflection;
|
|
using AutoFixture;
|
|
using AutoFixture.Xunit2;
|
|
using Bit.Core.AdminConsole.Enums;
|
|
using Bit.Core.Models.Data.Organizations.OrganizationUsers;
|
|
|
|
namespace Bit.Core.Test.AdminConsole.AutoFixture;
|
|
|
|
internal class OrganizationUserPolicyDetailsCustomization : ICustomization
|
|
{
|
|
public PolicyType Type { get; set; }
|
|
|
|
public OrganizationUserPolicyDetailsCustomization(PolicyType type)
|
|
{
|
|
Type = type;
|
|
}
|
|
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customize<OrganizationUserPolicyDetails>(composer => composer
|
|
.With(o => o.OrganizationId, Guid.NewGuid())
|
|
.With(o => o.PolicyType, Type)
|
|
.With(o => o.PolicyEnabled, true));
|
|
}
|
|
}
|
|
|
|
public class OrganizationUserPolicyDetailsAttribute : CustomizeAttribute
|
|
{
|
|
private readonly PolicyType _type;
|
|
|
|
public OrganizationUserPolicyDetailsAttribute(PolicyType type)
|
|
{
|
|
_type = type;
|
|
}
|
|
|
|
public override ICustomization GetCustomization(ParameterInfo parameter)
|
|
{
|
|
return new OrganizationUserPolicyDetailsCustomization(_type);
|
|
}
|
|
}
|