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.
28 lines
1.0 KiB
28 lines
1.0 KiB
using System;
|
|
using Emby.Server.Implementations.Library;
|
|
using Xunit;
|
|
|
|
namespace Jellyfin.Server.Implementations.Tests.Library
|
|
{
|
|
public class PathExtensionsTests
|
|
{
|
|
[Theory]
|
|
[InlineData("Superman: Red Son [imdbid=tt10985510]", "imdbid", "tt10985510")]
|
|
[InlineData("Superman: Red Son - tt10985510", "imdbid", "tt10985510")]
|
|
[InlineData("Superman: Red Son", "imdbid", null)]
|
|
public void GetAttributeValue_ValidArgs_Correct(string input, string attribute, string? expectedResult)
|
|
{
|
|
Assert.Equal(expectedResult, PathExtensions.GetAttributeValue(input, attribute));
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData("", "")]
|
|
[InlineData("Superman: Red Son [imdbid=tt10985510]", "")]
|
|
[InlineData("", "imdbid")]
|
|
public void GetAttributeValue_EmptyString_ThrowsArgumentException(string input, string attribute)
|
|
{
|
|
Assert.Throws<ArgumentException>(() => PathExtensions.GetAttributeValue(input, attribute));
|
|
}
|
|
}
|
|
}
|