mirror of
https://github.com/bitwarden/server.git
synced 2025-04-07 14:08:13 -05:00

* Revert "Add git blame entry (#2226)" This reverts commit 239286737d15cb84a893703ee5a8b33a2d67ad3d. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit 34fb4cca2aa78deb84d4cbc359992a7c6bba7ea5.
47 lines
1.4 KiB
C#
47 lines
1.4 KiB
C#
using System.Reflection;
|
|
using AutoFixture;
|
|
using AutoFixture.Xunit2;
|
|
using Bit.Core.Entities;
|
|
using Bit.Core.Enums;
|
|
|
|
namespace Bit.Core.Test.AutoFixture.OrganizationUserFixtures
|
|
{
|
|
public class OrganizationUserCustomization : ICustomization
|
|
{
|
|
public OrganizationUserStatusType Status { get; set; }
|
|
public OrganizationUserType Type { get; set; }
|
|
|
|
public OrganizationUserCustomization(OrganizationUserStatusType status, OrganizationUserType type)
|
|
{
|
|
Status = status;
|
|
Type = type;
|
|
}
|
|
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customize<OrganizationUser>(composer => composer
|
|
.With(o => o.Type, Type)
|
|
.With(o => o.Status, Status));
|
|
}
|
|
}
|
|
|
|
public class OrganizationUserAttribute : CustomizeAttribute
|
|
{
|
|
private readonly OrganizationUserStatusType _status;
|
|
private readonly OrganizationUserType _type;
|
|
|
|
public OrganizationUserAttribute(
|
|
OrganizationUserStatusType status = OrganizationUserStatusType.Confirmed,
|
|
OrganizationUserType type = OrganizationUserType.User)
|
|
{
|
|
_status = status;
|
|
_type = type;
|
|
}
|
|
|
|
public override ICustomization GetCustomization(ParameterInfo parameter)
|
|
{
|
|
return new OrganizationUserCustomization(_status, _type);
|
|
}
|
|
}
|
|
}
|