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

70 lines
2.2 KiB
C#
Raw Normal View History

2020-10-02 19:43:34 +02:00
using System;
2020-12-09 03:33:26 +01:00
using System.Globalization;
2020-10-02 19:43:34 +02:00
using System.Text.Json;
using MediaBrowser.Common.Json.Converters;
using Xunit;
2020-12-07 23:23:40 +01:00
namespace Jellyfin.Common.Tests.Json
2020-10-02 19:43:34 +02:00
{
2020-11-28 16:33:57 +01:00
public class JsonGuidConverterTests
2020-10-02 19:43:34 +02:00
{
2020-11-28 16:33:57 +01:00
private readonly JsonSerializerOptions _options;
public JsonGuidConverterTests()
{
_options = new JsonSerializerOptions();
_options.Converters.Add(new JsonGuidConverter());
}
2020-10-02 19:43:34 +02:00
[Fact]
2020-11-28 16:33:57 +01:00
public void Deserialize_Valid_Success()
2020-10-02 19:43:34 +02:00
{
2020-11-28 16:33:57 +01:00
Guid value = JsonSerializer.Deserialize<Guid>(@"""a852a27afe324084ae66db579ee3ee18""", _options);
2020-10-02 19:43:34 +02:00
Assert.Equal(new Guid("a852a27afe324084ae66db579ee3ee18"), value);
2020-11-28 16:33:57 +01:00
}
2020-10-02 19:43:34 +02:00
2020-11-28 16:33:57 +01:00
[Fact]
public void Deserialize_ValidDashed_Success()
{
Guid value = JsonSerializer.Deserialize<Guid>(@"""e9b2dcaa-529c-426e-9433-5e9981f27f2e""", _options);
2020-10-02 19:43:34 +02:00
Assert.Equal(new Guid("e9b2dcaa-529c-426e-9433-5e9981f27f2e"), value);
}
2020-10-04 16:26:43 +02:00
[Fact]
2020-11-28 16:33:57 +01:00
public void Roundtrip_Valid_Success()
2020-10-04 16:26:43 +02:00
{
Guid guid = new Guid("a852a27afe324084ae66db579ee3ee18");
2020-11-28 16:33:57 +01: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 23:23:40 +01:00
public void Serialize_EmptyGuid_EmptyGuid()
2020-11-28 16:33:57 +01:00
{
2020-12-09 03:33:26 +01: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 16:26:43 +02:00
}
2020-12-10 03:57:25 +01: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 19:43:34 +02:00
}
}