mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
59 lines
1.5 KiB
C#
59 lines
1.5 KiB
C#
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Indexers.Newznab;
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.IndexerTests.NewznabTests
|
|
{
|
|
public class NewznabSettingFixture : CoreTest
|
|
{
|
|
|
|
[TestCase("http://nzbs.org")]
|
|
[TestCase("http:///www.nzbplanet.net")]
|
|
public void requires_apikey(string url)
|
|
{
|
|
var setting = new NewznabSettings()
|
|
{
|
|
ApiKey = "",
|
|
Url = url
|
|
};
|
|
|
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
|
[TestCase("http://nzbs2.org")]
|
|
public void doesnt_requires_apikey(string url)
|
|
{
|
|
var setting = new NewznabSettings()
|
|
{
|
|
ApiKey = "",
|
|
Url = url
|
|
};
|
|
|
|
|
|
setting.Validate().IsValid.Should().BeTrue();
|
|
}
|
|
}
|
|
} |