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.
Readarr/src/NzbDrone.Core.Test/Housekeeping/Housekeepers/CleanupOrphanedMetadataFile...

201 lines
7.2 KiB

using FizzWare.NBuilder;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Core.Books;
using NzbDrone.Core.Extras.Metadata;
using NzbDrone.Core.Extras.Metadata.Files;
using NzbDrone.Core.Housekeeping.Housekeepers;
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Qualities;
using NzbDrone.Core.Test.Framework;
namespace NzbDrone.Core.Test.Housekeeping.Housekeepers
{
[TestFixture]
public class CleanupOrphanedMetadataFilesFixture : DbTest<CleanupOrphanedMetadataFiles, MetadataFile>
{
[Test]
public void should_delete_metadata_files_that_dont_have_a_coresponding_author()
{
var metadataFile = Builder<MetadataFile>.CreateNew()
.With(m => m.BookFileId = null)
.BuildNew();
Db.Insert(metadataFile);
Subject.Clean();
AllStoredModels.Should().BeEmpty();
}
[Test]
public void should_delete_metadata_files_that_dont_have_a_coresponding_book()
{
var author = Builder<Author>.CreateNew()
.BuildNew();
Db.Insert(author);
var metadataFile = Builder<MetadataFile>.CreateNew()
.With(m => m.AuthorId = author.Id)
.With(m => m.BookFileId = null)
.BuildNew();
Db.Insert(metadataFile);
Subject.Clean();
AllStoredModels.Should().BeEmpty();
}
[Test]
public void should_not_delete_metadata_files_that_have_a_coresponding_author()
{
var author = Builder<Author>.CreateNew()
.BuildNew();
Db.Insert(author);
var metadataFile = Builder<MetadataFile>.CreateNew()
.With(m => m.AuthorId = author.Id)
.With(m => m.BookId = null)
.With(m => m.BookFileId = null)
.BuildNew();
Db.Insert(metadataFile);
var countMods = AllStoredModels.Count;
Subject.Clean();
AllStoredModels.Should().HaveCount(1);
}
[Test]
public void should_not_delete_metadata_files_that_have_a_coresponding_book()
{
var author = Builder<Author>.CreateNew()
.BuildNew();
var book = Builder<Book>.CreateNew()
.BuildNew();
Db.Insert(author);
Db.Insert(book);
var metadataFile = Builder<MetadataFile>.CreateNew()
.With(m => m.AuthorId = author.Id)
.With(m => m.BookId = book.Id)
.With(m => m.BookFileId = null)
.BuildNew();
Db.Insert(metadataFile);
Subject.Clean();
AllStoredModels.Should().HaveCount(1);
}
[Test]
public void should_delete_metadata_files_that_dont_have_a_coresponding_track_file()
{
var author = Builder<Author>.CreateNew()
.BuildNew();
var book = Builder<Book>.CreateNew()
.BuildNew();
Db.Insert(author);
Db.Insert(book);
var metadataFile = Builder<MetadataFile>.CreateNew()
.With(m => m.AuthorId = author.Id)
.With(m => m.BookId = book.Id)
.With(m => m.BookFileId = 10)
.BuildNew();
Db.Insert(metadataFile);
Subject.Clean();
AllStoredModels.Should().BeEmpty();
}
[Test]
public void should_not_delete_metadata_files_that_have_a_coresponding_track_file()
{
var author = Builder<Author>.CreateNew()
.BuildNew();
var book = Builder<Book>.CreateNew()
.BuildNew();
var trackFile = Builder<BookFile>.CreateNew()
.With(h => h.Quality = new QualityModel())
.BuildNew();
Db.Insert(author);
Db.Insert(book);
Db.Insert(trackFile);
var metadataFile = Builder<MetadataFile>.CreateNew()
.With(m => m.AuthorId = author.Id)
.With(m => m.BookId = book.Id)
.With(m => m.BookFileId = trackFile.Id)
.BuildNew();
Db.Insert(metadataFile);
Subject.Clean();
AllStoredModels.Should().HaveCount(1);
}
[Test]
public void should_delete_book_metadata_files_that_have_bookid_of_zero()
{
var author = Builder<Author>.CreateNew()
.BuildNew();
Db.Insert(author);
var metadataFile = Builder<MetadataFile>.CreateNew()
.With(m => m.AuthorId = author.Id)
.With(m => m.Type = MetadataType.BookMetadata)
.With(m => m.BookId = 0)
.With(m => m.BookFileId = null)
.BuildNew();
Db.Insert(metadataFile);
Subject.Clean();
AllStoredModels.Should().HaveCount(0);
}
[Test]
public void should_delete_book_image_files_that_have_bookid_of_zero()
{
var author = Builder<Author>.CreateNew()
.BuildNew();
Db.Insert(author);
var metadataFile = Builder<MetadataFile>.CreateNew()
.With(m => m.AuthorId = author.Id)
.With(m => m.Type = MetadataType.BookImage)
.With(m => m.BookId = 0)
.With(m => m.BookFileId = null)
.BuildNew();
Db.Insert(metadataFile);
Subject.Clean();
AllStoredModels.Should().HaveCount(0);
}
[Test]
public void should_delete_track_metadata_files_that_have_trackfileid_of_zero()
{
var author = Builder<Author>.CreateNew()
.BuildNew();
Db.Insert(author);
var metadataFile = Builder<MetadataFile>.CreateNew()
.With(m => m.AuthorId = author.Id)
.With(m => m.Type = MetadataType.BookMetadata)
.With(m => m.BookFileId = 0)
.BuildNew();
Db.Insert(metadataFile);
Subject.Clean();
AllStoredModels.Should().HaveCount(0);
}
}
}