New: Handle missingFiles status from qBit
This commit is contained in:
parent
ded3f59d2f
commit
7b7da9c1b2
|
@ -285,6 +285,27 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.QBittorrentTests
|
|||
item.RemainingTime.Should().NotHaveValue();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void missingFiles_item_should_have_required_properties()
|
||||
{
|
||||
var torrent = new QBittorrentTorrent
|
||||
{
|
||||
Hash = "HASH",
|
||||
Name = _title,
|
||||
Size = 1000,
|
||||
Progress = 0.7,
|
||||
Eta = 8640000,
|
||||
State = "missingFiles",
|
||||
Label = "",
|
||||
SavePath = ""
|
||||
};
|
||||
GivenTorrents(new List<QBittorrentTorrent> { torrent });
|
||||
|
||||
var item = Subject.GetItems().Single();
|
||||
VerifyWarning(item);
|
||||
item.RemainingTime.Should().NotHaveValue();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void single_file_torrent_outputpath_should_have_sanitised_name()
|
||||
{
|
||||
|
|
|
@ -269,6 +269,11 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
|
|||
item.Message = "The download is stalled with no connections";
|
||||
break;
|
||||
|
||||
case "missingFiles": // torrent is missing files
|
||||
item.Status = DownloadItemStatus.Warning;
|
||||
item.Message = "The download is missing files";
|
||||
break;
|
||||
|
||||
case "metaDL": // torrent magnet is being downloaded
|
||||
if (config.DhtEnabled)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue