History Items are now added with series. Test makes sure seriesId is sent in.

This commit is contained in:
Mark McDowall committed 2011-06-21 19:15:39 -07:00
1 parent ecd0fb50a8
commit 8d4f65b7dc
2 files changed
+4 -3

No files matched your search

+3 -3
View File
@@ -24,6 +24,7 @@ public void Download_report_should_send_to_sab_and_add_to_history()
.With(e => e.Episodes = Builder<Episode>.CreateListOfSize(2)
.WhereTheFirst(1).Has(s => s.EpisodeId = 12)
.AndTheNext(1).Has(s => s.EpisodeId = 99)
.WhereAll().Has(s => s.SeriesId = 5)
.Build())
.With(c => c.Quality = new Quality(QualityTypes.DVD, false))
.Build();
@@ -42,13 +43,12 @@ public void Download_report_should_send_to_sab_and_add_to_history()
.Returns(sabTitle);
mocker.GetMock<HistoryProvider>()
.Setup(s => s.Add(It.Is<History>(h => h.EpisodeId == 12)));
.Setup(s => s.Add(It.Is<History>(h => h.EpisodeId == 12 && h.SeriesId == 5)));
mocker.GetMock<HistoryProvider>()
.Setup(s => s.Add(It.Is<History>(h => h.EpisodeId == 99)));
.Setup(s => s.Add(It.Is<History>(h => h.EpisodeId == 99 && h.SeriesId == 5)));
mocker.Resolve<DownloadProvider>().DownloadReport(parseResult);
mocker.VerifyAllMocks();
}
}
@@ -48,6 +48,7 @@ public virtual bool DownloadReport(EpisodeParseResult parseResult)
history.Quality = parseResult.Quality.QualityType;
history.NzbTitle = parseResult.NzbTitle;
history.EpisodeId = episode.EpisodeId;
history.SeriesId = episode.SeriesId;
_historyProvider.Add(history);
}