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

68 lines
4 KiB
C#
Raw Normal View History

using System.IO;
2020-01-11 20:25:06 +01:00
using Emby.Naming.Common;
using Emby.Naming.Video;
2019-12-06 20:40:06 +01:00
using Xunit;
namespace Jellyfin.Naming.Tests.Video
{
2020-01-11 20:25:06 +01:00
public sealed class CleanDateTimeTests
2019-12-06 20:40:06 +01:00
{
2020-01-11 20:25:06 +01:00
private readonly NamingOptions _namingOptions = new NamingOptions();
[Theory]
[InlineData("The Wolf of Wall Street (2013).mkv", "The Wolf of Wall Street", 2013)]
[InlineData("The Wolf of Wall Street 2 (2013).mkv", "The Wolf of Wall Street 2", 2013)]
[InlineData("The Wolf of Wall Street - 2 (2013).mkv", "The Wolf of Wall Street - 2", 2013)]
[InlineData("The Wolf of Wall Street 2001 (2013).mkv", "The Wolf of Wall Street 2001", 2013)]
[InlineData("300 (2006).mkv", "300", 2006)]
[InlineData("d:/movies/300 (2006).mkv", "300", 2006)]
[InlineData("300 2 (2006).mkv", "300 2", 2006)]
[InlineData("300 - 2 (2006).mkv", "300 - 2", 2006)]
[InlineData("300 2001 (2006).mkv", "300 2001", 2006)]
[InlineData("curse.of.chucky.2013.stv.unrated.multi.1080p.bluray.x264-rough", "curse.of.chucky", 2013)]
[InlineData("curse.of.chucky.2013.stv.unrated.multi.2160p.bluray.x264-rough", "curse.of.chucky", 2013)]
[InlineData("/server/Movies/300 (2007)/300 (2006).bluray.disc", "300", 2006)]
[InlineData("Arrival.2016.2160p.Blu-Ray.HEVC.mkv", "Arrival", 2016)]
[InlineData("The Wolf of Wall Street (2013)", "The Wolf of Wall Street", 2013)]
[InlineData("The Wolf of Wall Street 2 (2013)", "The Wolf of Wall Street 2", 2013)]
[InlineData("The Wolf of Wall Street - 2 (2013)", "The Wolf of Wall Street - 2", 2013)]
[InlineData("The Wolf of Wall Street 2001 (2013)", "The Wolf of Wall Street 2001", 2013)]
[InlineData("300 (2006)", "300", 2006)]
[InlineData("d:/movies/300 (2006)", "300", 2006)]
[InlineData("300 2 (2006)", "300 2", 2006)]
[InlineData("300 - 2 (2006)", "300 - 2", 2006)]
[InlineData("300 2001 (2006)", "300 2001", 2006)]
[InlineData("/server/Movies/300 (2007)/300 (2006)", "300", 2006)]
[InlineData("/server/Movies/300 (2007)/300 (2006).mkv", "300", 2006)]
[InlineData("American.Psycho.mkv", "American.Psycho.mkv", null)]
[InlineData("American Psycho.mkv", "American Psycho.mkv", null)]
[InlineData("[rec].mkv", "[rec].mkv", null)]
[InlineData("St. Vincent (2014)", "St. Vincent", 2014)]
2020-01-11 20:25:06 +01:00
[InlineData("Super movie(2009).mp4", "Super movie", 2009)]
2020-04-13 15:55:18 +02:00
[InlineData("Drug War 2013.mp4", "Drug War", 2013)]
2020-01-11 20:25:06 +01:00
[InlineData("My Movie (1997) - GreatestReleaseGroup 2019.mp4", "My Movie", 1997)]
2020-04-13 15:55:18 +02:00
[InlineData("First Man 2018 1080p.mkv", "First Man", 2018)]
2020-01-11 20:25:06 +01:00
[InlineData("First Man (2018) 1080p.mkv", "First Man", 2018)]
2020-04-13 15:55:18 +02:00
[InlineData("Maximum Ride - 2016 - WEBDL-1080p - x264 AC3.mkv", "Maximum Ride", 2016)]
2020-04-13 16:11:02 +02:00
// FIXME: [InlineData("Robin Hood [Multi-Subs] [2018].mkv", "Robin Hood", 2018)]
[InlineData("3.Days.to.Kill.2014.720p.BluRay.x264.YIFY.mkv", "3.Days.to.Kill", 2014)] // In this test case, running CleanDateTime first produces no date, so it will attempt to run CleanString first and then CleanDateTime again
2020-04-21 12:11:55 +02:00
[InlineData("3 days to kill (2005).mkv", "3 days to kill", 2005)]
[InlineData("Rain Man 1988 REMASTERED 1080p BluRay x264 AAC - Ozlem.mp4", "Rain Man", 1988)]
2020-08-12 17:20:31 +02:00
[InlineData("My Movie 2013.12.09", "My Movie 2013.12.09", null)]
[InlineData("My Movie 2013-12-09", "My Movie 2013-12-09", null)]
[InlineData("My Movie 20131209", "My Movie 20131209", null)]
[InlineData("My Movie 2013-12-09 2013", "My Movie 2013-12-09", 2013)]
[InlineData(null, null, null)]
[InlineData("", "", null)]
2020-01-11 20:25:06 +01:00
public void CleanDateTimeTest(string input, string expectedName, int? expectedYear)
2019-12-06 20:40:06 +01:00
{
input = Path.GetFileName(input);
2021-05-24 00:30:41 +02:00
var result = VideoResolver.CleanDateTime(input, _namingOptions);
2019-12-06 20:40:06 +01:00
Assert.Equal(expectedName, result.Name, true);
Assert.Equal(expectedYear, result.Year);
}
}
}