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.
65 lines
1.9 KiB
65 lines
1.9 KiB
|
|
|
|
using System;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.MediaFiles;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests.RecycleBinProviderTests
|
|
{
|
|
[TestFixture]
|
|
|
|
public class DeleteFileFixture : CoreTest
|
|
{
|
|
private void WithRecycleBin()
|
|
{
|
|
Mocker.GetMock<IConfigService>().SetupGet(s => s.RecycleBin).Returns(@"C:\Test\Recycle Bin".AsOsAgnostic());
|
|
}
|
|
|
|
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\S01E01.avi".AsOsAgnostic();
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFile(path);
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.DeleteFile(path), Times.Once());
|
|
}
|
|
|
|
[Test]
|
|
public void should_use_move_when_recycleBin_is_configured()
|
|
{
|
|
WithRecycleBin();
|
|
|
|
var path = @"C:\Test\TV\30 Rock\S01E01.avi".AsOsAgnostic();
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFile(path);
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.MoveFile(path, @"C:\Test\Recycle Bin\S01E01.avi".AsOsAgnostic()), Times.Once());
|
|
}
|
|
|
|
[Test]
|
|
public void should_call_fileSetLastWriteTime_for_each_file()
|
|
{
|
|
WithRecycleBin();
|
|
var path = @"C:\Test\TV\30 Rock\S01E01.avi".AsOsAgnostic();
|
|
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFile(path);
|
|
|
|
Mocker.GetMock<IDiskProvider>().Verify(v => v.FileSetLastWriteTimeUtc(@"C:\Test\Recycle Bin\S01E01.avi".AsOsAgnostic(), It.IsAny<DateTime>()), Times.Once());
|
|
}
|
|
}
|
|
}
|