mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-24 22:36:19 -04:00
New: Treat Manual Bad in history as failed
This commit is contained in:
@@ -426,6 +426,31 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetTests
|
||||
Subject.GetItems().First().OutputPath.Should().Be(_completed.DestDir);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_report_deletestatus_manual_with_markstatus_bad_as_failed()
|
||||
{
|
||||
_completed.DeleteStatus = "MANUAL";
|
||||
_completed.MarkStatus = "BAD";
|
||||
|
||||
GivenQueue(null);
|
||||
GivenHistory(_completed);
|
||||
|
||||
var result = Subject.GetItems().Single();
|
||||
|
||||
result.Status.Should().Be(DownloadItemStatus.Failed);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_ignore_deletestatus_manual_without_markstatus()
|
||||
{
|
||||
_completed.DeleteStatus = "MANUAL";
|
||||
|
||||
GivenQueue(null);
|
||||
GivenHistory(_completed);
|
||||
|
||||
Subject.GetItems().Should().BeEmpty();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_use_final_dir_when_set_instead_of_dest_dir()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user