Fixed test case for unavailable download client.
This commit is contained in:
parent
2d1d1c8a99
commit
9471343533
|
@ -82,7 +82,7 @@ namespace NzbDrone.Core.Test.Download
|
||||||
{
|
{
|
||||||
var mock = WithUsenetClient();
|
var mock = WithUsenetClient();
|
||||||
mock.Setup(s => s.Download(It.IsAny<RemoteEpisode>()));
|
mock.Setup(s => s.Download(It.IsAny<RemoteEpisode>()));
|
||||||
|
|
||||||
Subject.DownloadReport(_parseResult);
|
Subject.DownloadReport(_parseResult);
|
||||||
|
|
||||||
VerifyEventPublished<EpisodeGrabbedEvent>();
|
VerifyEventPublished<EpisodeGrabbedEvent>();
|
||||||
|
@ -93,7 +93,7 @@ namespace NzbDrone.Core.Test.Download
|
||||||
{
|
{
|
||||||
var mock = WithUsenetClient();
|
var mock = WithUsenetClient();
|
||||||
mock.Setup(s => s.Download(It.IsAny<RemoteEpisode>()));
|
mock.Setup(s => s.Download(It.IsAny<RemoteEpisode>()));
|
||||||
|
|
||||||
Subject.DownloadReport(_parseResult);
|
Subject.DownloadReport(_parseResult);
|
||||||
|
|
||||||
mock.Verify(s => s.Download(It.IsAny<RemoteEpisode>()), Times.Once());
|
mock.Verify(s => s.Download(It.IsAny<RemoteEpisode>()), Times.Once());
|
||||||
|
@ -117,7 +117,7 @@ namespace NzbDrone.Core.Test.Download
|
||||||
var mock = WithUsenetClient();
|
var mock = WithUsenetClient();
|
||||||
mock.Setup(s => s.Download(It.IsAny<RemoteEpisode>()))
|
mock.Setup(s => s.Download(It.IsAny<RemoteEpisode>()))
|
||||||
.Callback<RemoteEpisode>(v => {
|
.Callback<RemoteEpisode>(v => {
|
||||||
throw new ReleaseDownloadException(v.Release, "Error", new WebException());
|
throw new ReleaseDownloadException(v.Release, "Error", new WebException());
|
||||||
});
|
});
|
||||||
|
|
||||||
Assert.Throws<ReleaseDownloadException>(() => Subject.DownloadReport(_parseResult));
|
Assert.Throws<ReleaseDownloadException>(() => Subject.DownloadReport(_parseResult));
|
||||||
|
@ -136,7 +136,7 @@ namespace NzbDrone.Core.Test.Download
|
||||||
var mock = WithUsenetClient();
|
var mock = WithUsenetClient();
|
||||||
mock.Setup(s => s.Download(It.IsAny<RemoteEpisode>()))
|
mock.Setup(s => s.Download(It.IsAny<RemoteEpisode>()))
|
||||||
.Callback<RemoteEpisode>(v => {
|
.Callback<RemoteEpisode>(v => {
|
||||||
throw new ReleaseDownloadException(v.Release, "Error", new TooManyRequestsException(request, response));
|
throw new ReleaseDownloadException(v.Release, "Error", new TooManyRequestsException(request, response));
|
||||||
});
|
});
|
||||||
|
|
||||||
Assert.Throws<ReleaseDownloadException>(() => Subject.DownloadReport(_parseResult));
|
Assert.Throws<ReleaseDownloadException>(() => Subject.DownloadReport(_parseResult));
|
||||||
|
@ -182,12 +182,10 @@ namespace NzbDrone.Core.Test.Download
|
||||||
[Test]
|
[Test]
|
||||||
public void should_not_attempt_download_if_client_isnt_configure()
|
public void should_not_attempt_download_if_client_isnt_configure()
|
||||||
{
|
{
|
||||||
Subject.DownloadReport(_parseResult);
|
Assert.Throws<DownloadClientUnavailableException>(() => Subject.DownloadReport(_parseResult));
|
||||||
|
|
||||||
Mocker.GetMock<IDownloadClient>().Verify(c => c.Download(It.IsAny<RemoteEpisode>()), Times.Never());
|
Mocker.GetMock<IDownloadClient>().Verify(c => c.Download(It.IsAny<RemoteEpisode>()), Times.Never());
|
||||||
VerifyEventNotPublished<EpisodeGrabbedEvent>();
|
VerifyEventNotPublished<EpisodeGrabbedEvent>();
|
||||||
|
|
||||||
ExceptionVerification.ExpectedWarns(1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
|
Loading…
Reference in New Issue