2013-03-28 23:07:09 +01:00
|
|
|
|
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Common;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-05-07 02:39:33 +02:00
|
|
|
|
using NzbDrone.Core.MediaFiles;
|
2012-09-04 08:49:04 +02:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
2013-07-26 07:29:59 +02:00
|
|
|
|
using NzbDrone.Test.Common;
|
2013-03-02 19:25:39 +01:00
|
|
|
|
|
2012-09-04 08:49:04 +02:00
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.RecycleBinProviderTests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2013-07-26 07:29:59 +02:00
|
|
|
|
|
2013-02-17 06:44:06 +01:00
|
|
|
|
public class DeleteDirectoryFixture : CoreTest
|
2012-09-04 08:49:04 +02:00
|
|
|
|
{
|
|
|
|
|
private void WithRecycleBin()
|
|
|
|
|
{
|
2013-07-26 07:29:59 +02:00
|
|
|
|
Mocker.GetMock<IConfigService>().SetupGet(s => s.RecycleBin).Returns(@"C:\Test\Recycle Bin".AsOsAgnostic());
|
2012-09-04 08:49:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void WithoutRecycleBin()
|
|
|
|
|
{
|
2013-02-24 20:39:31 +01:00
|
|
|
|
Mocker.GetMock<IConfigService>().SetupGet(s => s.RecycleBin).Returns(String.Empty);
|
2012-09-04 08:49:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_use_delete_when_recycleBin_is_not_configured()
|
|
|
|
|
{
|
|
|
|
|
WithoutRecycleBin();
|
|
|
|
|
|
2013-07-26 07:29:59 +02:00
|
|
|
|
var path = @"C:\Test\TV\30 Rock".AsOsAgnostic();
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
2013-07-05 06:43:28 +02:00
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFolder(path);
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
2013-05-11 01:53:50 +02:00
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.DeleteFolder(path, true), Times.Once());
|
2012-09-04 08:49:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_use_move_when_recycleBin_is_configured()
|
|
|
|
|
{
|
|
|
|
|
WithRecycleBin();
|
|
|
|
|
|
2013-07-26 07:29:59 +02:00
|
|
|
|
var path = @"C:\Test\TV\30 Rock".AsOsAgnostic();
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
2013-07-05 06:43:28 +02:00
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFolder(path);
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
2013-07-26 07:29:59 +02:00
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.MoveFolder(path, @"C:\Test\Recycle Bin\30 Rock".AsOsAgnostic()), Times.Once());
|
2012-09-04 08:49:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_call_directorySetLastWriteTime()
|
|
|
|
|
{
|
|
|
|
|
WithRecycleBin();
|
|
|
|
|
|
2013-07-26 07:29:59 +02:00
|
|
|
|
var path = @"C:\Test\TV\30 Rock".AsOsAgnostic();
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
2013-07-05 06:43:28 +02:00
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFolder(path);
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
2013-07-26 07:29:59 +02:00
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.FolderSetLastWriteTimeUtc(@"C:\Test\Recycle Bin\30 Rock".AsOsAgnostic(), It.IsAny<DateTime>()), Times.Once());
|
2012-09-04 08:49:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_call_fileSetLastWriteTime_for_each_file()
|
|
|
|
|
{
|
|
|
|
|
WithRecycleBin();
|
2013-07-26 07:29:59 +02:00
|
|
|
|
var path = @"C:\Test\TV\30 Rock".AsOsAgnostic();
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
2013-07-26 07:29:59 +02:00
|
|
|
|
Mocker.GetMock<IDiskProvider>().Setup(s => s.GetFiles(@"C:\Test\Recycle Bin\30 Rock".AsOsAgnostic(), SearchOption.AllDirectories))
|
|
|
|
|
.Returns(new[] { "File1", "File2", "File3" });
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
2013-07-05 06:43:28 +02:00
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFolder(path);
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
2013-05-11 01:53:50 +02:00
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.FileSetLastWriteTimeUtc(It.IsAny<String>(), It.IsAny<DateTime>()), Times.Exactly(3));
|
2012-09-04 08:49:04 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|