jellyfin/tests/Jellyfin.Api.Tests/Helpers/RequestHelpersTests.cs

60 lines
1.8 KiB
C#
Raw Normal View History

2021-01-24 11:43:05 +01:00
using System;
using System.Collections.Generic;
using Jellyfin.Api.Helpers;
using Jellyfin.Data.Enums;
using Xunit;
namespace Jellyfin.Api.Tests.Helpers
{
public static class RequestHelpersTests
2021-01-24 11:43:05 +01:00
{
[Theory]
[MemberData(nameof(GetOrderBy_Success_TestData))]
public static void GetOrderBy_Success(IReadOnlyList<string> sortBy, IReadOnlyList<SortOrder> requestedSortOrder, (string, SortOrder)[] expected)
2021-01-24 11:43:05 +01:00
{
Assert.Equal(expected, RequestHelpers.GetOrderBy(sortBy, requestedSortOrder));
}
public static TheoryData<IReadOnlyList<string>, IReadOnlyList<SortOrder>, (string, SortOrder)[]> GetOrderBy_Success_TestData()
2021-01-24 11:43:05 +01:00
{
var data = new TheoryData<IReadOnlyList<string>, IReadOnlyList<SortOrder>, (string, SortOrder)[]>();
data.Add(
2021-01-24 11:43:05 +01:00
Array.Empty<string>(),
Array.Empty<SortOrder>(),
Array.Empty<(string, SortOrder)>());
data.Add(
2021-01-24 11:43:05 +01:00
new string[]
{
"IsFavoriteOrLiked",
"Random"
},
Array.Empty<SortOrder>(),
new (string, SortOrder)[]
{
("IsFavoriteOrLiked", SortOrder.Ascending),
("Random", SortOrder.Ascending),
});
data.Add(
2021-01-24 11:43:05 +01:00
new string[]
{
"SortName",
"ProductionYear"
},
new SortOrder[]
{
SortOrder.Descending
},
new (string, SortOrder)[]
{
("SortName", SortOrder.Descending),
2021-01-24 17:55:25 +01:00
("ProductionYear", SortOrder.Descending),
});
return data;
2021-01-24 11:43:05 +01:00
}
}
}