2021-03-31 02:42:43 +03:00
|
|
|
|
using System;
|
2023-09-28 16:00:20 +03:00
|
|
|
|
using System.Text;
|
2021-03-31 02:42:43 +03:00
|
|
|
|
using AutoFixture;
|
|
|
|
|
using Bit.Core.Models.Domain;
|
2023-09-28 16:00:20 +03:00
|
|
|
|
using Bit.Core.Models.View;
|
2021-03-31 02:42:43 +03:00
|
|
|
|
using Bit.Test.Common.AutoFixture;
|
|
|
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Test.AutoFixture
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
internal class OrganizationCipher : ICustomization
|
|
|
|
|
{
|
|
|
|
|
public string OrganizationId { get; set; }
|
|
|
|
|
public void Customize(IFixture fixture)
|
|
|
|
|
{
|
|
|
|
|
fixture.Customize<Cipher>(composer => composer
|
|
|
|
|
.With(c => c.OrganizationId, OrganizationId ?? Guid.NewGuid().ToString()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal class UserCipher : ICustomization
|
|
|
|
|
{
|
|
|
|
|
public void Customize(IFixture fixture)
|
|
|
|
|
{
|
|
|
|
|
fixture.Customize<Cipher>(composer => composer
|
|
|
|
|
.Without(c => c.OrganizationId));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-28 16:00:20 +03:00
|
|
|
|
internal class UserCipherView : ICustomization
|
|
|
|
|
{
|
|
|
|
|
public void Customize(IFixture fixture)
|
|
|
|
|
{
|
|
|
|
|
byte[] getRandomBytes(int size)
|
|
|
|
|
{
|
|
|
|
|
Random random = new Random();
|
|
|
|
|
|
|
|
|
|
byte[] bytes = new byte[size];
|
|
|
|
|
random.NextBytes(bytes);
|
|
|
|
|
return bytes;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
fixture.Customize<CipherView>(composer => composer
|
|
|
|
|
.Without(c => c.OrganizationId)
|
|
|
|
|
.Without(c => c.Attachments)
|
|
|
|
|
.With(c => c.Key, new SymmetricCryptoKey(getRandomBytes(32), Enums.EncryptionType.AesCbc128_HmacSha256_B64)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-31 02:42:43 +03:00
|
|
|
|
internal class UserCipherAutoDataAttribute : CustomAutoDataAttribute
|
|
|
|
|
{
|
|
|
|
|
public UserCipherAutoDataAttribute() : base(new SutProviderCustomization(),
|
2023-09-28 16:00:20 +03:00
|
|
|
|
new UserCipher(), new UserCipherView())
|
2021-03-31 02:42:43 +03:00
|
|
|
|
{ }
|
|
|
|
|
}
|
|
|
|
|
internal class InlineUserCipherAutoDataAttribute : InlineCustomAutoDataAttribute
|
|
|
|
|
{
|
|
|
|
|
public InlineUserCipherAutoDataAttribute(params object[] values) : base(new[] { typeof(SutProviderCustomization),
|
2023-09-28 16:00:20 +03:00
|
|
|
|
typeof(UserCipher), typeof(UserCipherView) }, values)
|
2021-03-31 02:42:43 +03:00
|
|
|
|
{ }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal class InlineKnownUserCipherAutoDataAttribute : InlineCustomAutoDataAttribute
|
|
|
|
|
{
|
|
|
|
|
public InlineKnownUserCipherAutoDataAttribute(string userId, params object[] values) : base(new ICustomization[]
|
|
|
|
|
{ new SutProviderCustomization(), new UserCipher() }, values)
|
|
|
|
|
{ }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal class OrganizationCipherAutoDataAttribute : CustomAutoDataAttribute
|
|
|
|
|
{
|
|
|
|
|
public OrganizationCipherAutoDataAttribute(string organizationId = null) : base(new SutProviderCustomization(),
|
|
|
|
|
new OrganizationCipher { OrganizationId = organizationId ?? null })
|
|
|
|
|
{ }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal class InlineOrganizationCipherAutoDataAttribute : InlineCustomAutoDataAttribute
|
|
|
|
|
{
|
|
|
|
|
public InlineOrganizationCipherAutoDataAttribute(params object[] values) : base(new[] { typeof(SutProviderCustomization),
|
|
|
|
|
typeof(OrganizationCipher) }, values)
|
|
|
|
|
{ }
|
|
|
|
|
}
|
|
|
|
|
}
|