1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

fixed newznab validation when URL is null.

This commit is contained in:
kayone
2013-12-02 14:11:17 -08:00
parent bd157b794b
commit 37ae2d04e3
2 changed files with 24 additions and 1 deletions
@@ -21,7 +21,25 @@ namespace NzbDrone.Core.Test.IndexerTests.NewznabTests
setting.Validate().IsValid.Should().BeFalse();
setting.Validate().Errors.Should().Contain(c => c.PropertyName == "ApiKey");
}
[TestCase("")]
[TestCase(" ")]
[TestCase(null)]
public void invalid_url_should_not_apikey(string url)
{
var setting = new NewznabSettings
{
ApiKey = "",
Url = url
};
setting.Validate().IsValid.Should().BeFalse();
setting.Validate().Errors.Should().NotContain(c => c.PropertyName == "ApiKey");
setting.Validate().Errors.Should().Contain(c => c.PropertyName == "Url");
}