You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.5 KiB
54 lines
1.5 KiB
using Emby.Naming.Common;
|
|
using Emby.Naming.Video;
|
|
using Xunit;
|
|
|
|
namespace Jellyfin.Naming.Tests.Video
|
|
{
|
|
public class StubTests : BaseVideoTest
|
|
{
|
|
[Fact]
|
|
public void TestStubs()
|
|
{
|
|
Test("video.mkv", false, null);
|
|
Test("video.disc", true, null);
|
|
Test("video.dvd.disc", true, "dvd");
|
|
Test("video.hddvd.disc", true, "hddvd");
|
|
Test("video.bluray.disc", true, "bluray");
|
|
Test("video.brrip.disc", true, "bluray");
|
|
Test("video.bd25.disc", true, "bluray");
|
|
Test("video.bd50.disc", true, "bluray");
|
|
Test("video.vhs.disc", true, "vhs");
|
|
Test("video.hdtv.disc", true, "tv");
|
|
Test("video.pdtv.disc", true, "tv");
|
|
Test("video.dsr.disc", true, "tv");
|
|
}
|
|
|
|
[Fact]
|
|
public void TestStubName()
|
|
{
|
|
var result =
|
|
GetParser().ResolveFile(@"C:/Users/media/Desktop/Video Test/Movies/Oblivion/Oblivion.dvd.disc");
|
|
|
|
Assert.Equal("Oblivion", result.Name);
|
|
}
|
|
|
|
private void Test(string path, bool isStub, string stubType)
|
|
{
|
|
var options = new NamingOptions();
|
|
|
|
var isStubResult = StubResolver.TryResolveFile(path, options, out var stubTypeResult);
|
|
|
|
Assert.Equal(isStub, isStubResult);
|
|
|
|
if (isStub)
|
|
{
|
|
Assert.Equal(stubType, stubTypeResult);
|
|
}
|
|
else
|
|
{
|
|
Assert.Null(stubTypeResult);
|
|
}
|
|
}
|
|
}
|
|
}
|