Hard test on dev nzbget version as requested.

pull/6/head
Taloth Saldono 10 years ago
parent b62d36bdbe
commit 923488bc02

@ -343,40 +343,19 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetTests
result.OutputPath.Should().Be(@"O:\mymount\Droned.S01E01.Pilot.1080p.WEB-DL-DRONE".AsOsAgnostic()); result.OutputPath.Should().Be(@"O:\mymount\Droned.S01E01.Pilot.1080p.WEB-DL-DRONE".AsOsAgnostic());
} }
[Test] [TestCase("11.0", false)]
public void should_pass_test_if_version_high_enough() [TestCase("12.0", true)]
{ [TestCase("11.0-b30ef0134", false)]
Mocker.GetMock<INzbgetProxy>() [TestCase("13.0-b30ef0134", true)]
.Setup(v => v.GetVersion(It.IsAny<NzbgetSettings>())) public void should_test_version(string version, bool expected)
.Returns("12.0");
var error = Subject.Test();
error.IsValid.Should().BeTrue();
}
[Test]
public void should_fail_test_if_version_too_low()
{
Mocker.GetMock<INzbgetProxy>()
.Setup(v => v.GetVersion(It.IsAny<NzbgetSettings>()))
.Returns("11.0");
var error = Subject.Test();
error.IsValid.Should().BeFalse();
}
[Test]
public void should_ignore_version_test_if_development_version()
{ {
Mocker.GetMock<INzbgetProxy>() Mocker.GetMock<INzbgetProxy>()
.Setup(v => v.GetVersion(It.IsAny<NzbgetSettings>())) .Setup(v => v.GetVersion(It.IsAny<NzbgetSettings>()))
.Returns("12.0-dev"); .Returns(version);
var error = Subject.Test(); var error = Subject.Test();
error.IsValid.Should().BeTrue(); error.IsValid.Should().Be(expected);
} }
} }
} }

@ -258,9 +258,9 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
{ {
try try
{ {
var version = _proxy.GetVersion(Settings); var version = _proxy.GetVersion(Settings).Split('-')[0];
if (!version.Contains('-') && Version.Parse(version) < Version.Parse("12.0")) if (Version.Parse(version) < Version.Parse("12.0"))
{ {
return new ValidationFailure(string.Empty, "Nzbget version too low, need 12.0 or higher"); return new ValidationFailure(string.Empty, "Nzbget version too low, need 12.0 or higher");
} }

Loading…
Cancel
Save