2011-05-22 16:53:21 +00:00
|
|
|
|
// ReSharper disable RedundantUsingDirective
|
2011-10-20 23:42:17 +00:00
|
|
|
|
|
2011-06-18 02:00:44 +00:00
|
|
|
|
using System;
|
2011-05-21 00:23:49 +00:00
|
|
|
|
using System.Collections.Generic;
|
2011-11-14 00:22:18 +00:00
|
|
|
|
|
2011-05-21 00:23:49 +00:00
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
|
using Moq;
|
2011-06-02 21:06:46 +00:00
|
|
|
|
using NUnit.Framework;
|
2011-12-02 01:33:17 +00:00
|
|
|
|
using NzbDrone.Core.Jobs;
|
2011-05-21 00:23:49 +00:00
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
2011-10-24 05:54:09 +00:00
|
|
|
|
using NzbDrone.Test.Common;
|
2011-11-14 00:22:18 +00:00
|
|
|
|
using NzbDrone.Test.Common.AutoMoq;
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-10-20 23:42:17 +00:00
|
|
|
|
namespace NzbDrone.Core.Test.JobTests
|
|
|
|
|
{
|
2011-05-21 00:23:49 +00:00
|
|
|
|
[TestFixture]
|
|
|
|
|
// ReSharper disable InconsistentNaming
|
2011-11-13 07:27:16 +00:00
|
|
|
|
public class ImportNewSeriesJobTest : CoreTest
|
2011-05-21 00:23:49 +00:00
|
|
|
|
{
|
|
|
|
|
[Test]
|
2011-05-27 02:12:28 +00:00
|
|
|
|
public void import_new_series_succesfull()
|
2011-05-21 00:23:49 +00:00
|
|
|
|
{
|
|
|
|
|
var series = Builder<Series>.CreateListOfSize(2)
|
2011-10-18 21:46:06 +00:00
|
|
|
|
.All().With(s => s.LastInfoSync = null)
|
2011-10-23 05:39:14 +00:00
|
|
|
|
.TheFirst(1).With(s => s.SeriesId = 12)
|
|
|
|
|
.TheNext(1).With(s => s.SeriesId = 15)
|
2011-05-21 00:23:49 +00:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var notification = new ProgressNotification("Test");
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
WithStrictMocker();
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<SeriesProvider>()
|
2011-05-21 00:23:49 +00:00
|
|
|
|
.Setup(p => p.GetAllSeries())
|
2011-05-27 06:03:57 +00:00
|
|
|
|
.Returns(series);
|
2011-05-27 02:12:28 +00:00
|
|
|
|
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<DiskScanJob>()
|
2011-08-22 00:48:37 +00:00
|
|
|
|
.Setup(j => j.Start(notification, series[0].SeriesId, 0))
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Callback(() => series[0].LastDiskSync = DateTime.Now);
|
|
|
|
|
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<DiskScanJob>()
|
2011-08-22 00:48:37 +00:00
|
|
|
|
.Setup(j => j.Start(notification, series[1].SeriesId, 0))
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Callback(() => series[1].LastDiskSync = DateTime.Now);
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<BannerDownloadJob>()
|
2011-09-10 08:42:05 +00:00
|
|
|
|
.Setup(j => j.Start(notification, It.IsAny<int>(), 0));
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<UpdateInfoJob>()
|
2011-08-22 00:48:37 +00:00
|
|
|
|
.Setup(j => j.Start(notification, series[0].SeriesId, 0))
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Callback(() => series[0].LastInfoSync = DateTime.Now);
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<UpdateInfoJob>()
|
2011-08-22 00:48:37 +00:00
|
|
|
|
.Setup(j => j.Start(notification, series[1].SeriesId, 0))
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Callback(() => series[1].LastInfoSync = DateTime.Now);
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<SeriesProvider>()
|
2011-05-27 02:12:28 +00:00
|
|
|
|
.Setup(s => s.GetSeries(series[0].SeriesId)).Returns(series[0]);
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<SeriesProvider>()
|
2011-05-27 02:12:28 +00:00
|
|
|
|
.Setup(s => s.GetSeries(series[1].SeriesId)).Returns(series[1]);
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<MediaFileProvider>()
|
2011-05-27 02:12:28 +00:00
|
|
|
|
.Setup(s => s.GetSeriesFiles(It.IsAny<int>())).Returns(new List<EpisodeFile>());
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.Resolve<ImportNewSeriesJob>().Start(notification, 0, 0);
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.VerifyAllMocks();
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<DiskScanJob>().Verify(j => j.Start(notification, series[0].SeriesId, 0), Times.Once());
|
|
|
|
|
Mocker.GetMock<DiskScanJob>().Verify(j => j.Start(notification, series[1].SeriesId, 0), Times.Once());
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<UpdateInfoJob>().Verify(j => j.Start(notification, series[0].SeriesId, 0), Times.Once());
|
|
|
|
|
Mocker.GetMock<UpdateInfoJob>().Verify(j => j.Start(notification, series[1].SeriesId, 0), Times.Once());
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-05-21 00:23:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
2011-06-02 21:06:46 +00:00
|
|
|
|
[Timeout(3000)]
|
2011-05-27 02:12:28 +00:00
|
|
|
|
public void failed_import_should_not_be_stuck_in_loop()
|
2011-05-21 00:23:49 +00:00
|
|
|
|
{
|
|
|
|
|
var series = Builder<Series>.CreateListOfSize(2)
|
2011-10-18 21:46:06 +00:00
|
|
|
|
.All().With(s => s.LastInfoSync = null)
|
2011-10-23 05:39:14 +00:00
|
|
|
|
.TheFirst(1).With(s => s.SeriesId = 12)
|
|
|
|
|
.TheNext(1).With(s => s.SeriesId = 15)
|
2011-05-27 02:12:28 +00:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var notification = new ProgressNotification("Test");
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
WithStrictMocker();
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<SeriesProvider>()
|
2011-05-21 00:23:49 +00:00
|
|
|
|
.Setup(p => p.GetAllSeries())
|
2011-05-27 06:03:57 +00:00
|
|
|
|
.Returns(series);
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<UpdateInfoJob>()
|
2011-08-22 00:48:37 +00:00
|
|
|
|
.Setup(j => j.Start(notification, series[0].SeriesId, 0))
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Callback(() => series[0].LastInfoSync = DateTime.Now);
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<UpdateInfoJob>()
|
2011-08-22 00:48:37 +00:00
|
|
|
|
.Setup(j => j.Start(notification, series[1].SeriesId, 0))
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Throws(new InvalidOperationException());
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<DiskScanJob>()
|
2011-08-22 00:48:37 +00:00
|
|
|
|
.Setup(j => j.Start(notification, series[0].SeriesId, 0))
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Callback(() => series[0].LastDiskSync = DateTime.Now);
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<BannerDownloadJob>()
|
2011-09-10 08:42:05 +00:00
|
|
|
|
.Setup(j => j.Start(notification, series[0].SeriesId, 0));
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<SeriesProvider>()
|
2011-05-27 02:12:28 +00:00
|
|
|
|
.Setup(s => s.GetSeries(series[0].SeriesId)).Returns(series[0]);
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<MediaFileProvider>()
|
2011-05-27 02:12:28 +00:00
|
|
|
|
.Setup(s => s.GetSeriesFiles(It.IsAny<int>())).Returns(new List<EpisodeFile>());
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-05-27 02:12:28 +00:00
|
|
|
|
//Act
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.Resolve<ImportNewSeriesJob>().Start(notification, 0, 0);
|
2011-05-21 00:23:49 +00:00
|
|
|
|
|
2011-05-27 02:12:28 +00:00
|
|
|
|
//Assert
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.VerifyAllMocks();
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<UpdateInfoJob>().Verify(j => j.Start(notification, series[0].SeriesId, 0), Times.Once());
|
|
|
|
|
Mocker.GetMock<UpdateInfoJob>().Verify(j => j.Start(notification, series[1].SeriesId, 0), Times.Once());
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<DiskScanJob>().Verify(j => j.Start(notification, series[0].SeriesId, 0), Times.Once());
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-12-20 00:58:26 +00:00
|
|
|
|
ExceptionVerification.ExpectedErrors(1);
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-05-21 00:23:49 +00:00
|
|
|
|
}
|
2011-05-27 02:12:28 +00:00
|
|
|
|
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void AutoIgnoreSeason_new_series_should_not_ignore_any()
|
|
|
|
|
{
|
|
|
|
|
int seriesId = 12;
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
WithStrictMocker();
|
|
|
|
|
Mocker.GetMock<MediaFileProvider>()
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Setup(p => p.GetSeriesFiles(seriesId))
|
|
|
|
|
.Returns(new List<EpisodeFile>());
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<EpisodeProvider>()
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Setup(p => p.GetSeasons(seriesId))
|
|
|
|
|
.Returns(new List<int> { 0, 1, 2, 3, 4 });
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.Resolve<ImportNewSeriesJob>().AutoIgnoreSeasons(seriesId);
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
|
|
|
|
|
2012-02-28 05:50:56 +00:00
|
|
|
|
Mocker.GetMock<SeasonProvider>().Verify(p => p.SetIgnore(seriesId, It.IsAny<int>(), It.IsAny<Boolean>()), Times.Never());
|
2011-06-19 20:43:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void AutoIgnoreSeason_existing_should_not_ignore_currentseason()
|
|
|
|
|
{
|
|
|
|
|
int seriesId = 12;
|
|
|
|
|
|
|
|
|
|
var episodesFiles = Builder<EpisodeFile>.CreateListOfSize(2)
|
2011-10-18 21:46:06 +00:00
|
|
|
|
.All().With(e => e.SeriesId = seriesId)
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
episodesFiles[0].SeasonNumber = 0;
|
|
|
|
|
episodesFiles[1].SeasonNumber = 1;
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
WithStrictMocker();
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<MediaFileProvider>()
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Setup(p => p.GetSeriesFiles(seriesId))
|
|
|
|
|
.Returns(episodesFiles);
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<EpisodeProvider>()
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Setup(p => p.GetSeasons(seriesId))
|
|
|
|
|
.Returns(new List<int> { 0, 1, 2 });
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.Resolve<ImportNewSeriesJob>().AutoIgnoreSeasons(seriesId);
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2012-02-28 05:50:56 +00:00
|
|
|
|
Mocker.GetMock<SeasonProvider>().Verify(p => p.SetIgnore(seriesId, 2, It.IsAny<Boolean>()), Times.Never());
|
2011-06-19 20:43:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void AutoIgnoreSeason_existing_should_ignore_seasons_with_no_file()
|
|
|
|
|
{
|
|
|
|
|
int seriesId = 12;
|
|
|
|
|
|
|
|
|
|
var episodesFiles = Builder<EpisodeFile>.CreateListOfSize(2)
|
2011-10-18 21:46:06 +00:00
|
|
|
|
.All().With(e => e.SeriesId = seriesId)
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
episodesFiles[0].SeasonNumber = 1;
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<MediaFileProvider>()
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Setup(p => p.GetSeriesFiles(seriesId))
|
|
|
|
|
.Returns(episodesFiles);
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.GetMock<EpisodeProvider>()
|
2011-06-19 20:43:33 +00:00
|
|
|
|
.Setup(p => p.GetSeasons(seriesId))
|
|
|
|
|
.Returns(new List<int> { 0, 1, 2 });
|
|
|
|
|
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.Resolve<ImportNewSeriesJob>().AutoIgnoreSeasons(seriesId);
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2012-02-28 05:50:56 +00:00
|
|
|
|
Mocker.GetMock<SeasonProvider>().Verify(p => p.SetIgnore(seriesId, 0, true), Times.Once());
|
|
|
|
|
Mocker.GetMock<SeasonProvider>().Verify(p => p.SetIgnore(seriesId, 1, true), Times.Never());
|
|
|
|
|
Mocker.GetMock<SeasonProvider>().Verify(p => p.SetIgnore(seriesId, 2, It.IsAny<Boolean>()), Times.Never());
|
2011-06-19 20:43:33 +00:00
|
|
|
|
}
|
2011-05-21 00:23:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-19 20:43:33 +00:00
|
|
|
|
|
2011-05-21 00:23:49 +00:00
|
|
|
|
}
|