mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +01:00
32 lines
743 B
C#
32 lines
743 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 ?? "{}");
|
|
}
|
|
}
|