mirror of https://github.com/Sonarr/Sonarr
40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using System.Net;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Api.Commands;
|
|
using NzbDrone.Common.Serializer;
|
|
using RestSharp;
|
|
|
|
namespace NzbDrone.Integration.Test
|
|
{
|
|
[TestFixture]
|
|
[Ignore("Command integration tests are bad, maybe?")]
|
|
public class CommandIntegrationTest : IntegrationTest
|
|
{
|
|
[Test]
|
|
public void should_be_able_to_run_rss_sync()
|
|
{
|
|
var request = new RestRequest("command")
|
|
{
|
|
RequestFormat = DataFormat.Json,
|
|
Method = Method.POST
|
|
};
|
|
|
|
request.AddBody(new CommandResource { Name = "rsssync" });
|
|
|
|
var restClient = new RestClient("http://localhost:8989/api");
|
|
var response = restClient.Execute(request);
|
|
|
|
if (response.ErrorException != null)
|
|
{
|
|
throw response.ErrorException;
|
|
}
|
|
|
|
response.ErrorMessage.Should().BeNullOrWhiteSpace();
|
|
response.StatusCode.Should().Be(HttpStatusCode.Created);
|
|
|
|
var trackedCommand = Json.Deserialize<CommandResource>(response.Content);
|
|
trackedCommand.Id.Should().NotBe(0);
|
|
}
|
|
}
|
|
} |