2011-12-04 00:22:49 +01:00
|
|
|
|
using System.Linq;
|
2011-12-02 05:24:44 +01:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Net;
|
2011-06-14 04:15:55 +02:00
|
|
|
|
using FizzWare.NBuilder;
|
2011-12-02 05:24:44 +01:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Moq;
|
2011-06-03 03:15:02 +02:00
|
|
|
|
using NUnit.Framework;
|
2012-02-11 01:48:20 +01:00
|
|
|
|
using NzbDrone.Common;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-03-02 19:25:39 +01:00
|
|
|
|
using NzbDrone.Core.ReferenceData;
|
2011-06-03 03:15:02 +02:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
2011-12-04 00:22:49 +01:00
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests
|
2011-06-03 03:15:02 +02:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
// ReSharper disable InconsistentNaming
|
2013-03-02 19:25:39 +01:00
|
|
|
|
public class SceneMappingProviderTest : ObjectDbTest
|
2011-06-03 03:15:02 +02:00
|
|
|
|
{
|
2012-01-13 04:22:28 +01:00
|
|
|
|
private const string SceneMappingUrl = "http://services.nzbdrone.com/SceneMapping/Active";
|
2011-12-02 05:24:44 +01:00
|
|
|
|
|
2012-02-04 06:28:50 +01:00
|
|
|
|
[SetUp]
|
|
|
|
|
public void Setup()
|
|
|
|
|
{
|
2013-02-24 20:39:31 +01:00
|
|
|
|
Mocker.GetMock<IConfigService>().SetupGet(s => s.ServiceRootUrl)
|
2012-02-04 06:28:50 +01:00
|
|
|
|
.Returns("http://services.nzbdrone.com");
|
2013-01-20 00:55:58 +01:00
|
|
|
|
|
2012-02-04 06:28:50 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-13 04:22:28 +01:00
|
|
|
|
private void WithValidJson()
|
2011-12-02 05:24:44 +01:00
|
|
|
|
{
|
|
|
|
|
Mocker.GetMock<HttpProvider>()
|
|
|
|
|
.Setup(s => s.DownloadString(SceneMappingUrl))
|
2012-01-13 04:22:28 +01:00
|
|
|
|
.Returns(File.ReadAllText(@".\Files\SceneMappings.json"));
|
2011-12-02 05:24:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-13 04:22:28 +01:00
|
|
|
|
private void WithErrorDownloadingJson()
|
2011-12-02 05:24:44 +01:00
|
|
|
|
{
|
|
|
|
|
Mocker.GetMock<HttpProvider>()
|
|
|
|
|
.Setup(s => s.DownloadString(SceneMappingUrl))
|
|
|
|
|
.Throws(new WebException());
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-14 04:15:55 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void GetSceneName_exists()
|
|
|
|
|
{
|
2013-01-24 09:03:10 +01:00
|
|
|
|
|
2011-06-14 04:15:55 +02:00
|
|
|
|
//Setup
|
2011-06-17 08:04:01 +02:00
|
|
|
|
var fakeMap = Builder<SceneMapping>.CreateNew()
|
|
|
|
|
.With(f => f.CleanTitle = "laworder")
|
2013-03-02 19:25:39 +01:00
|
|
|
|
.With(f => f.TvdbId = 12345)
|
2011-06-14 04:15:55 +02:00
|
|
|
|
.With(f => f.SceneName = "Law and Order")
|
2013-01-24 09:03:10 +01:00
|
|
|
|
.With(f => f.SeasonNumber = -1)
|
2011-06-14 04:15:55 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2013-01-24 09:03:10 +01:00
|
|
|
|
Db.Insert(fakeMap);
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2013-03-02 19:25:39 +01:00
|
|
|
|
var sceneName = Mocker.Resolve<SceneMappingService>().GetSceneName(fakeMap.TvdbId);
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.AreEqual(fakeMap.SceneName, sceneName);
|
|
|
|
|
}
|
2011-06-03 03:15:02 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
2011-06-14 04:15:55 +02:00
|
|
|
|
public void GetSeriesId_exists()
|
2011-06-03 03:15:02 +02:00
|
|
|
|
{
|
2013-01-24 09:03:10 +01:00
|
|
|
|
|
2011-06-14 04:15:55 +02:00
|
|
|
|
//Setup
|
2011-06-17 08:04:01 +02:00
|
|
|
|
var fakeMap = Builder<SceneMapping>.CreateNew()
|
2013-03-02 19:25:39 +01:00
|
|
|
|
.With(f => f.TvdbId = 12345)
|
2011-06-14 04:15:55 +02:00
|
|
|
|
.With(f => f.SceneName = "Law and Order")
|
|
|
|
|
.With(f => f.SceneName = "laworder")
|
|
|
|
|
.Build();
|
|
|
|
|
|
2013-01-20 00:55:58 +01:00
|
|
|
|
|
2013-01-24 09:03:10 +01:00
|
|
|
|
Db.Insert(fakeMap);
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2013-03-02 19:25:39 +01:00
|
|
|
|
var seriesId = Mocker.Resolve<SceneMappingService>().GetTvDbId(fakeMap.CleanTitle);
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
2013-03-02 19:25:39 +01:00
|
|
|
|
Assert.AreEqual(fakeMap.TvdbId, seriesId);
|
2011-06-03 03:15:02 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-14 04:15:55 +02:00
|
|
|
|
[Test]
|
|
|
|
|
public void GetSceneName_null()
|
|
|
|
|
{
|
2013-01-24 09:03:10 +01:00
|
|
|
|
|
2011-06-14 04:15:55 +02:00
|
|
|
|
//Setup
|
2011-06-17 08:04:01 +02:00
|
|
|
|
var fakeMap = Builder<SceneMapping>.CreateNew()
|
2013-03-02 19:25:39 +01:00
|
|
|
|
.With(f => f.TvdbId = 12345)
|
2011-06-14 04:15:55 +02:00
|
|
|
|
.With(f => f.SceneName = "Law and Order")
|
2011-06-17 08:04:01 +02:00
|
|
|
|
.With(f => f.SceneName = "laworder")
|
2011-06-14 04:15:55 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2013-01-20 00:55:58 +01:00
|
|
|
|
|
2013-01-24 09:03:10 +01:00
|
|
|
|
Db.Insert(fakeMap);
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2013-03-02 19:25:39 +01:00
|
|
|
|
var sceneName = Mocker.Resolve<SceneMappingService>().GetSceneName(54321);
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.AreEqual(null, sceneName);
|
|
|
|
|
}
|
2011-06-03 03:15:02 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
2011-06-14 04:15:55 +02:00
|
|
|
|
public void GetSeriesId_null()
|
2011-06-03 03:15:02 +02:00
|
|
|
|
{
|
2013-01-24 09:03:10 +01:00
|
|
|
|
|
2011-06-14 04:15:55 +02:00
|
|
|
|
//Setup
|
2011-06-17 08:04:01 +02:00
|
|
|
|
var fakeMap = Builder<SceneMapping>.CreateNew()
|
2013-03-02 19:25:39 +01:00
|
|
|
|
.With(f => f.TvdbId = 12345)
|
2011-06-14 04:15:55 +02:00
|
|
|
|
.With(f => f.SceneName = "Law and Order")
|
2011-06-17 08:04:01 +02:00
|
|
|
|
.With(f => f.CleanTitle = "laworder")
|
2011-06-14 04:15:55 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2013-01-24 09:03:10 +01:00
|
|
|
|
Db.Insert(fakeMap);
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2013-03-02 19:25:39 +01:00
|
|
|
|
var seriesId = Mocker.Resolve<SceneMappingService>().GetTvDbId("notlaworder");
|
2011-06-14 04:15:55 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.AreEqual(null, seriesId);
|
2011-06-03 03:15:02 +02:00
|
|
|
|
}
|
2011-08-23 08:07:04 +02:00
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void GetSceneName_multiple_clean_names()
|
|
|
|
|
{
|
|
|
|
|
//Test that ensures a series with clean names (office, officeus) can be looked up by seriesId
|
|
|
|
|
|
|
|
|
|
//Setup
|
|
|
|
|
var fakeMap = Builder<SceneMapping>.CreateNew()
|
|
|
|
|
.With(f => f.CleanTitle = "office")
|
2013-03-02 19:25:39 +01:00
|
|
|
|
.With(f => f.TvdbId = 12345)
|
2011-08-23 08:07:04 +02:00
|
|
|
|
.With(f => f.SceneName = "The Office")
|
2013-01-24 09:03:10 +01:00
|
|
|
|
.With(f => f.SeasonNumber = -1)
|
2011-08-23 08:07:04 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var fakeMap2 = Builder<SceneMapping>.CreateNew()
|
|
|
|
|
.With(f => f.CleanTitle = "officeus")
|
2013-03-02 19:25:39 +01:00
|
|
|
|
.With(f => f.TvdbId = 12345)
|
2011-08-23 08:07:04 +02:00
|
|
|
|
.With(f => f.SceneName = "The Office")
|
2013-01-24 09:03:10 +01:00
|
|
|
|
.With(f => f.SeasonNumber = -1)
|
2011-08-23 08:07:04 +02:00
|
|
|
|
.Build();
|
|
|
|
|
|
2013-01-20 00:55:58 +01:00
|
|
|
|
|
|
|
|
|
|
2013-01-24 09:03:10 +01:00
|
|
|
|
Db.Insert(fakeMap);
|
|
|
|
|
Db.Insert(fakeMap2);
|
2011-08-23 08:07:04 +02:00
|
|
|
|
|
|
|
|
|
//Act
|
2013-03-02 19:25:39 +01:00
|
|
|
|
var sceneName = Mocker.Resolve<SceneMappingService>().GetSceneName(fakeMap.TvdbId);
|
2011-08-23 08:07:04 +02:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
Assert.AreEqual(fakeMap.SceneName, sceneName);
|
|
|
|
|
}
|
2011-12-02 05:24:44 +01:00
|
|
|
|
|
2013-01-24 09:03:10 +01:00
|
|
|
|
[Test]
|
|
|
|
|
public void GetSceneName_should_be_null_when_seasonNumber_does_not_match()
|
|
|
|
|
{
|
2013-03-02 19:25:39 +01:00
|
|
|
|
|
2013-01-24 09:03:10 +01:00
|
|
|
|
|
|
|
|
|
var fakeMap = Builder<SceneMapping>.CreateNew()
|
2013-03-02 19:25:39 +01:00
|
|
|
|
.With(f => f.TvdbId = 12345)
|
2013-01-24 09:03:10 +01:00
|
|
|
|
.With(f => f.SceneName = "Law and Order")
|
|
|
|
|
.With(f => f.SceneName = "laworder")
|
|
|
|
|
.With(f => f.SeasonNumber = 10)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
Db.Insert(fakeMap);
|
|
|
|
|
|
2013-03-02 19:25:39 +01:00
|
|
|
|
Mocker.Resolve<SceneMappingService>().GetSceneName(54321, 5).Should().BeNull();
|
2013-01-24 09:03:10 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-02 05:24:44 +01:00
|
|
|
|
[Test]
|
|
|
|
|
public void UpdateMappings_should_add_all_mappings_to_database()
|
|
|
|
|
{
|
2012-01-13 04:22:28 +01:00
|
|
|
|
WithValidJson();
|
2011-12-02 05:24:44 +01:00
|
|
|
|
|
|
|
|
|
//Act
|
2013-03-02 19:25:39 +01:00
|
|
|
|
Mocker.Resolve<SceneMappingService>().UpdateMappings();
|
2011-12-02 05:24:44 +01:00
|
|
|
|
|
|
|
|
|
//Assert
|
2012-01-13 04:22:28 +01:00
|
|
|
|
Mocker.Verify<HttpProvider>(v => v.DownloadString(SceneMappingUrl), Times.Once());
|
2011-12-02 05:24:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void UpdateMappings_should_overwrite_existing_mappings()
|
|
|
|
|
{
|
|
|
|
|
//Setup
|
|
|
|
|
var fakeMap = Builder<SceneMapping>.CreateNew()
|
2013-03-02 19:25:39 +01:00
|
|
|
|
.With(f => f.TvdbId = 12345)
|
2011-12-02 05:24:44 +01:00
|
|
|
|
.With(f => f.SceneName = "Law and Order")
|
|
|
|
|
.With(f => f.SceneName = "laworder")
|
|
|
|
|
.Build();
|
|
|
|
|
|
2012-01-13 04:22:28 +01:00
|
|
|
|
WithValidJson();
|
2011-12-02 05:24:44 +01:00
|
|
|
|
Db.Insert(fakeMap);
|
|
|
|
|
|
|
|
|
|
//Act
|
2013-03-02 19:25:39 +01:00
|
|
|
|
Mocker.Resolve<SceneMappingService>().UpdateMappings();
|
2011-12-02 05:24:44 +01:00
|
|
|
|
|
|
|
|
|
//Assert
|
2012-01-13 04:22:28 +01:00
|
|
|
|
Mocker.Verify<HttpProvider>(v => v.DownloadString(SceneMappingUrl), Times.Once());
|
2011-12-02 05:24:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void UpdateMappings_should_not_delete_if_csv_download_fails()
|
|
|
|
|
{
|
|
|
|
|
//Setup
|
|
|
|
|
var fakeMap = Builder<SceneMapping>.CreateNew()
|
2013-03-02 19:25:39 +01:00
|
|
|
|
.With(f => f.TvdbId = 12345)
|
2011-12-02 05:24:44 +01:00
|
|
|
|
.With(f => f.SceneName = "Law and Order")
|
|
|
|
|
.With(f => f.SceneName = "laworder")
|
|
|
|
|
.Build();
|
|
|
|
|
|
2012-01-13 04:22:28 +01:00
|
|
|
|
WithErrorDownloadingJson();
|
2011-12-02 05:24:44 +01:00
|
|
|
|
Db.Insert(fakeMap);
|
|
|
|
|
|
|
|
|
|
//Act
|
2013-03-02 19:25:39 +01:00
|
|
|
|
Mocker.Resolve<SceneMappingService>().UpdateMappings();
|
2011-12-02 05:24:44 +01:00
|
|
|
|
|
|
|
|
|
//Assert
|
2012-01-13 04:22:28 +01:00
|
|
|
|
Mocker.Verify<HttpProvider>(v => v.DownloadString(SceneMappingUrl), Times.Once());
|
2011-12-02 05:24:44 +01:00
|
|
|
|
}
|
|
|
|
|
|
2011-06-03 03:15:02 +02:00
|
|
|
|
}
|
|
|
|
|
}
|