mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
bae03feffe
* Revert "Add git blame entry (#2226)" This reverts commit239286737d
. * Revert "Turn on file scoped namespaces (#2225)" This reverts commit34fb4cca2a
.
33 lines
829 B
C#
33 lines
829 B
C#
using System.Text.Json;
|
|
using AutoFixture;
|
|
using AutoFixture.Kernel;
|
|
|
|
namespace Bit.Test.Common.AutoFixture.JsonDocumentFixtures
|
|
{
|
|
public class JsonDocumentCustomization : ICustomization, ISpecimenBuilder
|
|
{
|
|
|
|
public string Json { get; set; }
|
|
|
|
public void Customize(IFixture fixture)
|
|
{
|
|
fixture.Customizations.Add(this);
|
|
}
|
|
|
|
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(JsonDocument)))
|
|
{
|
|
return new NoSpecimen();
|
|
}
|
|
|
|
return JsonDocument.Parse(Json ?? "{}");
|
|
}
|
|
}
|
|
}
|