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.
36 lines
1.2 KiB
36 lines
1.2 KiB
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Organizer;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Test.OrganizerTests
|
|
{
|
|
[TestFixture]
|
|
public class GetSeasonFolderFixture : CoreTest<FileNameBuilder>
|
|
{
|
|
private NamingConfig _namingConfig;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_namingConfig = NamingConfig.Default;
|
|
|
|
Mocker.GetMock<INamingConfigService>()
|
|
.Setup(c => c.GetConfig()).Returns(_namingConfig);
|
|
}
|
|
|
|
[TestCase("Venture Bros.", 1, "{Series.Title}.{season:00}", "Venture.Bros.01")]
|
|
[TestCase("Venture Bros.", 1, "{Series Title} Season {season:00}", "Venture Bros. Season 01")]
|
|
[TestCase("Series Title?", 1, "{Series Title} Season {season:00}", "Series Title! Season 01")]
|
|
public void should_use_seriesFolderFormat_to_build_folder_name(string seriesTitle, int seasonNumber, string format, string expected)
|
|
{
|
|
_namingConfig.SeasonFolderFormat = format;
|
|
|
|
var series = new Series { Title = seriesTitle };
|
|
|
|
Subject.GetSeasonFolder(series, seasonNumber, _namingConfig).Should().Be(expected);
|
|
}
|
|
}
|
|
}
|