Merge pull request #4257 from Bond-009/tests3

Add tests for deserializing guids
This commit is contained in:
Joshua M. Boniface 2020-10-05 13:17:50 -04:00 committed by GitHub
commit 72ad3b327f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
using System;
using System.Text.Json;
using MediaBrowser.Common.Json.Converters;
using Xunit;
namespace Jellyfin.Common.Tests.Extensions
{
public static class JsonGuidConverterTests
{
[Fact]
public static void Deserialize_Valid_Success()
{
var options = new JsonSerializerOptions();
options.Converters.Add(new JsonGuidConverter());
Guid value = JsonSerializer.Deserialize<Guid>(@"""a852a27afe324084ae66db579ee3ee18""", options);
Assert.Equal(new Guid("a852a27afe324084ae66db579ee3ee18"), value);
value = JsonSerializer.Deserialize<Guid>(@"""e9b2dcaa-529c-426e-9433-5e9981f27f2e""", options);
Assert.Equal(new Guid("e9b2dcaa-529c-426e-9433-5e9981f27f2e"), value);
}
[Fact]
public static void Roundtrip_Valid_Success()
{
var options = new JsonSerializerOptions();
options.Converters.Add(new JsonGuidConverter());
Guid guid = new Guid("a852a27afe324084ae66db579ee3ee18");
string value = JsonSerializer.Serialize(guid, options);
Assert.Equal(guid, JsonSerializer.Deserialize<Guid>(value, options));
}
}
}