EpisodePathParserTest.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. // 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)]
  32. // TODO: [InlineData("/After Life 1x06 Episodio 6 [WEB-DL NF 1080p h264 Dual DD 5.1 Sub].mkv", "After Life", 1, 6)]
  33. // TODO: [InlineData("/Season 4/Uchuu.Senkan.Yamato.2199.E03.avi", "Uchuu Senkan Yamoto 2199", 4, 3)]
  34. // TODO: [InlineData("The Daily Show/The Daily Show 25x22 - [WEBDL-720p][AAC 2.0][x264] Noah Baumbach-TBS.mkv", "The Daily Show", 25, 22)]
  35. // TODO: [InlineData("Watchmen (2019)/Watchmen 1x03 [WEBDL-720p][EAC3 5.1][h264][-TBS] - She Was Killed by Space Junk.mkv", "Watchmen (2019)", 1, 3)]
  36. // 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)]
  37. public void ParseEpisodesCorrectly(string path, bool isDirectory, string name, int season, int episode)
  38. {
  39. EpisodePathParser p = new EpisodePathParser(_namingOptions);
  40. var res = p.Parse(path, isDirectory);
  41. Assert.True(res.Success);
  42. Assert.Equal(name, res.SeriesName);
  43. Assert.Equal(season, res.SeasonNumber);
  44. Assert.Equal(episode, res.EpisodeNumber);
  45. }
  46. [Theory]
  47. [InlineData("/test/01-03.avi", true, true)]
  48. public void EpisodePathParserTest_DifferentExpressionsParameters(string path, bool? isNamed, bool? isOptimistic)
  49. {
  50. EpisodePathParser p = new EpisodePathParser(_namingOptions);
  51. var res = p.Parse(path, false, isNamed, isOptimistic);
  52. Assert.True(res.Success);
  53. }
  54. [Fact]
  55. public void EpisodePathParserTest_FalsePositivePixelRate()
  56. {
  57. EpisodePathParser p = new EpisodePathParser(_namingOptions);
  58. var res = p.Parse("Series Special (1920x1080).mkv", false);
  59. Assert.False(res.Success);
  60. }
  61. [Fact]
  62. public void EpisodeResolverTest_WrongExtension()
  63. {
  64. var res = new EpisodeResolver(_namingOptions).Resolve("test.mp3", false);
  65. Assert.Null(res);
  66. }
  67. [Fact]
  68. public void EpisodeResolverTest_WrongExtensionStub()
  69. {
  70. var res = new EpisodeResolver(_namingOptions).Resolve("dvd.disc", false);
  71. Assert.NotNull(res);
  72. Assert.True(res!.IsStub);
  73. }
  74. /*
  75. * EpisodePathParser.cs:130 is currently unreachable, but the piece of code is useful and could be reached with addition of new EpisodeExpressions.
  76. * In order to preserve it but achieve 100% code coverage the test case below with made up expressions and filename is used.
  77. */
  78. [Fact]
  79. public void EpisodePathParserTest_EmptyDateParsers()
  80. {
  81. NamingOptions o = new NamingOptions()
  82. {
  83. EpisodeExpressions = new[] { new EpisodeExpression("(([0-9]{4})-([0-9]{2})-([0-9]{2}) [0-9]{2}:[0-9]{2}:[0-9]{2})", true) }
  84. };
  85. o.Compile();
  86. EpisodePathParser p = new EpisodePathParser(o);
  87. var res = p.Parse("ABC_2019_10_21 11:00:00", false);
  88. Assert.True(res.Success);
  89. }
  90. }
  91. }