mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
8262af3c53
* Fix typo in error message: 'Unkown' -> 'Unknown' * Fix typos in error message * Fix typo in example text: 'licence' -> 'license' * Fix typo in validation: 'Ooganization' -> 'Organization' * Fix typo in text string: 'compatibilty' -> 'compatibility' * Fix typo: 'ProviderDisllowedOrganizationTypes' -> 'ProviderDisallowedOrganizationTypes' * Fix typo: 'NSubstitueVersion' -> 'NSubstituteVersion' * Fix typo: 'CreateIntialInvite' -> 'CreateInitialInvite' * Fix typo: '_queuryScheme' -> '_queryScheme' * Fix typo: 'GetApplicationCacheServiceBusSubcriptionName' -> 'GetApplicationCacheServiceBusSubscriptionName' * Fix typo: 'metaDataRespository' -> 'metaDataRepository' * Fix typo: 'cipherAttachements' -> 'cipherAttachments' * Fix typo: 'savedEmergencyAccesss' -> 'savedEmergencyAccesses' * Fix typo: 'owerOrgUser' -> 'ownerOrgUser' * Fix typo: 'Organiation' -> 'Organization' * Fix typo: 'extistingUser' -> 'existingUser' * Fix typo: 'availibleAccess' -> 'availableAccess' * Fix typo: 'HasEnouphStorage' -> 'HasEnoughStorage' * Fix typo: 'extistingOrg' -> 'existingOrg' * Fix typo: 'subcriber' -> 'subscriber' * Fix typo: 'availibleCollections' -> 'availableCollections' * Fix typo: 'Succes' -> 'Success' * Fix typo: 'CreateAsync_UpdateWithCollecitons_Works' -> 'CreateAsync_UpdateWithCollections_Works' * Fix typo: 'BadInsallationId' -> 'BadInstallationId' * Fix typo: 'OrgNotFamiles' -> 'OrgNotFamilies' * Revert "Fix typo: 'Organiation' -> 'Organization'" This reverts commit8aadad1c25
. * Revert "Fix typos in error message" This reverts commit81d201fc09
. --------- Co-authored-by: Daniel James Smith <djsmith@web.de>
109 lines
4.1 KiB
C#
109 lines
4.1 KiB
C#
using System.Text.Json;
|
|
using AutoFixture;
|
|
using AutoFixture.Kernel;
|
|
using Bit.Core.Test.AutoFixture.UserFixtures;
|
|
using Bit.Core.Vault.Entities;
|
|
using Bit.Core.Vault.Models.Data;
|
|
using Bit.Infrastructure.EFIntegration.Test.AutoFixture.Relays;
|
|
using Bit.Infrastructure.EntityFramework.Repositories;
|
|
using Bit.Infrastructure.EntityFramework.Vault.Repositories;
|
|
using Bit.Test.Common.AutoFixture;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
|
|
namespace Bit.Infrastructure.EFIntegration.Test.AutoFixture;
|
|
|
|
internal class CipherBuilder : ISpecimenBuilder
|
|
{
|
|
public bool OrganizationOwned { get; set; }
|
|
public object Create(object request, ISpecimenContext context)
|
|
{
|
|
if (context == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(context));
|
|
}
|
|
|
|
var type = request as Type;
|
|
if (type == null || (type != typeof(Cipher) && type != typeof(List<Cipher>)))
|
|
{
|
|
return new NoSpecimen();
|
|
}
|
|
|
|
var fixture = new Fixture();
|
|
fixture.Customizations.Insert(0, new MaxLengthStringRelay());
|
|
|
|
if (!OrganizationOwned)
|
|
{
|
|
fixture.Customize<Cipher>(composer => composer
|
|
.Without(c => c.OrganizationId));
|
|
}
|
|
|
|
// Can't test valid Favorites and Folders without creating those values inside each test,
|
|
// since we won't have any UserIds until the test is running & creating data
|
|
fixture.Customize<Cipher>(c => c
|
|
.Without(e => e.Favorites)
|
|
.Without(e => e.Folders));
|
|
//
|
|
var serializerOptions = new JsonSerializerOptions()
|
|
{
|
|
PropertyNamingPolicy = JsonNamingPolicy.CamelCase
|
|
};
|
|
|
|
if (type == typeof(Cipher))
|
|
{
|
|
var obj = fixture.WithAutoNSubstitutions().Create<Cipher>();
|
|
var cipherData = fixture.WithAutoNSubstitutions().Create<CipherLoginData>();
|
|
var cipherAttachments = fixture.WithAutoNSubstitutions().Create<List<CipherAttachment>>();
|
|
obj.Data = JsonSerializer.Serialize(cipherData, serializerOptions);
|
|
obj.Attachments = JsonSerializer.Serialize(cipherAttachments, serializerOptions);
|
|
|
|
return obj;
|
|
}
|
|
if (type == typeof(List<Cipher>))
|
|
{
|
|
var ciphers = fixture.WithAutoNSubstitutions().CreateMany<Cipher>().ToArray();
|
|
for (var i = 0; i < ciphers.Count(); i++)
|
|
{
|
|
var cipherData = fixture.WithAutoNSubstitutions().Create<CipherLoginData>();
|
|
var cipherAttachments = fixture.WithAutoNSubstitutions().Create<List<CipherAttachment>>();
|
|
ciphers[i].Data = JsonSerializer.Serialize(cipherData, serializerOptions);
|
|
ciphers[i].Attachments = JsonSerializer.Serialize(cipherAttachments, serializerOptions);
|
|
}
|
|
|
|
return ciphers;
|
|
}
|
|
|
|
return new NoSpecimen();
|
|
}
|
|
}
|
|
|
|
internal class EfCipher : ICustomization
|
|
{
|
|
public bool OrganizationOwned { get; set; }
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customizations.Add(new GlobalSettingsBuilder());
|
|
fixture.Customizations.Add(new CipherBuilder()
|
|
{
|
|
OrganizationOwned = OrganizationOwned
|
|
});
|
|
fixture.Customizations.Add(new UserBuilder());
|
|
fixture.Customizations.Add(new OrganizationBuilder());
|
|
fixture.Customizations.Add(new OrganizationUserBuilder());
|
|
fixture.Customizations.Add(new EfRepositoryListBuilder<CipherRepository>());
|
|
fixture.Customizations.Add(new EfRepositoryListBuilder<OrganizationRepository>());
|
|
fixture.Customizations.Add(new EfRepositoryListBuilder<OrganizationUserRepository>());
|
|
fixture.Customizations.Add(new EfRepositoryListBuilder<UserRepository>());
|
|
fixture.Customizations.Add(new EfRepositoryListBuilder<CollectionRepository>());
|
|
}
|
|
}
|
|
|
|
internal class EfUserCipherCustomizeAttribute : BitCustomizeAttribute
|
|
{
|
|
public override ICustomization GetCustomization() => new EfCipher();
|
|
}
|
|
|
|
internal class EfOrganizationCipherCustomizeAttribute : BitCustomizeAttribute
|
|
{
|
|
public override ICustomization GetCustomization() => new EfCipher();
|
|
}
|