mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
133 lines
3.9 KiB
C#
133 lines
3.9 KiB
C#
// ReSharper disable RedundantUsingDirective
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using FizzWare.NBuilder;
|
|
using Moq;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Core.Tv;
|
|
using NzbDrone.Core.Jobs;
|
|
using NzbDrone.Core.Model.Notification;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Repository;
|
|
using NzbDrone.Core.Test.Framework;
|
|
using NzbDrone.Test.Common;
|
|
using NzbDrone.Test.Common.AutoMoq;
|
|
using System.Linq;
|
|
|
|
namespace NzbDrone.Core.Test.JobTests
|
|
{
|
|
[TestFixture]
|
|
// ReSharper disable InconsistentNaming
|
|
public class DiskScanJobTest : CoreTest
|
|
{
|
|
[Test]
|
|
public void series_specific_scan_should_scan_series()
|
|
{
|
|
var series = Builder<Series>.CreateNew()
|
|
.With(s => s.SeriesId = 12)
|
|
.Build();
|
|
|
|
|
|
Mocker.GetMock<ISeriesRepository>()
|
|
.Setup(p => p.Get(series.SeriesId));
|
|
|
|
|
|
Mocker.GetMock<DiskScanProvider>()
|
|
.Setup(p => p.Scan(series))
|
|
.Returns(new List<EpisodeFile>());
|
|
|
|
//Act
|
|
Mocker.Resolve<DiskScanJob>().Start(new ProgressNotification("Test"), new { SeriesId = series.SeriesId });
|
|
|
|
//Assert
|
|
Mocker.VerifyAllMocks();
|
|
}
|
|
|
|
|
|
|
|
[Test]
|
|
public void job_with_no_target_should_scan_all_series()
|
|
{
|
|
var series = Builder<Series>.CreateListOfSize(2)
|
|
.TheFirst(1).With(s => s.SeriesId = 12)
|
|
.TheNext(1).With(s => s.SeriesId = 15)
|
|
.Build().ToList();
|
|
|
|
Mocker.GetMock<ISeriesRepository>()
|
|
.Setup(p => p.All())
|
|
.Returns(series);
|
|
|
|
Mocker.GetMock<DiskScanProvider>()
|
|
.Setup(s => s.Scan(series[0]))
|
|
.Returns(new List<EpisodeFile>());
|
|
|
|
Mocker.GetMock<DiskScanProvider>()
|
|
.Setup(s => s.Scan(series[1]))
|
|
.Returns(new List<EpisodeFile>());
|
|
|
|
Mocker.Resolve<DiskScanJob>().Start(new ProgressNotification("Test"), null);
|
|
|
|
|
|
Mocker.VerifyAllMocks();
|
|
}
|
|
|
|
[Test]
|
|
public void failed_scan_should_not_terminated_job()
|
|
{
|
|
var series = Builder<Series>.CreateListOfSize(2)
|
|
.TheFirst(1).With(s => s.SeriesId = 12)
|
|
.TheNext(1).With(s => s.SeriesId = 15)
|
|
.Build().ToList();
|
|
|
|
Mocker.GetMock<ISeriesRepository>()
|
|
.Setup(p => p.All())
|
|
.Returns(series);
|
|
|
|
Mocker.GetMock<DiskScanProvider>()
|
|
.Setup(s => s.Scan(series[0]))
|
|
.Throws(new InvalidOperationException("Bad Job"));
|
|
|
|
Mocker.GetMock<DiskScanProvider>()
|
|
.Setup(s => s.Scan(series[1]))
|
|
.Throws(new InvalidOperationException("Bad Job"));
|
|
|
|
Mocker.Resolve<DiskScanJob>().Start(new ProgressNotification("Test"), null);
|
|
|
|
|
|
Mocker.VerifyAllMocks();
|
|
ExceptionVerification.ExpectedErrors(2);
|
|
}
|
|
|
|
[Test]
|
|
public void job_with_no_target_should_scan_series_with_episodes()
|
|
{
|
|
var series = Builder<Series>.CreateListOfSize(2)
|
|
.TheFirst(1).With(s => s.SeriesId = 12)
|
|
.TheNext(1).With(s => s.SeriesId = 15)
|
|
.Build().ToList();
|
|
|
|
Mocker.GetMock<ISeriesRepository>()
|
|
.Setup(p => p.All())
|
|
.Returns(series);
|
|
|
|
Mocker.GetMock<DiskScanProvider>()
|
|
.Setup(s => s.Scan(series[0]))
|
|
.Returns(new List<EpisodeFile>());
|
|
|
|
Mocker.GetMock<DiskScanProvider>()
|
|
.Setup(s => s.Scan(series[1]))
|
|
.Returns(new List<EpisodeFile>());
|
|
|
|
|
|
Mocker.Resolve<DiskScanJob>().Start(new ProgressNotification("Test"), null);
|
|
|
|
|
|
|
|
Mocker.VerifyAllMocks();
|
|
Mocker.GetMock<DiskScanProvider>().Verify(s => s.Scan(It.IsAny<Series>()), Times.Exactly(2));
|
|
}
|
|
}
|
|
|
|
} |