2011-10-24 07:54:09 +02:00
|
|
|
|
using System;
|
2011-05-22 18:53:06 +02:00
|
|
|
|
using FizzWare.NBuilder;
|
2011-06-23 08:56:17 +02:00
|
|
|
|
using FluentAssertions;
|
2011-06-02 23:06:46 +02:00
|
|
|
|
using NUnit.Framework;
|
2011-05-22 18:53:06 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
// ReSharper disable InconsistentNaming
|
2013-02-02 21:54:03 +01:00
|
|
|
|
public class EpisodeStatusTest : SqlCeTest
|
2011-08-22 08:32:38 +02:00
|
|
|
|
{
|
2011-06-02 23:06:46 +02:00
|
|
|
|
[TestCase(1, false, false, EpisodeStatusType.NotAired)]
|
|
|
|
|
[TestCase(-2, false, false, EpisodeStatusType.Missing)]
|
2012-03-03 21:25:02 +01:00
|
|
|
|
[TestCase(0, false, false, EpisodeStatusType.AirsToday)]
|
2011-06-02 23:06:46 +02:00
|
|
|
|
[TestCase(1, true, false, EpisodeStatusType.Ready)]
|
2012-03-03 21:25:02 +01:00
|
|
|
|
[TestCase(0, true, false, EpisodeStatusType.Ready)]
|
2011-05-22 18:53:06 +02:00
|
|
|
|
public void no_grab_date(int offsetDays, bool hasEpisodes, bool ignored, EpisodeStatusType status)
|
|
|
|
|
{
|
|
|
|
|
Episode episode = Builder<Episode>.CreateNew()
|
|
|
|
|
.With(e => e.AirDate = DateTime.Now.AddDays(offsetDays))
|
|
|
|
|
.With(e => e.Ignored = ignored)
|
|
|
|
|
.With(e => e.EpisodeFileId = 0)
|
|
|
|
|
.With(e => e.GrabDate = null)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
if (hasEpisodes)
|
|
|
|
|
{
|
|
|
|
|
episode.EpisodeFileId = 12;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(status, episode.Status);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-04 03:56:53 +02:00
|
|
|
|
[TestCase(1, false, false, EpisodeStatusType.Missing)]
|
2011-06-02 23:06:46 +02:00
|
|
|
|
[TestCase(-2, false, false, EpisodeStatusType.Missing)]
|
|
|
|
|
[TestCase(1, true, false, EpisodeStatusType.Ready)]
|
2011-05-22 18:53:06 +02:00
|
|
|
|
public void old_grab_date(int offsetDays, bool hasEpisodes, bool ignored,
|
|
|
|
|
EpisodeStatusType status)
|
|
|
|
|
{
|
|
|
|
|
Episode episode = Builder<Episode>.CreateNew()
|
2011-06-04 03:56:53 +02:00
|
|
|
|
.With(e => e.Ignored = ignored)
|
2011-05-22 18:53:06 +02:00
|
|
|
|
.With(e => e.EpisodeFileId = 0)
|
2012-03-03 21:25:02 +01:00
|
|
|
|
.With(e => e.GrabDate = DateTime.Now.AddDays(-2).AddHours(-1))
|
|
|
|
|
.With(e => e.AirDate = DateTime.Today.AddDays(-2))
|
2011-05-22 18:53:06 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
if (hasEpisodes)
|
|
|
|
|
{
|
|
|
|
|
episode.EpisodeFileId = 12;
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-03 21:25:02 +01:00
|
|
|
|
episode.Status.Should().Be(status);
|
2011-05-22 18:53:06 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-02 23:06:46 +02:00
|
|
|
|
[TestCase(1, false, false, EpisodeStatusType.Downloading)]
|
|
|
|
|
[TestCase(-2, false, false, EpisodeStatusType.Downloading)]
|
2011-07-10 22:07:42 +02:00
|
|
|
|
[TestCase(1, true, false, EpisodeStatusType.Ready)]
|
|
|
|
|
[TestCase(1, true, true, EpisodeStatusType.Ready)]
|
2011-06-02 23:06:46 +02:00
|
|
|
|
[TestCase(1, false, true, EpisodeStatusType.Downloading)]
|
2011-05-22 18:53:06 +02:00
|
|
|
|
public void recent_grab_date(int offsetDays, bool hasEpisodes, bool ignored,
|
|
|
|
|
EpisodeStatusType status)
|
|
|
|
|
{
|
|
|
|
|
Episode episode = Builder<Episode>.CreateNew()
|
2011-06-04 03:56:53 +02:00
|
|
|
|
.With(e => e.AirDate = DateTime.Now.AddDays(offsetDays))
|
2011-05-22 18:53:06 +02:00
|
|
|
|
.With(e => e.Ignored = ignored)
|
|
|
|
|
.With(e => e.EpisodeFileId = 0)
|
2011-06-18 19:18:25 +02:00
|
|
|
|
.With(e => e.GrabDate = DateTime.Now.AddHours(22))
|
2011-05-22 18:53:06 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
if (hasEpisodes)
|
|
|
|
|
{
|
|
|
|
|
episode.EpisodeFileId = 12;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(status, episode.Status);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-04 03:56:53 +02:00
|
|
|
|
[TestCase(1, true, true, EpisodeStatusType.Ready)]
|
|
|
|
|
public void ignored_episode(int offsetDays, bool ignored, bool hasEpisodes, EpisodeStatusType status)
|
2011-05-22 18:53:06 +02:00
|
|
|
|
{
|
|
|
|
|
Episode episode = Builder<Episode>.CreateNew()
|
|
|
|
|
.With(e => e.AirDate = DateTime.Now.AddDays(offsetDays))
|
|
|
|
|
.With(e => e.Ignored = ignored)
|
|
|
|
|
.With(e => e.EpisodeFileId = 0)
|
2011-06-02 03:16:17 +02:00
|
|
|
|
.With(e => e.GrabDate = null)
|
2011-05-22 18:53:06 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
if (hasEpisodes)
|
|
|
|
|
{
|
|
|
|
|
episode.EpisodeFileId = 12;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(status, episode.Status);
|
|
|
|
|
}
|
2011-05-22 19:29:10 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void low_air_date()
|
|
|
|
|
{
|
|
|
|
|
Episode episode = Builder<Episode>.CreateNew()
|
2011-06-23 08:56:17 +02:00
|
|
|
|
.With(e => e.AirDate = DateTime.Now.AddDays(20))
|
2011-05-22 19:29:10 +02:00
|
|
|
|
.With(e => e.Ignored = false)
|
|
|
|
|
.With(e => e.EpisodeFileId = 0)
|
2011-06-02 03:16:17 +02:00
|
|
|
|
.With(e => e.GrabDate = null)
|
2011-05-22 19:29:10 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2011-06-02 03:16:17 +02:00
|
|
|
|
|
2011-06-23 08:56:17 +02:00
|
|
|
|
episode.Status.Should().Be(EpisodeStatusType.NotAired);
|
2011-05-22 19:29:10 +02:00
|
|
|
|
}
|
2011-10-12 05:44:19 +02:00
|
|
|
|
|
|
|
|
|
[TestCase(false, false, EpisodeStatusType.Failed, PostDownloadStatusType.Failed)]
|
|
|
|
|
[TestCase(false, false, EpisodeStatusType.Unpacking, PostDownloadStatusType.Unpacking)]
|
|
|
|
|
[TestCase(true, false, EpisodeStatusType.Ready, PostDownloadStatusType.Failed)]
|
|
|
|
|
[TestCase(true, true, EpisodeStatusType.Ready, PostDownloadStatusType.Unpacking)]
|
|
|
|
|
public void episode_downloaded_post_download_status_is_used(bool hasEpisodes, bool ignored,
|
|
|
|
|
EpisodeStatusType status, PostDownloadStatusType postDownloadStatus)
|
|
|
|
|
{
|
|
|
|
|
Episode episode = Builder<Episode>.CreateNew()
|
|
|
|
|
.With(e => e.Ignored = ignored)
|
|
|
|
|
.With(e => e.EpisodeFileId = 0)
|
|
|
|
|
.With(e => e.GrabDate = DateTime.Now.AddHours(22))
|
|
|
|
|
.With(e => e.PostDownloadStatus = postDownloadStatus)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
if (hasEpisodes)
|
|
|
|
|
{
|
|
|
|
|
episode.EpisodeFileId = 12;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Assert.AreEqual(status, episode.Status);
|
|
|
|
|
}
|
2011-05-22 18:53:06 +02:00
|
|
|
|
}
|
|
|
|
|
}
|