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.
84 lines
2.6 KiB
84 lines
2.6 KiB
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using FluentAssertions;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Organizer;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Core.Test.MediaFileTests
|
|
{
|
|
[TestFixture]
|
|
public class MediaFileServiceTest : CoreTest<MediaFileService>
|
|
{
|
|
|
|
[Test]
|
|
[TestCase("Law & Order: Criminal Intent - S10E07 - Icarus [HDTV-720p]",
|
|
"Law & Order- Criminal Intent - S10E07 - Icarus [HDTV-720p]")]
|
|
public void CleanFileName(string name, string expectedName)
|
|
{
|
|
FileNameBuilder.CleanFilename(name).Should().Be(expectedName);
|
|
}
|
|
|
|
[Test]
|
|
public void filter_should_return_all_files_if_no_existing_files()
|
|
{
|
|
var files = new List<string>()
|
|
{
|
|
"c:\\file1.avi".AsOsAgnostic(),
|
|
"c:\\file2.avi".AsOsAgnostic(),
|
|
"c:\\file3.avi".AsOsAgnostic()
|
|
};
|
|
|
|
Mocker.GetMock<IMediaFileRepository>()
|
|
.Setup(c => c.GetFilesBySeries(It.IsAny<int>()))
|
|
.Returns(new List<EpisodeFile>());
|
|
|
|
|
|
Subject.FilterExistingFiles(files, 10).Should().BeEquivalentTo(files);
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void filter_should_return_none_if_all_files_exist()
|
|
{
|
|
var files = new List<string>()
|
|
{
|
|
"c:\\file1.avi".AsOsAgnostic(),
|
|
"c:\\file2.avi".AsOsAgnostic(),
|
|
"c:\\file3.avi".AsOsAgnostic()
|
|
};
|
|
|
|
Mocker.GetMock<IMediaFileRepository>()
|
|
.Setup(c => c.GetFilesBySeries(It.IsAny<int>()))
|
|
.Returns(files.Select(f => new EpisodeFile { Path = f }).ToList());
|
|
|
|
|
|
Subject.FilterExistingFiles(files, 10).Should().BeEmpty();
|
|
}
|
|
|
|
[Test]
|
|
public void filter_should_return_none_existing_files()
|
|
{
|
|
var files = new List<string>()
|
|
{
|
|
"c:\\file1.avi".AsOsAgnostic(),
|
|
"c:\\file2.avi".AsOsAgnostic(),
|
|
"c:\\file3.avi".AsOsAgnostic()
|
|
};
|
|
|
|
Mocker.GetMock<IMediaFileRepository>()
|
|
.Setup(c => c.GetFilesBySeries(It.IsAny<int>()))
|
|
.Returns(new List<EpisodeFile>
|
|
{
|
|
new EpisodeFile{Path = "c:\\file2.avi".AsOsAgnostic()}
|
|
});
|
|
|
|
|
|
Subject.FilterExistingFiles(files, 10).Should().HaveCount(2);
|
|
Subject.FilterExistingFiles(files, 10).Should().NotContain("c:\\file2.avi".AsOsAgnostic());
|
|
}
|
|
}
|
|
} |