2011-10-20 16:42:17 -07:00
|
|
|
using System.Collections.Generic;
|
2011-11-13 16:22:18 -08:00
|
|
|
|
2011-08-22 22:29:12 -07:00
|
|
|
using Moq;
|
|
|
|
using NUnit.Framework;
|
2011-12-01 17:33:17 -08:00
|
|
|
using NzbDrone.Core.Jobs;
|
2011-08-22 22:29:12 -07:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
2012-09-10 23:35:25 -07:00
|
|
|
using NzbDrone.Test.Common;
|
2011-11-13 16:22:18 -08:00
|
|
|
using NzbDrone.Test.Common.AutoMoq;
|
2011-08-22 22:29:12 -07:00
|
|
|
|
2011-10-20 16:42:17 -07:00
|
|
|
namespace NzbDrone.Core.Test.JobTests
|
2011-08-22 22:29:12 -07:00
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
// ReSharper disable InconsistentNaming
|
2011-11-12 23:27:16 -08:00
|
|
|
public class SeriesSearchJobTest : CoreTest
|
2011-08-22 22:29:12 -07:00
|
|
|
{
|
|
|
|
[Test]
|
|
|
|
public void SeriesSearch_success()
|
|
|
|
{
|
2011-08-27 23:37:34 -07:00
|
|
|
var seasons = new List<int> { 1, 2, 3, 4, 5 };
|
2011-08-22 22:29:12 -07:00
|
|
|
|
2011-12-14 20:15:53 -08:00
|
|
|
WithStrictMocker();
|
2011-08-22 22:29:12 -07:00
|
|
|
|
|
|
|
var notification = new ProgressNotification("Series Search");
|
|
|
|
|
2012-02-22 00:00:51 -08:00
|
|
|
Mocker.GetMock<SeasonProvider>()
|
2011-08-27 23:37:34 -07:00
|
|
|
.Setup(c => c.GetSeasons(1)).Returns(seasons);
|
2011-08-22 22:29:12 -07:00
|
|
|
|
2012-02-20 19:25:19 -08:00
|
|
|
Mocker.GetMock<SeasonProvider>()
|
2011-08-28 12:24:16 -07:00
|
|
|
.Setup(c => c.IsIgnored(It.IsAny<int>(), It.IsAny<int>())).Returns(false);
|
|
|
|
|
2011-12-14 20:15:53 -08:00
|
|
|
Mocker.GetMock<SeasonSearchJob>()
|
2012-09-10 23:35:25 -07:00
|
|
|
.Setup(c => c.Start(notification, It.Is<object>(d => d.GetPropertyValue<int>("SeriesId") == 1 && d.GetPropertyValue<int>("SeasonNumber") >= 0))).Verifiable();
|
2011-08-22 22:29:12 -07:00
|
|
|
|
|
|
|
//Act
|
2012-09-10 12:04:17 -07:00
|
|
|
Mocker.Resolve<SeriesSearchJob>().Start(notification, new { SeriesId = 1 });
|
2011-08-22 22:29:12 -07:00
|
|
|
|
|
|
|
//Assert
|
2011-12-14 20:15:53 -08:00
|
|
|
Mocker.VerifyAllMocks();
|
2012-09-10 23:35:25 -07:00
|
|
|
Mocker.GetMock<SeasonSearchJob>().Verify(c => c.Start(notification, It.Is<object>(d => d.GetPropertyValue<int>("SeriesId") == 1 && d.GetPropertyValue<int>("SeasonNumber") >= 0)),
|
2011-08-27 23:37:34 -07:00
|
|
|
Times.Exactly(seasons.Count));
|
2011-08-22 22:29:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
2011-08-27 23:37:34 -07:00
|
|
|
public void SeriesSearch_no_seasons()
|
2011-08-22 22:29:12 -07:00
|
|
|
{
|
2011-08-27 23:37:34 -07:00
|
|
|
var seasons = new List<int>();
|
2011-08-22 22:29:12 -07:00
|
|
|
|
2011-12-14 20:15:53 -08:00
|
|
|
WithStrictMocker();
|
2011-08-22 22:29:12 -07:00
|
|
|
|
|
|
|
var notification = new ProgressNotification("Series Search");
|
|
|
|
|
2012-02-22 00:00:51 -08:00
|
|
|
Mocker.GetMock<SeasonProvider>()
|
2011-08-27 23:37:34 -07:00
|
|
|
.Setup(c => c.GetSeasons(1)).Returns(seasons);
|
2011-08-22 22:29:12 -07:00
|
|
|
|
|
|
|
//Act
|
2012-09-10 12:04:17 -07:00
|
|
|
Mocker.Resolve<SeriesSearchJob>().Start(notification, new { SeriesId = 1 });
|
2011-08-22 22:29:12 -07:00
|
|
|
|
|
|
|
//Assert
|
2011-12-14 20:15:53 -08:00
|
|
|
Mocker.VerifyAllMocks();
|
2012-09-10 12:04:17 -07:00
|
|
|
Mocker.GetMock<SeasonSearchJob>().Verify(c => c.Start(notification, new { SeriesId = 1, SeasonNumber = It.IsAny<int>() }),
|
2011-08-27 23:37:34 -07:00
|
|
|
Times.Never());
|
2011-08-22 22:29:12 -07:00
|
|
|
}
|
2011-11-25 23:52:54 -08:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void SeriesSearch_should_not_search_for_season_0()
|
|
|
|
{
|
2012-02-22 00:00:51 -08:00
|
|
|
Mocker.GetMock<SeasonProvider>()
|
2011-11-25 23:52:54 -08:00
|
|
|
.Setup(c => c.GetSeasons(It.IsAny<int>()))
|
|
|
|
.Returns(new List<int> { 0, 1, 2 });
|
|
|
|
|
2012-09-10 12:04:17 -07:00
|
|
|
Mocker.Resolve<SeriesSearchJob>().Start(MockNotification, new { SeriesId = 12 });
|
2011-11-25 23:52:54 -08:00
|
|
|
|
|
|
|
|
|
|
|
Mocker.GetMock<SeasonSearchJob>()
|
2012-09-10 12:04:17 -07:00
|
|
|
.Verify(c => c.Start(It.IsAny<ProgressNotification>(), new { SeriesId = It.IsAny<int>(), SeasonNumber = 0 }), Times.Never());
|
2011-11-25 23:52:54 -08:00
|
|
|
}
|
2011-08-22 22:29:12 -07:00
|
|
|
}
|
|
|
|
}
|