mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
Merge branch 'markus101'
This commit is contained in:
commit
3bafd2237f
2 changed files with 5 additions and 3 deletions
|
@ -23,9 +23,11 @@ public void Download_report_should_send_to_sab_and_add_to_history()
|
|||
var parseResult = Builder<EpisodeParseResult>.CreateNew()
|
||||
.With(c => c.Quality = new Quality(QualityTypes.DVD, false))
|
||||
.Build();
|
||||
|
||||
var 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();
|
||||
|
||||
|
||||
|
@ -43,16 +45,15 @@ 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.GetMock<EpisodeProvider>()
|
||||
.Setup(c => c.GetEpisodesByParseResult(It.IsAny<EpisodeParseResult>(), false)).Returns(episodes);
|
||||
|
||||
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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue