You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1015 B
29 lines
1015 B
using System.Text.Json;
|
|
using Jellyfin.Extensions.Json.Converters;
|
|
using MediaBrowser.Model.Session;
|
|
using Xunit;
|
|
|
|
namespace Jellyfin.Extensions.Tests.Json.Converters;
|
|
|
|
public class JsonFlagEnumTests
|
|
{
|
|
private readonly JsonSerializerOptions _jsonOptions = new()
|
|
{
|
|
Converters =
|
|
{
|
|
new JsonFlagEnumConverter<TranscodeReason>()
|
|
}
|
|
};
|
|
|
|
[Theory]
|
|
[InlineData(TranscodeReason.AudioIsExternal | TranscodeReason.ContainerNotSupported, "[\"ContainerNotSupported\",\"AudioIsExternal\"]")]
|
|
[InlineData(TranscodeReason.AudioIsExternal | TranscodeReason.ContainerNotSupported | TranscodeReason.VideoBitDepthNotSupported, "[\"ContainerNotSupported\",\"AudioIsExternal\",\"VideoBitDepthNotSupported\"]")]
|
|
[InlineData((TranscodeReason)0, "[]")]
|
|
public void Serialize_Transcode_Reason(TranscodeReason transcodeReason, string output)
|
|
{
|
|
var result = JsonSerializer.Serialize(transcodeReason, _jsonOptions);
|
|
|
|
Assert.Equal(output, result);
|
|
}
|
|
}
|