SimpleEpisodeTests.cs 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using Emby.Naming.Common;
  2. using Emby.Naming.TV;
  3. using Xunit;
  4. namespace Jellyfin.Naming.Tests.TV
  5. {
  6. public class SimpleEpisodeTests
  7. {
  8. [Theory]
  9. [InlineData("/server/anything_s01e02.mp4", "anything", 1, 2)]
  10. [InlineData("/server/anything_s1e2.mp4", "anything", 1, 2)]
  11. [InlineData("/server/anything_s01.e02.mp4", "anything", 1, 2)]
  12. [InlineData("/server/anything_102.mp4", "anything", 1, 2)]
  13. [InlineData("/server/anything_1x02.mp4", "anything", 1, 2)]
  14. [InlineData("/server/The Walking Dead 4x01.mp4", "The Walking Dead", 4, 1)]
  15. [InlineData("/server/the_simpsons-s02e01_18536.mp4", "the_simpsons", 2, 1)]
  16. [InlineData("/server/Temp/S01E02 foo.mp4", "", 1, 2)]
  17. [InlineData("Series/4-12 - The Woman.mp4", "", 4, 12)]
  18. [InlineData("Series/4x12 - The Woman.mp4", "", 4, 12)]
  19. [InlineData("Series/LA X, Pt. 1_s06e32.mp4", "LA X, Pt. 1", 6, 32)]
  20. [InlineData("[Baz-Bar]Foo - [1080p][Multiple Subtitle]/[Baz-Bar] Foo - 05 [1080p][Multiple Subtitle].mkv", "Foo", null, 5)]
  21. [InlineData(@"/Foo/The.Series.Name.S01E04.WEBRip.x264-Baz[Bar]/the.series.name.s01e04.webrip.x264-Baz[Bar].mkv", "The.Series.Name", 1, 4)]
  22. [InlineData(@"Love.Death.and.Robots.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Love.Death.and.Robots.S01E01.Sonnies.Edge.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", "Love.Death.and.Robots", 1, 1)]
  23. // TODO: [InlineData("[Baz-Bar]Foo - 01 - 12[1080p][Multiple Subtitle]/[Baz-Bar] Foo - 05 [1080p][Multiple Subtitle].mkv", "Foo", null, 5)]
  24. // TODO: [InlineData("E:\\Anime\\Yahari Ore no Seishun Love Comedy wa Machigatteiru\\Yahari Ore no Seishun Love Comedy wa Machigatteiru. Zoku\\Oregairu Zoku 11 - Hayama Hayato Always Renconds to Everyone's Expectations..mkv", "Yahari Ore no Seishun Love Comedy wa Machigatteiru", null, 11)]
  25. // TODO: [InlineData(@"/Library/Series/The Grand Tour (2016)/Season 1/S01E01 The Holy Trinity.mkv", "The Grand Tour", 1, 1)]
  26. public void Test(string path, string seriesName, int? seasonNumber, int? episodeNumber)
  27. {
  28. var options = new NamingOptions();
  29. var result = new EpisodeResolver(options)
  30. .Resolve(path, false);
  31. Assert.Equal(seasonNumber, result?.SeasonNumber);
  32. Assert.Equal(episodeNumber, result?.EpisodeNumber);
  33. Assert.Equal(seriesName, result?.SeriesName, true);
  34. }
  35. }
  36. }