af1152b001
Refactored all C# test files to use explicit namespace declarations and moved all using directives inside the namespace block for consistency. Updated assembly info and cache files to reflect the new build. Adjusted MvcTestingAppManifest.json to use fully qualified assembly names. No functional changes; all updates are related to code style, organization, and project metadata.
37 lines
1.7 KiB
C#
37 lines
1.7 KiB
C#
// <copyright file="DailyEpisodeTests.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Naming.Tests.TV
|
|
{
|
|
using Emby.Naming.Common;
|
|
using Emby.Naming.TV;
|
|
using Xunit;
|
|
|
|
public class DailyEpisodeTests
|
|
{
|
|
private readonly EpisodeResolver _resolver = new EpisodeResolver(new NamingOptions());
|
|
|
|
[Theory]
|
|
[InlineData("/server/anything_1996.11.14.mp4", "anything", 1996, 11, 14)]
|
|
[InlineData("/server/anything_1996-11-14.mp4", "anything", 1996, 11, 14)]
|
|
[InlineData("/server/james.corden.2017.04.20.anne.hathaway.720p.hdtv.x264-crooks.mkv", "james.corden", 2017, 04, 20)]
|
|
[InlineData("/server/ABC News 2018_03_24_19_00_00.mkv", "ABC News", 2018, 03, 24)]
|
|
[InlineData("/server/Jeopardy 2023 07 14 HDTV x264 AC3.mkv", "Jeopardy", 2023, 07, 14)]
|
|
// TODO: [InlineData(@"/server/anything_14.11.1996.mp4", "anything", 1996, 11, 14)]
|
|
// TODO: [InlineData(@"/server/A Daily Show - (2015-01-15) - Episode Name - [720p].mkv", "A Daily Show", 2015, 01, 15)]
|
|
// TODO: [InlineData(@"/server/Last Man Standing_KTLADT_2018_05_25_01_28_00.wtv", "Last Man Standing", 2018, 05, 25)]
|
|
public void Test(string path, string seriesName, int? year, int? month, int? day)
|
|
{
|
|
var result = _resolver.Resolve(path, false);
|
|
|
|
Assert.Null(result?.SeasonNumber);
|
|
Assert.Null(result?.EpisodeNumber);
|
|
Assert.Equal(year, result?.Year);
|
|
Assert.Equal(month, result?.Month);
|
|
Assert.Equal(day, result?.Day);
|
|
Assert.Equal(seriesName, result?.SeriesName, true);
|
|
}
|
|
}
|
|
}
|