mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -04:00
eb76dd5248
Fixes #5849 Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
123 lines
3.5 KiB
C#
123 lines
3.5 KiB
C#
using System;
|
|
using System.Xml;
|
|
using FluentAssertions;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common.Http;
|
|
using NzbDrone.Core.Indexers.Newznab;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Core.Test.IndexerTests.NewznabTests
|
|
{
|
|
[TestFixture]
|
|
public class NewznabCapabilitiesProviderFixture : CoreTest<NewznabCapabilitiesProvider>
|
|
{
|
|
private NewznabSettings _settings;
|
|
private string _caps;
|
|
|
|
[SetUp]
|
|
public void SetUp()
|
|
{
|
|
_settings = new NewznabSettings()
|
|
{
|
|
BaseUrl = "http://indxer.local"
|
|
};
|
|
|
|
_caps = ReadAllText("Files/Indexers/Newznab/newznab_caps.xml");
|
|
}
|
|
|
|
private void GivenCapsResponse(string caps)
|
|
{
|
|
Mocker.GetMock<IHttpClient>()
|
|
.Setup(o => o.Get(It.IsAny<HttpRequest>()))
|
|
.Returns<HttpRequest>(r => new HttpResponse(r, new HttpHeader(), caps));
|
|
}
|
|
|
|
[Test]
|
|
public void should_not_request_same_caps_twice()
|
|
{
|
|
GivenCapsResponse(_caps);
|
|
|
|
Subject.GetCapabilities(_settings);
|
|
Subject.GetCapabilities(_settings);
|
|
|
|
Mocker.GetMock<IHttpClient>()
|
|
.Verify(o => o.Get(It.IsAny<HttpRequest>()), Times.Once());
|
|
}
|
|
|
|
[Test]
|
|
public void should_report_pagesize()
|
|
{
|
|
GivenCapsResponse(_caps);
|
|
|
|
var caps = Subject.GetCapabilities(_settings);
|
|
|
|
caps.DefaultPageSize.Should().Be(25);
|
|
caps.MaxPageSize.Should().Be(60);
|
|
}
|
|
|
|
[Test]
|
|
public void should_use_default_pagesize_if_missing()
|
|
{
|
|
GivenCapsResponse(_caps.Replace("<limits", "<abclimits"));
|
|
|
|
var caps = Subject.GetCapabilities(_settings);
|
|
|
|
caps.DefaultPageSize.Should().Be(100);
|
|
caps.MaxPageSize.Should().Be(100);
|
|
}
|
|
|
|
[Test]
|
|
public void should_throw_if_failed_to_get()
|
|
{
|
|
Mocker.GetMock<IHttpClient>()
|
|
.Setup(o => o.Get(It.IsAny<HttpRequest>()))
|
|
.Throws<Exception>();
|
|
|
|
Assert.Throws<Exception>(() => Subject.GetCapabilities(_settings));
|
|
}
|
|
|
|
[Test]
|
|
public void should_throw_if_xml_invalid()
|
|
{
|
|
GivenCapsResponse(_caps.Replace("<limits", "<>"));
|
|
|
|
Assert.Throws<XmlException>(() => Subject.GetCapabilities(_settings));
|
|
}
|
|
|
|
[Test]
|
|
public void should_not_throw_on_xml_data_unexpected()
|
|
{
|
|
GivenCapsResponse(_caps.Replace("5030", "asdf"));
|
|
|
|
var result = Subject.GetCapabilities(_settings);
|
|
|
|
result.Should().NotBeNull();
|
|
}
|
|
|
|
[Test]
|
|
public void should_use_default_searchengine_if_missing()
|
|
{
|
|
GivenCapsResponse(_caps);
|
|
|
|
var caps = Subject.GetCapabilities(_settings);
|
|
|
|
caps.TextSearchEngine.Should().Be("sphinx");
|
|
caps.MovieTextSearchEngine.Should().Be("sphinx");
|
|
}
|
|
|
|
[Test]
|
|
public void should_use_specified_searchengine()
|
|
{
|
|
GivenCapsResponse(_caps.Replace("<search ", "<search searchEngine=\"raw\" ")
|
|
.Replace("<movie-search ", "<movie-search searchEngine=\"raw2\" "));
|
|
|
|
var caps = Subject.GetCapabilities(_settings);
|
|
|
|
caps.TextSearchEngine.Should().Be("raw");
|
|
caps.MovieTextSearchEngine.Should().Be("raw2");
|
|
}
|
|
}
|
|
}
|