|
|
|
@ -258,6 +258,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 Download_should_return_unique_id()
|
|
|
|
|
{
|
|
|
|
|