You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System.Net;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Api.Commands;
|
|
|
|
|
using NzbDrone.Common.Serializer;
|
|
|
|
|
using RestSharp;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Integration.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
[Ignore]
|
|
|
|
|
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().BeBlank();
|
|
|
|
|
response.StatusCode.Should().Be(HttpStatusCode.Created);
|
|
|
|
|
|
|
|
|
|
var trackedCommand = Json.Deserialize<CommandResource>(response.Content);
|
|
|
|
|
trackedCommand.Id.Should().NotBe(0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|