2013-03-28 23:07:09 +01:00
|
|
|
|
|
2012-09-04 08:49:04 +02:00
|
|
|
|
|
|
|
|
|
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;
|
2013-05-07 02:39:33 +02:00
|
|
|
|
using NzbDrone.Core.MediaFiles;
|
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]
|
2013-03-28 23:07:09 +01:00
|
|
|
|
|
2013-02-17 06:44:06 +01:00
|
|
|
|
public class DeleteFileFixture : 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\S01E01.avi";
|
|
|
|
|
|
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFile(path);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<DiskProvider>().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";
|
|
|
|
|
|
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFile(path);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<DiskProvider>().Verify(v => v.MoveFile(path, @"C:\Test\Recycle Bin\S01E01.avi"), Times.Once());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void should_call_fileSetLastWriteTime_for_each_file()
|
|
|
|
|
{
|
|
|
|
|
WithRecycleBin();
|
|
|
|
|
var path = @"C:\Test\TV\30 Rock\S01E01.avi";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Mocker.Resolve<RecycleBinProvider>().DeleteFile(path);
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<DiskProvider>().Verify(v => v.FileSetLastWriteTimeUtc(@"C:\Test\Recycle Bin\S01E01.avi", It.IsAny<DateTime>()), Times.Once());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|