1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-25 12:45:18 +01:00
bitwarden-server/test/Core.Test/Utilities/JsonHelpersTests.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

66 lines
1.6 KiB
C#
Raw Normal View History

using System.Text.Json;
using Bit.Core.Utilities;
using Xunit;
namespace Bit.Core.Test.Helpers;
2022-08-29 22:06:55 +02:00
public class JsonHelpersTests
{
private static void CompareJson<T>(T value, JsonSerializerOptions options, Newtonsoft.Json.JsonSerializerSettings settings)
{
var stgJson = JsonSerializer.Serialize(value, options);
var nsJson = Newtonsoft.Json.JsonConvert.SerializeObject(value, settings);
Assert.Equal(stgJson, nsJson);
}
[Fact]
public void DefaultJsonOptions()
2022-08-29 22:06:55 +02:00
{
var testObject = new SimpleTestObject
{
Id = 0,
Name = "Test",
};
CompareJson(testObject, JsonHelpers.Default, new Newtonsoft.Json.JsonSerializerSettings());
}
[Fact]
public void IndentedJsonOptions()
2022-08-29 22:06:55 +02:00
{
var testObject = new SimpleTestObject
{
Id = 10,
Name = "Test Name"
};
CompareJson(testObject, JsonHelpers.Indented, new Newtonsoft.Json.JsonSerializerSettings
{
Formatting = Newtonsoft.Json.Formatting.Indented,
});
}
2022-08-29 20:53:16 +02:00
[Fact]
public void NullValueHandlingJsonOptions()
2022-08-29 20:53:16 +02:00
{
var testObject = new SimpleTestObject
{
Id = 14,
Name = null,
};
2022-08-29 22:06:55 +02:00
CompareJson(testObject, JsonHelpers.IgnoreWritingNull, new Newtonsoft.Json.JsonSerializerSettings
{
NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore,
});
}
2022-08-29 20:53:16 +02:00
}
2022-08-29 22:06:55 +02:00
public class SimpleTestObject
2022-08-29 22:06:55 +02:00
{
public int Id { get; set; }
public string Name { get; set; }
2022-08-29 22:06:55 +02:00
}