EpisodePathParserTest.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. using Emby.Naming.Common;
  2. using Emby.Naming.TV;
  3. using Xunit;
  4. namespace Jellyfin.Naming.Tests.TV
  5. {
  6. public class EpisodePathParserTest
  7. {
  8. private readonly NamingOptions _namingOptions = new NamingOptions();
  9. [Theory]
  10. [InlineData("/media/Foo/Foo-S01E01", true, "Foo", 1, 1)]
  11. [InlineData("/media/Foo - S04E011", true, "Foo", 4, 11)]
  12. [InlineData("/media/Foo/Foo s01x01", true, "Foo", 1, 1)]
  13. [InlineData("/media/Foo (2019)/Season 4/Foo (2019).S04E03", true, "Foo (2019)", 4, 3)]
  14. [InlineData(@"D:\media\Foo\Foo-S01E01", true, "Foo", 1, 1)]
  15. [InlineData(@"D:\media\Foo - S04E011", true, "Foo", 4, 11)]
  16. [InlineData(@"D:\media\Foo\Foo s01x01", true, "Foo", 1, 1)]
  17. [InlineData(@"D:\media\Foo (2019)\Season 4\Foo (2019).S04E03", true, "Foo (2019)", 4, 3)]
  18. [InlineData("/Season 2/Elementary - 02x03-04-15 - Ep Name.mp4", false, "Elementary", 2, 3)]
  19. [InlineData("/Season 1/seriesname S01E02 blah.avi", false, "seriesname", 1, 2)]
  20. [InlineData("/Running Man/Running Man S2017E368.mkv", false, "Running Man", 2017, 368)]
  21. [InlineData("/Season 1/seriesname 01x02 blah.avi", false, "seriesname", 1, 2)]
  22. [InlineData("/Season 25/The Simpsons.S25E09.Steal this episode.mp4", false, "The Simpsons", 25, 9)]
  23. [InlineData("/Season 1/seriesname S01x02 blah.avi", false, "seriesname", 1, 2)]
  24. [InlineData("/Season 2/Elementary - 02x03 - 02x04 - 02x15 - Ep Name.mp4", false, "Elementary", 2, 3)]
  25. [InlineData("/Season 1/seriesname S01xE02 blah.avi", false, "seriesname", 1, 2)]
  26. [InlineData("/Season 02/Elementary - 02x03 - x04 - x15 - Ep Name.mp4", false, "Elementary", 2, 3)]
  27. [InlineData("/Season 02/Elementary - 02x03x04x15 - Ep Name.mp4", false, "Elementary", 2, 3)]
  28. [InlineData("/Season 02/Elementary - 02x03-E15 - Ep Name.mp4", false, "Elementary", 2, 3)]
  29. [InlineData("/Season 1/Elementary - S01E23-E24-E26 - The Woman.mp4", false, "Elementary", 1, 23)]
  30. [InlineData("/The Wonder Years/The.Wonder.Years.S04.PDTV.x264-JCH/The Wonder Years s04e07 Christmas Party NTSC PDTV.avi", false, "The Wonder Years", 4, 7)]
  31. [InlineData("/The.Sopranos/Season 3/The Sopranos Season 3 Episode 09 - The Telltale Moozadell.avi", false, "The Sopranos", 3, 9)]
  32. // TODO: [InlineData("/Castle Rock 2x01 Que el rio siga su curso [WEB-DL HULU 1080p h264 Dual DD5.1 Subs].mkv", "Castle Rock", 2, 1)]
  33. // TODO: [InlineData("/After Life 1x06 Episodio 6 [WEB-DL NF 1080p h264 Dual DD 5.1 Sub].mkv", "After Life", 1, 6)]
  34. // TODO: [InlineData("/Season 4/Uchuu.Senkan.Yamato.2199.E03.avi", "Uchuu Senkan Yamoto 2199", 4, 3)]
  35. // TODO: [InlineData("The Daily Show/The Daily Show 25x22 - [WEBDL-720p][AAC 2.0][x264] Noah Baumbach-TBS.mkv", "The Daily Show", 25, 22)]
  36. // TODO: [InlineData("Watchmen (2019)/Watchmen 1x03 [WEBDL-720p][EAC3 5.1][h264][-TBS] - She Was Killed by Space Junk.mkv", "Watchmen (2019)", 1, 3)]
  37. // TODO: [InlineData("/The.Legend.of.Condor.Heroes.2017.V2.web-dl.1080p.h264.aac-hdctv/The.Legend.of.Condor.Heroes.2017.E07.V2.web-dl.1080p.h264.aac-hdctv.mkv", "The Legend of Condor Heroes 2017", 1, 7)]
  38. public void ParseEpisodesCorrectly(string path, bool isDirectory, string name, int season, int episode)
  39. {
  40. EpisodePathParser p = new EpisodePathParser(_namingOptions);
  41. var res = p.Parse(path, isDirectory);
  42. Assert.True(res.Success);
  43. Assert.Equal(name, res.SeriesName);
  44. Assert.Equal(season, res.SeasonNumber);
  45. Assert.Equal(episode, res.EpisodeNumber);
  46. }
  47. [Theory]
  48. [InlineData("/test/01-03.avi", true, true)]
  49. public void EpisodePathParserTest_DifferentExpressionsParameters(string path, bool? isNamed, bool? isOptimistic)
  50. {
  51. EpisodePathParser p = new EpisodePathParser(_namingOptions);
  52. var res = p.Parse(path, false, isNamed, isOptimistic);
  53. Assert.True(res.Success);
  54. }
  55. [Fact]
  56. public void EpisodePathParserTest_FalsePositivePixelRate()
  57. {
  58. EpisodePathParser p = new EpisodePathParser(_namingOptions);
  59. var res = p.Parse("Series Special (1920x1080).mkv", false);
  60. Assert.False(res.Success);
  61. }
  62. [Fact]
  63. public void EpisodeResolverTest_WrongExtension()
  64. {
  65. var res = new EpisodeResolver(_namingOptions).Resolve("test.mp3", false);
  66. Assert.Null(res);
  67. }
  68. [Fact]
  69. public void EpisodeResolverTest_WrongExtensionStub()
  70. {
  71. var res = new EpisodeResolver(_namingOptions).Resolve("dvd.disc", false);
  72. Assert.NotNull(res);
  73. Assert.True(res!.IsStub);
  74. }
  75. /*
  76. * EpisodePathParser.cs:130 is currently unreachable, but the piece of code is useful and could be reached with addition of new EpisodeExpressions.
  77. * In order to preserve it but achieve 100% code coverage the test case below with made up expressions and filename is used.
  78. */
  79. [Fact]
  80. public void EpisodePathParserTest_EmptyDateParsers()
  81. {
  82. NamingOptions o = new NamingOptions()
  83. {
  84. EpisodeExpressions = new[] { new EpisodeExpression("(([0-9]{4})-([0-9]{2})-([0-9]{2}) [0-9]{2}:[0-9]{2}:[0-9]{2})", true) }
  85. };
  86. o.Compile();
  87. EpisodePathParser p = new EpisodePathParser(o);
  88. var res = p.Parse("ABC_2019_10_21 11:00:00", false);
  89. Assert.True(res.Success);
  90. }
  91. }
  92. }