2013-07-18 22:05:07 -07:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2011-06-02 14:06:46 -07:00
|
|
|
using FluentAssertions;
|
2013-07-18 22:05:07 -07:00
|
|
|
using Moq;
|
2011-06-02 14:06:46 -07:00
|
|
|
using NUnit.Framework;
|
2013-02-28 23:03:41 -08:00
|
|
|
using NzbDrone.Core.MediaFiles;
|
2013-03-06 13:20:33 -08:00
|
|
|
using NzbDrone.Core.Organizer;
|
2011-05-18 20:55:35 -07:00
|
|
|
using NzbDrone.Core.Test.Framework;
|
2013-07-25 23:32:41 -07:00
|
|
|
using NzbDrone.Test.Common;
|
2010-10-20 18:49:23 -07:00
|
|
|
|
2013-02-28 23:03:41 -08:00
|
|
|
namespace NzbDrone.Core.Test.MediaFileTests
|
2010-10-20 18:49:23 -07:00
|
|
|
{
|
|
|
|
[TestFixture]
|
2013-03-04 17:47:51 -08:00
|
|
|
public class MediaFileServiceTest : CoreTest<MediaFileService>
|
2010-10-20 18:49:23 -07:00
|
|
|
{
|
2011-06-17 21:08:17 -07:00
|
|
|
|
2011-06-20 16:46:54 -07:00
|
|
|
[Test]
|
2013-07-18 22:05:07 -07:00
|
|
|
[TestCase("Law & Order: Criminal Intent - S10E07 - Icarus [HDTV-720p]",
|
|
|
|
"Law & Order- Criminal Intent - S10E07 - Icarus [HDTV-720p]")]
|
2011-06-20 16:46:54 -07:00
|
|
|
public void CleanFileName(string name, string expectedName)
|
|
|
|
{
|
2013-03-06 13:20:33 -08:00
|
|
|
FileNameBuilder.CleanFilename(name).Should().Be(expectedName);
|
2011-06-20 16:46:54 -07:00
|
|
|
}
|
2013-07-18 22:05:07 -07:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void filter_should_return_all_files_if_no_existing_files()
|
|
|
|
{
|
|
|
|
var files = new List<string>()
|
|
|
|
{
|
2013-07-25 23:32:41 -07:00
|
|
|
"c:\\file1.avi".AsOsAgnostic(),
|
|
|
|
"c:\\file2.avi".AsOsAgnostic(),
|
|
|
|
"c:\\file3.avi".AsOsAgnostic()
|
2013-07-18 22:05:07 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
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>()
|
|
|
|
{
|
2013-07-25 23:32:41 -07:00
|
|
|
"c:\\file1.avi".AsOsAgnostic(),
|
|
|
|
"c:\\file2.avi".AsOsAgnostic(),
|
|
|
|
"c:\\file3.avi".AsOsAgnostic()
|
2013-07-18 22:05:07 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
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>()
|
|
|
|
{
|
2013-07-25 23:32:41 -07:00
|
|
|
"c:\\file1.avi".AsOsAgnostic(),
|
|
|
|
"c:\\file2.avi".AsOsAgnostic(),
|
|
|
|
"c:\\file3.avi".AsOsAgnostic()
|
2013-07-18 22:05:07 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
Mocker.GetMock<IMediaFileRepository>()
|
|
|
|
.Setup(c => c.GetFilesBySeries(It.IsAny<int>()))
|
|
|
|
.Returns(new List<EpisodeFile>
|
|
|
|
{
|
2013-07-25 23:32:41 -07:00
|
|
|
new EpisodeFile{Path = "c:\\file2.avi".AsOsAgnostic()}
|
2013-07-18 22:05:07 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Subject.FilterExistingFiles(files, 10).Should().HaveCount(2);
|
2013-07-25 23:32:41 -07:00
|
|
|
Subject.FilterExistingFiles(files, 10).Should().NotContain("c:\\file2.avi".AsOsAgnostic());
|
2013-07-18 22:05:07 -07:00
|
|
|
}
|
2013-08-20 14:29:10 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void filter_should_return_none_existing_files_ignoring_case()
|
|
|
|
{
|
|
|
|
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());
|
|
|
|
}
|
2010-10-20 18:49:23 -07:00
|
|
|
}
|
2011-04-09 19:44:01 -07:00
|
|
|
}
|