mirror of https://github.com/Radarr/Radarr
71 lines
2.5 KiB
C#
71 lines
2.5 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text;
|
|
using FizzWare.NBuilder;
|
|
using Gallio.Framework;
|
|
using MbUnit.Framework;
|
|
using MbUnit.Framework.ContractVerifiers;
|
|
using Moq;
|
|
using Ninject;
|
|
using Ninject.Moq;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Repository;
|
|
using SubSonic.Repository;
|
|
using TvdbLib.Data;
|
|
|
|
// ReSharper disable InconsistentNaming
|
|
namespace NzbDrone.Core.Test
|
|
{
|
|
[TestFixture]
|
|
public class SeriesTest
|
|
{
|
|
[Test]
|
|
[Ignore("Can't get it to work")]
|
|
[Description("This test will confirm that a folder will be skipped if it has been resolved to a series already assigned to another folder")]
|
|
public void skip_same_series_diffrent_folder()
|
|
{
|
|
var tvDbId = 1234;
|
|
|
|
//Arrange
|
|
var moqData = new Mock<IRepository>();
|
|
var moqTvdb = new Mock<ITvDbProvider>();
|
|
|
|
//setup db to return a fake series
|
|
Series fakeSeries = Builder<Series>.CreateNew()
|
|
.With(f => f.TvdbId = tvDbId.ToString())
|
|
.Build();
|
|
|
|
moqData.Setup(f => f.Exists<Series>(c => c.TvdbId == tvDbId.ToString())).
|
|
Returns(true);
|
|
|
|
//setup tvdb to return the same show,
|
|
IList<TvdbSearchResult> fakeSearchResult = Builder<TvdbSearchResult>.CreateListOfSize(4).WhereTheFirst(1).Has(f => f.Id = tvDbId).Build();
|
|
TvdbSeries fakeTvDbSeries = Builder<TvdbSeries>.CreateNew()
|
|
.With(f => f.Id = tvDbId)
|
|
.Build();
|
|
|
|
moqTvdb.Setup(f => f.GetSeries(It.IsAny<int>(), It.IsAny<TvdbLanguage>())).Returns(fakeTvDbSeries);
|
|
moqTvdb.Setup(f => f.SearchSeries(It.IsAny<string>())).
|
|
Returns(fakeSearchResult);
|
|
|
|
var kernel = new MockingKernel();
|
|
kernel.Bind<IRepository>().ToConstant(moqData.Object);
|
|
kernel.Bind<ITvDbProvider>().ToConstant(moqTvdb.Object);
|
|
kernel.Bind<IConfigProvider>().ToConstant(MockLib.StandardConfig);
|
|
kernel.Bind<IDiskProvider>().ToConstant(MockLib.StandardDisk);
|
|
kernel.Bind<ISeriesProvider>().To<SeriesProvider>();
|
|
|
|
|
|
//Act
|
|
var seriesController = kernel.Get<ISeriesProvider>();
|
|
seriesController.SyncSeriesWithDisk();
|
|
|
|
//Assert
|
|
//Verify that the show was added to the database only once.
|
|
moqData.Verify(c => c.Add(It.IsAny<Series>()), Times.Once());
|
|
}
|
|
}
|
|
}
|