jellyfin/tests/Jellyfin.Naming.Tests/Video/ExtraTests.cs

102 lines
3.5 KiB
C#
Raw Normal View History

2020-11-05 16:59:15 +01:00
using Emby.Naming.Common;
2019-12-06 20:40:06 +01:00
using Emby.Naming.Video;
using MediaBrowser.Model.Entities;
using Xunit;
2020-11-05 16:59:15 +01:00
using MediaType = Emby.Naming.Common.MediaType;
2019-12-06 20:40:06 +01:00
namespace Jellyfin.Naming.Tests.Video
{
2020-04-21 12:11:55 +02:00
public class ExtraTests
2019-12-06 20:40:06 +01:00
{
private readonly NamingOptions _videoOptions = new NamingOptions();
2019-12-06 20:40:06 +01:00
// Requirements
// movie-deleted = ExtraType deletedscene
// All of the above rules should be configurable through the options objects (ideally, even the ExtraTypes)
[Fact]
public void TestKodiExtras()
{
2021-10-05 21:47:59 +02:00
Test("trailer.mp4", ExtraType.Trailer);
Test("300-trailer.mp4", ExtraType.Trailer);
2019-12-06 20:40:06 +01:00
2021-10-05 21:47:59 +02:00
Test("theme.mp3", ExtraType.ThemeSong);
2019-12-06 20:40:06 +01:00
}
[Fact]
public void TestExpandedExtras()
{
2021-10-05 21:47:59 +02:00
Test("trailer.mp4", ExtraType.Trailer);
Test("trailer.mp3", null);
Test("300-trailer.mp4", ExtraType.Trailer);
Test("stuff trailerthings.mkv", null);
Test("theme.mp3", ExtraType.ThemeSong);
Test("theme.mkv", null);
Test("300-scene.mp4", ExtraType.Scene);
Test("300-scene2.mp4", ExtraType.Scene);
Test("300-clip.mp4", ExtraType.Clip);
Test("300-deleted.mp4", ExtraType.DeletedScene);
Test("300-deletedscene.mp4", ExtraType.DeletedScene);
Test("300-interview.mp4", ExtraType.Interview);
Test("300-behindthescenes.mp4", ExtraType.BehindTheScenes);
2019-12-06 20:40:06 +01:00
}
[Theory]
2020-09-20 14:02:41 +02:00
[InlineData(ExtraType.BehindTheScenes, "behind the scenes")]
[InlineData(ExtraType.DeletedScene, "deleted scenes")]
[InlineData(ExtraType.Interview, "interviews")]
[InlineData(ExtraType.Scene, "scenes")]
[InlineData(ExtraType.Sample, "samples")]
[InlineData(ExtraType.Short, "shorts")]
[InlineData(ExtraType.Featurette, "featurettes")]
[InlineData(ExtraType.Clip, "clips")]
2021-12-24 14:09:10 +01:00
[InlineData(ExtraType.ThemeVideo, "backdrops")]
2020-09-20 14:02:41 +02:00
[InlineData(ExtraType.Unknown, "extras")]
public void TestDirectories(ExtraType type, string dirName)
{
2021-10-05 21:47:59 +02:00
Test(dirName + "/300.mp4", type);
Test("300/" + dirName + "/something.mkv", type);
Test("/data/something/Movies/300/" + dirName + "/whoknows.mp4", type);
}
[Theory]
[InlineData("gibberish")]
[InlineData("not a scene")]
[InlineData("The Big Short")]
public void TestNonExtraDirectories(string dirName)
{
2021-10-05 21:47:59 +02:00
Test(dirName + "/300.mp4", null);
Test("300/" + dirName + "/something.mkv", null);
Test("/data/something/Movies/300/" + dirName + "/whoknows.mp4", null);
Test("/data/something/Movies/" + dirName + "/" + dirName + ".mp4", null);
}
2019-12-06 20:40:06 +01:00
[Fact]
public void TestSample()
{
2021-10-05 21:47:59 +02:00
Test("300-sample.mp4", ExtraType.Sample);
2019-12-06 20:40:06 +01:00
}
2021-10-05 21:47:59 +02:00
private void Test(string input, ExtraType? expectedType)
2019-12-06 20:40:06 +01:00
{
2021-12-28 00:37:40 +01:00
var extraType = ExtraRuleResolver.GetExtraInfo(input, _videoOptions).ExtraType;
2019-12-06 20:40:06 +01:00
2021-10-05 21:47:59 +02:00
Assert.Equal(expectedType, extraType);
2019-12-06 20:40:06 +01:00
}
2020-11-05 16:59:15 +01:00
[Fact]
public void TestExtraInfo_InvalidRuleType()
{
var rule = new ExtraRule(ExtraType.Unknown, ExtraRuleType.Regex, @"([eE]x(tra)?\.\w+)", MediaType.Video);
var options = new NamingOptions { VideoExtraRules = new[] { rule } };
2021-12-28 00:37:40 +01:00
var res = ExtraRuleResolver.GetExtraInfo("extra.mp4", options);
Assert.Equal(rule, res.Rule);
2020-11-05 16:59:15 +01:00
}
2019-12-06 20:40:06 +01:00
}
}