2011-10-23 02:31:28 +00:00
|
|
|
|
using System;
|
2011-01-29 06:10:22 +00:00
|
|
|
|
using System.Linq;
|
2011-05-28 19:23:35 +00:00
|
|
|
|
using FizzWare.NBuilder;
|
2011-06-02 21:06:46 +00:00
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using NUnit.Framework;
|
2011-01-29 06:10:22 +00:00
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-01-29 20:03:47 +00:00
|
|
|
|
using NzbDrone.Core.Repository.Quality;
|
2011-05-19 03:55:35 +00:00
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
2011-01-29 06:10:22 +00:00
|
|
|
|
|
2011-10-20 23:42:17 +00:00
|
|
|
|
namespace NzbDrone.Core.Test.ProviderTests
|
2011-01-29 06:10:22 +00:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
2011-05-19 03:55:35 +00:00
|
|
|
|
// ReSharper disable InconsistentNaming
|
2011-11-13 07:27:16 +00:00
|
|
|
|
public class HistoryProviderTest : CoreTest
|
2011-01-29 06:10:22 +00:00
|
|
|
|
{
|
|
|
|
|
[Test]
|
|
|
|
|
public void AllItems()
|
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
WithRealDb();
|
2011-01-29 06:10:22 +00:00
|
|
|
|
//Setup
|
2011-06-17 06:59:13 +00:00
|
|
|
|
var historyItem = Builder<History>.CreateListOfSize(10).Build();
|
2011-01-29 06:10:22 +00:00
|
|
|
|
|
2012-02-07 05:08:07 +00:00
|
|
|
|
Db.InsertMany(historyItem);
|
2011-01-29 06:10:22 +00:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-15 04:15:53 +00:00
|
|
|
|
var result = Mocker.Resolve<HistoryProvider>().AllItems();
|
2011-01-29 06:10:22 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
2011-06-17 06:59:13 +00:00
|
|
|
|
result.Should().HaveSameCount(historyItem);
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-20 00:02:10 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void AllItemsWithRelationships()
|
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
WithRealDb();
|
2011-06-20 00:02:10 +00:00
|
|
|
|
var seriesOne = Builder<Series>.CreateNew().With(s => s.SeriesId = 12345).Build();
|
|
|
|
|
var seriesTwo = Builder<Series>.CreateNew().With(s => s.SeriesId = 54321).Build();
|
|
|
|
|
|
|
|
|
|
var episodes = Builder<Episode>.CreateListOfSize(10).Build();
|
|
|
|
|
|
2011-10-23 05:39:14 +00:00
|
|
|
|
var historyItems = Builder<History>.CreateListOfSize(10).TheFirst(5).With(h => h.SeriesId = seriesOne.SeriesId).TheLast(5).With(h => h.SeriesId = seriesTwo.SeriesId).Build();
|
2011-06-20 00:02:10 +00:00
|
|
|
|
|
|
|
|
|
|
2012-02-07 05:08:07 +00:00
|
|
|
|
Db.InsertMany(historyItems);
|
|
|
|
|
Db.InsertMany(episodes);
|
|
|
|
|
Db.Insert(seriesOne);
|
|
|
|
|
Db.Insert(seriesTwo);
|
2011-06-20 00:02:10 +00:00
|
|
|
|
|
|
|
|
|
//Act
|
2011-12-15 04:15:53 +00:00
|
|
|
|
var result = Mocker.Resolve<HistoryProvider>().AllItemsWithRelationships();
|
2011-06-20 00:02:10 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
|
|
|
|
result.Should().HaveSameCount(historyItems);
|
|
|
|
|
|
|
|
|
|
foreach (var history in result)
|
|
|
|
|
{
|
|
|
|
|
Assert.NotNull(history.Episode);
|
|
|
|
|
Assert.That(!String.IsNullOrEmpty(history.SeriesTitle));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-17 06:59:13 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void PurgeItem()
|
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
WithRealDb();
|
2011-06-17 06:59:13 +00:00
|
|
|
|
|
2012-02-07 05:08:07 +00:00
|
|
|
|
var historyItem = Builder<History>.CreateListOfSize(10).Build();
|
|
|
|
|
Db.InsertMany(historyItem);
|
2011-06-17 06:59:13 +00:00
|
|
|
|
|
|
|
|
|
//Act
|
2012-02-07 05:08:07 +00:00
|
|
|
|
Db.Fetch<History>().Should().HaveCount(10);
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.Resolve<HistoryProvider>().Purge();
|
2011-06-17 06:59:13 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
2012-02-07 05:08:07 +00:00
|
|
|
|
Db.Fetch<History>().Should().HaveCount(0);
|
2011-06-17 06:59:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void Trim_Items()
|
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
WithRealDb();
|
|
|
|
|
|
2011-11-23 01:09:06 +00:00
|
|
|
|
var historyItem = Builder<History>.CreateListOfSize(30)
|
2011-10-18 21:46:06 +00:00
|
|
|
|
.TheFirst(10).With(c => c.Date = DateTime.Now)
|
2011-11-23 01:09:06 +00:00
|
|
|
|
.TheNext(20).With(c => c.Date = DateTime.Now.AddDays(-31))
|
2011-06-17 06:59:13 +00:00
|
|
|
|
.Build();
|
|
|
|
|
|
2012-02-07 05:08:07 +00:00
|
|
|
|
Db.InsertMany(historyItem);
|
2011-06-17 06:59:13 +00:00
|
|
|
|
|
|
|
|
|
//Act
|
2012-02-07 05:08:07 +00:00
|
|
|
|
Db.Fetch<History>().Should().HaveCount(30);
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.Resolve<HistoryProvider>().Trim();
|
2011-06-17 06:59:13 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
2012-02-07 05:08:07 +00:00
|
|
|
|
var result = Db.Fetch<History>();
|
2011-11-23 01:09:06 +00:00
|
|
|
|
result.Should().HaveCount(10);
|
|
|
|
|
result.Should().OnlyContain(s => s.Date > DateTime.Now.AddDays(-30));
|
2011-01-29 06:10:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-22 20:14:02 +00:00
|
|
|
|
|
2011-05-28 19:23:35 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void GetBestQualityInHistory_no_result()
|
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
WithRealDb();
|
|
|
|
|
Mocker.Resolve<HistoryProvider>().GetBestQualityInHistory(12, 12, 12).Should().Be(null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
|
public void GetBestQualityInHistory_single_result()
|
|
|
|
|
{
|
|
|
|
|
WithRealDb();
|
2011-05-28 19:23:35 +00:00
|
|
|
|
|
2012-02-07 05:08:07 +00:00
|
|
|
|
var episodes = Builder<Episode>.CreateListOfSize(10).Build();
|
|
|
|
|
var historyEpisode = episodes[6];
|
|
|
|
|
|
|
|
|
|
var history = Builder<History>.CreateNew()
|
|
|
|
|
.With(h => h.Quality = QualityTypes.Bluray720p)
|
|
|
|
|
.With(h => h.IsProper = true)
|
|
|
|
|
.With(h => h.EpisodeId = historyEpisode.EpisodeId)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
Db.Insert(history);
|
|
|
|
|
Db.InsertMany(episodes);
|
2011-05-28 19:23:35 +00:00
|
|
|
|
|
|
|
|
|
//Act
|
2012-02-07 05:08:07 +00:00
|
|
|
|
var result = Mocker.Resolve<HistoryProvider>()
|
|
|
|
|
.GetBestQualityInHistory(historyEpisode.SeriesId, historyEpisode.SeasonNumber, historyEpisode.EpisodeNumber);
|
2011-05-28 19:23:35 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
2012-02-07 05:08:07 +00:00
|
|
|
|
result.Should().NotBeNull();
|
|
|
|
|
result.QualityType.Should().Be(QualityTypes.Bluray720p);
|
|
|
|
|
result.Proper.Should().BeTrue();
|
2011-05-28 19:23:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Test]
|
2012-02-07 05:08:07 +00:00
|
|
|
|
public void GetBestQualityInHistory_should_return_highest_result()
|
2011-05-28 19:23:35 +00:00
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
WithRealDb();
|
2011-05-28 19:23:35 +00:00
|
|
|
|
|
2012-02-07 05:08:07 +00:00
|
|
|
|
var episodes = Builder<Episode>.CreateListOfSize(10).Build();
|
|
|
|
|
var historyEpisode = episodes[6];
|
2011-06-17 06:59:13 +00:00
|
|
|
|
|
2012-02-07 05:08:07 +00:00
|
|
|
|
var history0 = Builder<History>.CreateNew()
|
|
|
|
|
.With(h => h.Quality = QualityTypes.DVD)
|
|
|
|
|
.With(h => h.IsProper = true)
|
|
|
|
|
.With(h => h.EpisodeId = historyEpisode.EpisodeId)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var history1 = Builder<History>.CreateNew()
|
|
|
|
|
.With(h => h.Quality = QualityTypes.Bluray720p)
|
|
|
|
|
.With(h => h.IsProper = false)
|
|
|
|
|
.With(h => h.EpisodeId = historyEpisode.EpisodeId)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var history2 = Builder<History>.CreateNew()
|
|
|
|
|
.With(h => h.Quality = QualityTypes.Bluray720p)
|
|
|
|
|
.With(h => h.IsProper = true)
|
|
|
|
|
.With(h => h.EpisodeId = historyEpisode.EpisodeId)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var history3 = Builder<History>.CreateNew()
|
|
|
|
|
.With(h => h.Quality = QualityTypes.Bluray720p)
|
|
|
|
|
.With(h => h.IsProper = false)
|
|
|
|
|
.With(h => h.EpisodeId = historyEpisode.EpisodeId)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
var history4 = Builder<History>.CreateNew()
|
|
|
|
|
.With(h => h.Quality = QualityTypes.SDTV)
|
|
|
|
|
.With(h => h.IsProper = true)
|
|
|
|
|
.With(h => h.EpisodeId = historyEpisode.EpisodeId)
|
|
|
|
|
.Build();
|
|
|
|
|
|
|
|
|
|
Db.Insert(history0);
|
|
|
|
|
Db.Insert(history1);
|
|
|
|
|
Db.Insert(history2);
|
|
|
|
|
Db.Insert(history2);
|
|
|
|
|
Db.Insert(history4);
|
|
|
|
|
Db.InsertMany(episodes);
|
2011-05-28 19:23:35 +00:00
|
|
|
|
|
|
|
|
|
//Act
|
2012-02-07 05:08:07 +00:00
|
|
|
|
var result = Mocker.Resolve<HistoryProvider>()
|
|
|
|
|
.GetBestQualityInHistory(historyEpisode.SeriesId, historyEpisode.SeasonNumber, historyEpisode.EpisodeNumber);
|
2011-05-28 19:23:35 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
2011-06-23 06:56:17 +00:00
|
|
|
|
result.Should().NotBeNull();
|
2011-06-05 19:15:46 +00:00
|
|
|
|
result.QualityType.Should().Be(QualityTypes.Bluray720p);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
result.Proper.Should().BeTrue();
|
2011-05-28 19:23:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-22 20:14:02 +00:00
|
|
|
|
[Test]
|
|
|
|
|
public void add_item()
|
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
WithRealDb();
|
2011-04-22 20:14:02 +00:00
|
|
|
|
|
2011-06-17 06:59:13 +00:00
|
|
|
|
var episode = Builder<Episode>.CreateNew().Build();
|
2011-04-22 20:14:02 +00:00
|
|
|
|
|
2011-06-17 06:59:13 +00:00
|
|
|
|
const QualityTypes quality = QualityTypes.HDTV;
|
|
|
|
|
const bool proper = true;
|
2011-04-22 20:14:02 +00:00
|
|
|
|
|
|
|
|
|
var history = new History
|
|
|
|
|
{
|
|
|
|
|
Date = DateTime.Now,
|
|
|
|
|
EpisodeId = episode.EpisodeId,
|
2011-06-17 06:59:13 +00:00
|
|
|
|
SeriesId = episode.SeriesId,
|
2011-05-19 03:55:35 +00:00
|
|
|
|
NzbTitle = "my title",
|
2011-06-17 06:59:13 +00:00
|
|
|
|
Indexer = "Fake Indexer",
|
|
|
|
|
Quality = quality,
|
|
|
|
|
IsProper = proper
|
2011-04-22 20:14:02 +00:00
|
|
|
|
};
|
|
|
|
|
|
2011-05-19 03:55:35 +00:00
|
|
|
|
//Act
|
2011-12-15 04:15:53 +00:00
|
|
|
|
Mocker.Resolve<HistoryProvider>().Add(history);
|
2011-05-19 03:55:35 +00:00
|
|
|
|
|
|
|
|
|
//Assert
|
2012-02-07 05:08:07 +00:00
|
|
|
|
var storedHistory = Db.Fetch<History>();
|
2011-05-19 03:55:35 +00:00
|
|
|
|
|
2011-06-02 21:06:46 +00:00
|
|
|
|
storedHistory.Should().HaveCount(1);
|
2011-06-23 06:56:17 +00:00
|
|
|
|
history.Date.Should().BeWithin(TimeSpan.FromMinutes(1)).Before(storedHistory.First().Date);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2011-06-23 06:56:17 +00:00
|
|
|
|
history.EpisodeId.Should().Be(storedHistory.First().EpisodeId);
|
|
|
|
|
history.SeriesId.Should().Be(storedHistory.First().SeriesId);
|
|
|
|
|
history.NzbTitle.Should().Be(storedHistory.First().NzbTitle);
|
|
|
|
|
history.Indexer.Should().Be(storedHistory.First().Indexer);
|
|
|
|
|
history.Quality.Should().Be(storedHistory.First().Quality);
|
|
|
|
|
history.IsProper.Should().Be(storedHistory.First().IsProper);
|
2011-04-22 20:14:02 +00:00
|
|
|
|
}
|
2011-01-29 06:10:22 +00:00
|
|
|
|
}
|
2011-02-17 17:45:02 +00:00
|
|
|
|
}
|