Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/8753c232c79ec3e9e39cf4f1c7414f8dec067239
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
31 additions and
0 deletions
@ -19,6 +19,7 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.TransmissionTests
protected TransmissionTorrent _downloading ;
protected TransmissionTorrent _failed ;
protected TransmissionTorrent _completed ;
protected TransmissionTorrent _magnet ;
protected Dictionary < string , object > _transmissionConfigItems ;
[SetUp]
@ -80,6 +81,17 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.TransmissionTests
DownloadDir = "somepath"
} ;
_magnet = new TransmissionTorrent
{
HashString = "HASH" ,
IsFinished = false ,
Status = TransmissionTorrentStatus . Downloading ,
Name = _title ,
TotalSize = 0 ,
LeftUntilDone = 100 ,
DownloadDir = "somepath"
} ;
Mocker . GetMock < ITorrentFileInfoReader > ( )
. Setup ( s = > s . GetHashFromTorrentFile ( It . IsAny < byte [ ] > ( ) ) )
. Returns ( "CBC2F069FE8BB2F544EAE707D75BCD3DE9DCF951" ) ;
@ -171,6 +183,14 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.TransmissionTests
} ) ;
}
protected void PrepareClientToReturnMagnetItem ( )
{
GivenTorrents ( new List < TransmissionTorrent >
{
_magnet
} ) ;
}
[Test]
public void queued_item_should_have_required_properties ( )
{
@ -203,6 +223,13 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.TransmissionTests
VerifyCompleted ( item ) ;
}
[Test]
public void magnet_download_should_not_return_the_item ( )
{
PrepareClientToReturnMagnetItem ( ) ;
Subject . GetItems ( ) . Count ( ) . Should ( ) . Be ( 0 ) ;
}
[Test]
public void Download_should_return_unique_id ( )
{
@ -99,6 +99,10 @@ namespace NzbDrone.Core.Download.Clients.Transmission
foreach ( var torrent in torrents )
{
// If totalsize == 0 the torrent is a magnet downloading metadata
if ( torrent . TotalSize = = 0 )
continue ;
var outputPath = _remotePathMappingService . RemapRemoteToLocal ( Settings . Host , new OsPath ( torrent . DownloadDir ) ) ;
if ( Settings . TvCategory . IsNotNullOrWhiteSpace ( ) )