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.
91 lines
2.8 KiB
91 lines
2.8 KiB
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
|
|
namespace NzbDrone.Integration.Test.ApiTests
|
|
{
|
|
[TestFixture]
|
|
public class NamingConfigFixture : IntegrationTest
|
|
{
|
|
[Test]
|
|
public void should_be_able_to_get()
|
|
{
|
|
NamingConfig.GetSingle().Should().NotBeNull();
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_able_to_get_by_id()
|
|
{
|
|
var config = NamingConfig.GetSingle();
|
|
NamingConfig.Get(config.Id).Should().NotBeNull();
|
|
NamingConfig.Get(config.Id).Id.Should().Be(config.Id);
|
|
}
|
|
|
|
[Test]
|
|
public void should_be_able_to_update()
|
|
{
|
|
var config = NamingConfig.GetSingle();
|
|
config.RenameBooks = false;
|
|
config.StandardBookFormat = "{Author Name} - {Book Title}{ (PartNumber)}";
|
|
|
|
var result = NamingConfig.Put(config);
|
|
result.RenameBooks.Should().BeFalse();
|
|
result.StandardBookFormat.Should().Be(config.StandardBookFormat);
|
|
}
|
|
|
|
[Test]
|
|
public void should_get_bad_request_if_standard_format_is_empty()
|
|
{
|
|
var config = NamingConfig.GetSingle();
|
|
config.RenameBooks = true;
|
|
config.StandardBookFormat = "";
|
|
|
|
var errors = NamingConfig.InvalidPut(config);
|
|
errors.Should().NotBeNull();
|
|
}
|
|
|
|
[Test]
|
|
public void should_get_bad_request_if_standard_format_doesnt_contain_track_number_and_title()
|
|
{
|
|
var config = NamingConfig.GetSingle();
|
|
config.RenameBooks = true;
|
|
config.StandardBookFormat = "{track:00}";
|
|
|
|
var errors = NamingConfig.InvalidPut(config);
|
|
errors.Should().NotBeNull();
|
|
}
|
|
|
|
[Test]
|
|
public void should_not_require_format_when_rename_tracks_is_false()
|
|
{
|
|
var config = NamingConfig.GetSingle();
|
|
config.RenameBooks = false;
|
|
config.StandardBookFormat = "";
|
|
|
|
var errors = NamingConfig.InvalidPut(config);
|
|
errors.Should().NotBeNull();
|
|
}
|
|
|
|
[Test]
|
|
public void should_require_format_when_rename_tracks_is_true()
|
|
{
|
|
var config = NamingConfig.GetSingle();
|
|
config.RenameBooks = true;
|
|
config.StandardBookFormat = "";
|
|
|
|
var errors = NamingConfig.InvalidPut(config);
|
|
errors.Should().NotBeNull();
|
|
}
|
|
|
|
[Test]
|
|
public void should_get_bad_request_if_author_folder_format_does_not_contain_author_name()
|
|
{
|
|
var config = NamingConfig.GetSingle();
|
|
config.RenameBooks = true;
|
|
config.AuthorFolderFormat = "This and That";
|
|
|
|
var errors = NamingConfig.InvalidPut(config);
|
|
errors.Should().NotBeNull();
|
|
}
|
|
}
|
|
}
|