mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
Fixed: NzbGet development version no longer fails validation check.
This commit is contained in:
parent
90b047f0d4
commit
4448e87e28
@ -332,5 +332,41 @@ public void should_remap_storage_if_mounted()
|
||||
|
||||
result.OutputPath.Should().Be(@"O:\mymount\Droned.S01E01.Pilot.1080p.WEB-DL-DRONE".AsOsAgnostic());
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_pass_test_if_version_high_enough()
|
||||
{
|
||||
Mocker.GetMock<INzbgetProxy>()
|
||||
.Setup(v => v.GetVersion(It.IsAny<NzbgetSettings>()))
|
||||
.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>()
|
||||
.Setup(v => v.GetVersion(It.IsAny<NzbgetSettings>()))
|
||||
.Returns("12.0-dev");
|
||||
|
||||
var error = Subject.Test();
|
||||
|
||||
error.IsValid.Should().BeTrue();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -256,7 +256,7 @@ private ValidationFailure TestConnection()
|
||||
{
|
||||
var version = _proxy.GetVersion(Settings);
|
||||
|
||||
if (Version.Parse(version) < Version.Parse("12.0"))
|
||||
if (!version.Contains('-') && Version.Parse(version) < Version.Parse("12.0"))
|
||||
{
|
||||
return new ValidationFailure(string.Empty, "Nzbget version too low, need 12.0 or higher");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user