mirror of https://github.com/Radarr/Radarr
73 lines
2.6 KiB
C#
73 lines
2.6 KiB
C#
using FluentAssertions;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Notifications.Xbmc;
|
|
using NzbDrone.Core.Model.Xbmc;
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
namespace NzbDrone.Core.Test.NotificationTests.Xbmc
|
|
{
|
|
[TestFixture]
|
|
public class GetJsonVersionFixture : CoreTest<XbmcService>
|
|
{
|
|
private XbmcSettings _settings;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_settings = new XbmcSettings
|
|
{
|
|
Host = "localhost",
|
|
Port = 8080,
|
|
Username = "xbmc",
|
|
Password = "xbmc",
|
|
AlwaysUpdate = false,
|
|
CleanLibrary = false,
|
|
UpdateLibrary = true
|
|
};
|
|
}
|
|
|
|
[TestCase(3)]
|
|
[TestCase(2)]
|
|
[TestCase(0)]
|
|
public void should_get_version_from_major_only(int number)
|
|
{
|
|
var message = "{\"id\":10,\"jsonrpc\":\"2.0\",\"result\":{\"version\":" + number + "}}";
|
|
|
|
var fakeHttp = Mocker.GetMock<IHttpProvider>();
|
|
fakeHttp.Setup(s => s.PostCommand("localhost:8080", "xbmc", "xbmc", It.IsAny<string>()))
|
|
.Returns(message);
|
|
|
|
Subject.GetJsonVersion(_settings).Should().Be(new XbmcVersion(number));
|
|
}
|
|
|
|
[TestCase(5, 0, 0)]
|
|
[TestCase(6, 0, 0)]
|
|
[TestCase(6, 1, 0)]
|
|
[TestCase(6, 0, 23)]
|
|
[TestCase(0, 0, 0)]
|
|
public void should_get_version_from_semantic_version(int major, int minor, int patch)
|
|
{
|
|
var message = "{\"id\":10,\"jsonrpc\":\"2.0\",\"result\":{\"version\":{\"major\":" + major + ",\"minor\":" + minor + ",\"patch\":" + patch + "}}}";
|
|
|
|
var fakeHttp = Mocker.GetMock<IHttpProvider>();
|
|
fakeHttp.Setup(s => s.PostCommand("localhost:8080", "xbmc", "xbmc", It.IsAny<string>()))
|
|
.Returns(message);
|
|
|
|
Subject.GetJsonVersion(_settings).Should().Be(new XbmcVersion(major, minor, patch));
|
|
}
|
|
|
|
[Test]
|
|
public void should_get_version_zero_when_an_error_is_received()
|
|
{
|
|
var message = "{\"error\":{\"code\":-32601,\"message\":\"Method not found.\"},\"id\":10,\"jsonrpc\":\"2.0\"}";
|
|
|
|
var fakeHttp = Mocker.GetMock<IHttpProvider>();
|
|
fakeHttp.Setup(s => s.PostCommand("localhost:8080", "xbmc", "xbmc", It.IsAny<string>()))
|
|
.Returns(message);
|
|
|
|
Subject.GetJsonVersion(_settings).Should().Be(new XbmcVersion(0));
|
|
}
|
|
}
|
|
} |