Sonarr/NzbDrone.Core.Test/EpisodeStatusTest.cs

47 lines
1.2 KiB
C#
Raw Normal View History

2011-10-24 05:54:09 +00:00
using System;
using FizzWare.NBuilder;
2011-06-23 06:56:17 +00:00
using FluentAssertions;
2011-06-02 21:06:46 +00:00
using NUnit.Framework;
2013-03-01 07:03:41 +00:00
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Tv;
using NzbDrone.Core.Model;
2013-03-07 01:51:47 +00:00
using NzbDrone.Core.Test.Framework;
namespace NzbDrone.Core.Test
{
[TestFixture]
public class EpisodeStatusTest : CoreTest
2013-02-24 20:24:31 +00:00
{
[TestCase(1, true, true, EpisodeStatuses.Ready)]
public void ignored_episode(int offsetDays, bool ignored, bool hasEpisodes, EpisodeStatuses status)
{
Episode episode = Builder<Episode>.CreateNew()
.With(e => e.AirDate = DateTime.Now.AddDays(offsetDays))
.With(e => e.Ignored = ignored)
.Build();
if (hasEpisodes)
{
episode.EpisodeFile = new EpisodeFile();
}
2013-02-24 20:24:31 +00:00
episode.Status.Should().Be(status);
}
2011-05-22 17:29:10 +00:00
[Test]
public void low_air_date()
{
Episode episode = Builder<Episode>.CreateNew()
2011-06-23 06:56:17 +00:00
.With(e => e.AirDate = DateTime.Now.AddDays(20))
2011-05-22 17:29:10 +00:00
.With(e => e.Ignored = false)
.With(e => e.EpisodeFileId = 0)
2011-05-22 17:29:10 +00:00
.Build();
2011-06-02 01:16:17 +00:00
episode.Status.Should().Be(EpisodeStatuses.NotAired);
2011-05-22 17:29:10 +00:00
}
}
}