1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-05 23:57:20 +02:00
Radarr/NzbDrone.Core.Test/ProviderTests/RecycleBinProviderTests/DeleteFileFixture.cs

65 lines
1.9 KiB
C#
Raw Normal View History

2013-03-28 23:07:09 +01:00

using System;
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;
using NzbDrone.Core.Test.Framework;
2013-07-26 07:41:38 +02:00
using NzbDrone.Test.Common;
2013-03-02 19:25:39 +01:00
namespace NzbDrone.Core.Test.ProviderTests.RecycleBinProviderTests
{
[TestFixture]
2013-07-26 07:41:38 +02:00
public class DeleteFileFixture : CoreTest
{
private void WithRecycleBin()
{
2013-07-26 07:41:38 +02:00
Mocker.GetMock<IConfigService>().SetupGet(s => s.RecycleBin).Returns(@"C:\Test\Recycle Bin".AsOsAgnostic());
}
private void WithoutRecycleBin()
{
2013-02-24 20:39:31 +01:00
Mocker.GetMock<IConfigService>().SetupGet(s => s.RecycleBin).Returns(String.Empty);
}
[Test]
public void should_use_delete_when_recycleBin_is_not_configured()
{
WithoutRecycleBin();
2013-07-26 07:41:38 +02:00
var path = @"C:\Test\TV\30 Rock\S01E01.avi".AsOsAgnostic();
Mocker.Resolve<RecycleBinProvider>().DeleteFile(path);
2013-05-11 01:53:50 +02:00
Mocker.GetMock<IDiskProvider>().Verify(v => v.DeleteFile(path), Times.Once());
}
[Test]
public void should_use_move_when_recycleBin_is_configured()
{
WithRecycleBin();
2013-07-26 07:41:38 +02:00
var path = @"C:\Test\TV\30 Rock\S01E01.avi".AsOsAgnostic();
Mocker.Resolve<RecycleBinProvider>().DeleteFile(path);
2013-07-26 07:41:38 +02:00
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();
2013-07-26 07:41:38 +02:00
var path = @"C:\Test\TV\30 Rock\S01E01.avi".AsOsAgnostic();
Mocker.Resolve<RecycleBinProvider>().DeleteFile(path);
2013-07-26 07:41:38 +02:00
Mocker.GetMock<IDiskProvider>().Verify(v => v.FileSetLastWriteTimeUtc(@"C:\Test\Recycle Bin\S01E01.avi".AsOsAgnostic(), It.IsAny<DateTime>()), Times.Once());
}
}
}