1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-24 22:36:19 -04:00

New: Remove completed downloads from disk when removing from SABnzbd

Closes #4423
This commit is contained in:
Mark McDowall
2021-04-07 18:03:00 -07:00
parent f2422f814d
commit ac8283d733
2 changed files with 163 additions and 1 deletions
@@ -576,5 +576,115 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabnzbdTests
result.IsValid.Should().BeFalse();
}
[Test]
public void should_remove_output_path_folder_when_deleting_a_completed_item_and_delete_data_is_true()
{
var path = @"C:\Test\Series.Title.S01E01".AsOsAgnostic();
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.FolderExists(path))
.Returns(true);
_completed.Items.First().Storage = path;
GivenQueue(null);
GivenHistory(_completed);
Subject.RemoveItem(_completed.Items.First().Id, true);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.DeleteFolder(path, true), Times.Once);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.DeleteFile(path), Times.Never);
}
[Test]
public void should_remove_output_path_file_when_deleting_a_completed_item_and_delete_data_is_true()
{
var path = @"C:\Test\Series.Title.S01E01.mkv".AsOsAgnostic();
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.FolderExists(path))
.Returns(false);
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.FileExists(path))
.Returns(true);
_completed.Items.First().Storage = path;
GivenQueue(null);
GivenHistory(_completed);
Subject.RemoveItem(_completed.Items.First().Id, true);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.DeleteFolder(path, true), Times.Never);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.DeleteFile(path), Times.Once);
}
[Test]
public void should_not_remove_output_path_file_when_deleting_a_completed_item_and_delete_data_is_true_if_it_does_not_exist()
{
var path = @"C:\Test\Series.Title.S01E01.mkv".AsOsAgnostic();
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.FolderExists(path))
.Returns(false);
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.FileExists(path))
.Returns(false);
_completed.Items.First().Storage = path;
GivenQueue(null);
GivenHistory(_completed);
Subject.RemoveItem(_completed.Items.First().Id, true);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.DeleteFolder(path, true), Times.Never);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.DeleteFile(path), Times.Never);
}
[Test]
public void should_not_remove_output_path_file_when_deleting_a_completed_item_and_delete_data_is_false()
{
var path = @"C:\Test\Series.Title.S01E01.mkv".AsOsAgnostic();
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.FolderExists(path))
.Returns(false);
Mocker.GetMock<IDiskProvider>()
.Setup(s => s.FileExists(path))
.Returns(false);
_completed.Items.First().Storage = path;
GivenQueue(null);
GivenHistory(_completed);
Subject.RemoveItem(_completed.Items.First().Id, false);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.FolderExists(path), Times.Never);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.FileExists(path), Times.Never);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.DeleteFolder(path, true), Times.Never);
Mocker.GetMock<IDiskProvider>()
.Verify(v => v.DeleteFile(path), Times.Never);
}
}
}