mirror of
https://github.com/bitwarden/server.git
synced 2024-11-26 12:55:17 +01:00
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using System.Reflection;
|
|
using AutoFixture;
|
|
using AutoFixture.Xunit2;
|
|
using Bit.Core.Enums.Provider;
|
|
|
|
namespace Bit.CommCore.Test.AutoFixture.ProviderUserFixtures
|
|
{
|
|
internal class ProviderUser : ICustomization
|
|
{
|
|
public ProviderUserStatusType Status { get; set; }
|
|
public ProviderUserType Type { get; set; }
|
|
|
|
public ProviderUser(ProviderUserStatusType status, ProviderUserType type)
|
|
{
|
|
Status = status;
|
|
Type = type;
|
|
}
|
|
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customize<Core.Entities.Provider.ProviderUser>(composer => composer
|
|
.With(o => o.Type, Type)
|
|
.With(o => o.Status, Status));
|
|
}
|
|
}
|
|
|
|
public class ProviderUserAttribute : CustomizeAttribute
|
|
{
|
|
private readonly ProviderUserStatusType _status;
|
|
private readonly ProviderUserType _type;
|
|
|
|
public ProviderUserAttribute(
|
|
ProviderUserStatusType status = ProviderUserStatusType.Confirmed,
|
|
ProviderUserType type = ProviderUserType.ProviderAdmin)
|
|
{
|
|
_status = status;
|
|
_type = type;
|
|
}
|
|
|
|
public override ICustomization GetCustomization(ParameterInfo parameter)
|
|
{
|
|
return new ProviderUser(_status, _type);
|
|
}
|
|
}
|
|
}
|