mirror of https://github.com/lidarr/Lidarr
79 lines
2.4 KiB
C#
79 lines
2.4 KiB
C#
|
|
|
|
using System;
|
|
using System.IO;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.RecycleBinProviderTests
|
|
{
|
|
[TestFixture]
|
|
|
|
public class DeleteDirectoryFixture : CoreTest
|
|
{
|
|
private void WithRecycleBin()
|
|
{
|
|
Mocker.GetMock<IConfigService>().SetupGet(s => s.RecycleBin).Returns(@"C:\Test\Recycle Bin");
|
|
}
|
|
|
|
private void WithoutRecycleBin()
|
|
{
|
|
Mocker.GetMock<IConfigService>().SetupGet(s => s.RecycleBin).Returns(String.Empty);
|
|
}
|
|
|
|
[Test]
|
|
public void should_use_delete_when_recycleBin_is_not_configured()
|
|
{
|
|
WithoutRecycleBin();
|
|
|
|
var path = @"C:\Test\TV\30 Rock";
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFolder(path);
|
|
|
|
Mocker.GetMock<IDiskProvider>().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>().DeleteFolder(path);
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.MoveFolder(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>().DeleteFolder(path);
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.FolderSetLastWriteTimeUtc(@"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<IDiskProvider>().Setup(s => s.GetFiles(@"C:\Test\Recycle Bin\30 Rock", SearchOption.AllDirectories))
|
|
.Returns(new[]{ "File1", "File2", "File3" });
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFolder(path);
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.FileSetLastWriteTimeUtc(It.IsAny<String>(), It.IsAny<DateTime>()), Times.Exactly(3));
|
|
}
|
|
}
|
|
}
|