jellyfin/tests/Jellyfin.Common.Tests/Json/JsonGuidConverterTests.cs

69 lines
2.1 KiB
C#
Raw Normal View History

2020-10-02 13:43:34 -04:00
using System;
using System.Text.Json;
using MediaBrowser.Common.Json.Converters;
using Xunit;
2020-12-07 17:23:40 -05:00
namespace Jellyfin.Common.Tests.Json
2020-10-02 13:43:34 -04:00
{
2020-11-28 10:33:57 -05:00
public class JsonGuidConverterTests
2020-10-02 13:43:34 -04:00
{
2020-11-28 10:33:57 -05:00
private readonly JsonSerializerOptions _options;
public JsonGuidConverterTests()
{
_options = new JsonSerializerOptions();
_options.Converters.Add(new JsonGuidConverter());
}
2020-10-02 13:43:34 -04:00
[Fact]
2020-11-28 10:33:57 -05:00
public void Deserialize_Valid_Success()
2020-10-02 13:43:34 -04:00
{
2020-11-28 10:33:57 -05:00
Guid value = JsonSerializer.Deserialize<Guid>(@"""a852a27afe324084ae66db579ee3ee18""", _options);
2020-10-02 13:43:34 -04:00
Assert.Equal(new Guid("a852a27afe324084ae66db579ee3ee18"), value);
2020-11-28 10:33:57 -05:00
}
2020-10-02 13:43:34 -04:00
2020-11-28 10:33:57 -05:00
[Fact]
public void Deserialize_ValidDashed_Success()
{
Guid value = JsonSerializer.Deserialize<Guid>(@"""e9b2dcaa-529c-426e-9433-5e9981f27f2e""", _options);
2020-10-02 13:43:34 -04:00
Assert.Equal(new Guid("e9b2dcaa-529c-426e-9433-5e9981f27f2e"), value);
}
2020-10-04 10:26:43 -04:00
[Fact]
2020-11-28 10:33:57 -05:00
public void Roundtrip_Valid_Success()
2020-10-04 10:26:43 -04:00
{
Guid guid = new Guid("a852a27afe324084ae66db579ee3ee18");
2020-11-28 10:33:57 -05:00
string value = JsonSerializer.Serialize(guid, _options);
Assert.Equal(guid, JsonSerializer.Deserialize<Guid>(value, _options));
}
[Fact]
public void Deserialize_Null_EmptyGuid()
{
Assert.Equal(Guid.Empty, JsonSerializer.Deserialize<Guid>("null", _options));
}
[Fact]
2020-12-07 17:23:40 -05:00
public void Serialize_EmptyGuid_EmptyGuid()
2020-11-28 10:33:57 -05:00
{
2020-12-08 21:33:26 -05:00
Assert.Equal($"\"{Guid.Empty:N}\"", JsonSerializer.Serialize(Guid.Empty, _options));
}
[Fact]
public void Serialize_Valid_NoDash_Success()
{
var guid = new Guid("531797E9-9457-40E0-88BC-B1D6D38752FA");
var str = JsonSerializer.Serialize(guid, _options);
Assert.Equal($"\"{guid:N}\"", str);
2020-10-04 10:26:43 -04:00
}
2020-12-09 21:57:25 -05:00
[Fact]
public void Serialize_Nullable_Success()
{
Guid? guid = new Guid("531797E9-9457-40E0-88BC-B1D6D38752FA");
var str = JsonSerializer.Serialize(guid, _options);
Assert.Equal($"\"{guid:N}\"", str);
}
2020-10-02 13:43:34 -04:00
}
}