mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
New: Treat Manual Bad in history as failed
This commit is contained in:
parent
d016079f6b
commit
ab478fd64b
@ -426,6 +426,31 @@ public void should_use_dest_dir_if_final_dir_is_not_set()
|
||||
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()
|
||||
{
|
||||
|
@ -132,6 +132,13 @@ private IEnumerable<DownloadClientItem> GetHistory()
|
||||
|
||||
if (item.DeleteStatus == "MANUAL")
|
||||
{
|
||||
if (item.MarkStatus == "BAD")
|
||||
{
|
||||
historyItem.Status = DownloadItemStatus.Failed;
|
||||
|
||||
historyItems.Add(historyItem);
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user