1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 16:01:46 +02:00
Radarr/NzbDrone.Integration.Test/SeriesIntegrationTest.cs

50 lines
1.3 KiB
C#
Raw Normal View History

2013-04-22 09:21:39 +02:00
using System.IO;
using System.Net;
2013-04-21 00:14:41 +02:00
using FluentAssertions;
2013-04-19 06:46:18 +02:00
using NUnit.Framework;
2013-04-22 09:21:39 +02:00
using NzbDrone.Api.RootFolders;
2013-04-19 06:46:18 +02:00
using NzbDrone.Api.Series;
using System.Linq;
2013-04-19 06:46:18 +02:00
namespace NzbDrone.Integration.Test
{
[TestFixture]
public class SeriesIntegrationTest : IntegrationTest
2013-04-19 06:46:18 +02:00
{
[Test]
public void should_have_no_series_on_start_application()
{
Series.All().Should().BeEmpty();
2013-04-19 06:46:18 +02:00
}
[Test]
public void series_lookup_on_trakt()
{
var series = Series.Lookup("archer");
series.Should().NotBeEmpty();
series.Should().Contain(c => c.Title == "Archer (2009)");
}
[Test]
2013-04-21 00:14:41 +02:00
public void add_series_without_required_fields_should_return_badrequest()
2013-04-19 06:46:18 +02:00
{
2013-04-21 00:14:41 +02:00
var errors = Series.InvalidPost(new SeriesResource());
errors.Should().NotBeEmpty();
2013-04-19 06:46:18 +02:00
}
[Test]
public void should_be_able_to_add_series()
{
var series = Series.Lookup("archer").First();
2013-04-22 09:21:39 +02:00
var rootFolder = RootFolders.Post(new RootFolderResource { Path = Directory.GetCurrentDirectory() });
series.RootFolderId = rootFolder.Id;
Series.Post(series);
Series.All().Should().HaveCount(1);
}
2013-04-19 06:46:18 +02:00
}
}