2012-09-04 08:49:04 +02:00
|
|
|
|
// ReSharper disable RedundantUsingDirective
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Common;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2012-09-04 08:49:04 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
2013-03-07 02:51:47 +01:00
|
|
|
|
|
2012-09-04 08:49:04 +02:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
using NzbDrone.Test.Common.AutoMoq;
|
2013-03-02 19:25:39 +01:00
|
|
|
|
|
2012-09-04 08:49:04 +02:00
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.RecycleBinProviderTests
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
// ReSharper disable InconsistentNaming
|
2013-02-17 06:44:06 +01:00
|
|
|
|
public class DeleteDirectoryFixture : CoreTest
|
2012-09-04 08:49:04 +02:00
|
|
|
|
{
|
|
|
|
|
private void WithRecycleBin()
|
|
|
|
|
{
|
2013-02-24 20:39:31 +01:00
|
|
|
|
Mocker.GetMock<IConfigService>().SetupGet(s => s.RecycleBin).Returns(@"C:\Test\Recycle Bin");
|
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();
|
|
|
|
|
|
|
|
|
|
var path = @"C:\Test\TV\30 Rock";
|
|
|
|
|
|
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteDirectory(path);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<DiskProvider>().Verify(v => v.DeleteFolder(path, true), Times.Once());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_use_move_when_recycleBin_is_configured()
|
|
|
|
|
{
|
|
|
|
|
WithRecycleBin();
|
|
|
|
|
|
|
|
|
|
var path = @"C:\Test\TV\30 Rock";
|
|
|
|
|
|
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteDirectory(path);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<DiskProvider>().Verify(v => v.MoveDirectory(path, @"C:\Test\Recycle Bin\30 Rock"), Times.Once());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_call_directorySetLastWriteTime()
|
|
|
|
|
{
|
|
|
|
|
WithRecycleBin();
|
|
|
|
|
|
|
|
|
|
var path = @"C:\Test\TV\30 Rock";
|
|
|
|
|
|
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteDirectory(path);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<DiskProvider>().Verify(v => v.DirectorySetLastWriteTimeUtc(@"C:\Test\Recycle Bin\30 Rock", It.IsAny<DateTime>()), Times.Once());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_call_fileSetLastWriteTime_for_each_file()
|
|
|
|
|
{
|
|
|
|
|
WithRecycleBin();
|
|
|
|
|
var path = @"C:\Test\TV\30 Rock";
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<DiskProvider>().Setup(s => s.GetFiles(@"C:\Test\Recycle Bin\30 Rock", SearchOption.AllDirectories))
|
|
|
|
|
.Returns(new[]{ "File1", "File2", "File3" });
|
|
|
|
|
|
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteDirectory(path);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<DiskProvider>().Verify(v => v.FileSetLastWriteTimeUtc(It.IsAny<String>(), It.IsAny<DateTime>()), Times.Exactly(3));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|