mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
3289a8c35e
* Move Api files * Move Core files * Move Infrastructure files * Move Sql Files * Move Api Sync files to Vault * Move test vault files * Update Sql.sqlproj paths * Update Codeowners * Fix vault file paths in sqlproj * Update CipherDetails.sql path in sqlproj * Update Core models and entities namespaces * Update namespaces Core Services and Repositories * Missed service namespaces * Update Api namespaces * Update Infrastructure namespaces * Move infrastructure queries that were missed * Tests namespace updates * Admin and Events namespace updates * Remove unused usings * Remove extra CiphersController usings * Rename folder * Fix CipherDetails namespace * Sqlproj fixes * Move stored procs into folders by table * using order fix
33 lines
1.2 KiB
C#
33 lines
1.2 KiB
C#
using AutoFixture;
|
|
using AutoFixture.Dsl;
|
|
using Bit.Core.Vault.Models.Data;
|
|
|
|
namespace Bit.Core.Test.AutoFixture.CipherAttachmentMetaData;
|
|
|
|
public class MetaData : ICustomization
|
|
{
|
|
protected virtual IPostprocessComposer<CipherAttachment.MetaData> ComposerAction(IFixture fixture,
|
|
ICustomizationComposer<CipherAttachment.MetaData> composer)
|
|
{
|
|
return composer.With(d => d.Size, fixture.Create<long>());
|
|
}
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customize<CipherAttachment.MetaData>(composer => ComposerAction(fixture, composer));
|
|
}
|
|
}
|
|
|
|
public class MetaDataWithoutContainer : MetaData
|
|
{
|
|
protected override IPostprocessComposer<CipherAttachment.MetaData> ComposerAction(IFixture fixture,
|
|
ICustomizationComposer<CipherAttachment.MetaData> composer) =>
|
|
base.ComposerAction(fixture, composer).With(d => d.ContainerName, (string)null);
|
|
}
|
|
|
|
public class MetaDataWithoutKey : MetaDataWithoutContainer
|
|
{
|
|
protected override IPostprocessComposer<CipherAttachment.MetaData> ComposerAction(IFixture fixture,
|
|
ICustomizationComposer<CipherAttachment.MetaData> composer) =>
|
|
base.ComposerAction(fixture, composer).Without(d => d.Key);
|
|
}
|