public void WhenGettingAllEpisodes_ItShouldReturnAListOfEpisodes() { var service = new KodiService(); var parameters = new GetEpisodesParams { Properties = new[] { EpisodeProperties.Title, EpisodeProperties.UniqueId } }; var details = service.GetEpisodes(parameters); Assert.IsNotNull(details); Assert.IsNotNull(details.Result); Assert.That(details.Result.Episodes.Count, Is.GreaterThan(0)); Assert.IsInstanceOf <List <Episode> >(details.Result.Episodes); }
public void WhenGettingAllEpisodes_WithAnTvShowIdOf1_ItShouldReturnAListOfEpisodesBelongingToTvShow() { var service = new KodiService(); var parameters = new GetEpisodesParams { TvShowId = 1, Properties = new[] { EpisodeProperties.Title, EpisodeProperties.TvShowId } }; var details = service.GetEpisodes(parameters); Assert.IsNotNull(details); Assert.IsNotNull(details.Result); Assert.IsInstanceOf <List <Episode> >(details.Result.Episodes); Assert.That(details.Result.Episodes.Find(s => s.TvShowId != 1), Is.Null); }
public void WhenGettingAllEpisodes_WithAnTvShowId1AndSeasonNumber1_ItShouldReturnAListOfEpisodesBelongingToSeason() { var service = new KodiService(); var parameters = new GetEpisodesParams { TvShowId = 1, SeasonNumber = 1, Properties = new[] { EpisodeProperties.Title, EpisodeProperties.Season } }; var details = service.GetEpisodes(parameters); Assert.IsNotNull(details); Assert.IsNotNull(details.Result); Assert.IsInstanceOf <List <Episode> >(details.Result.Episodes); Console.WriteLine(details.Result.Episodes.Find(s => s.TvShowId != 1).Title); Console.WriteLine(details.Result.Episodes.Find(s => s.TvShowId != 1).TvShowId); Assert.That(details.Result.Episodes.Find(s => s.Season != 1), Is.Null); }
public void WhenGettingAllEpisodes_WithALimitOf0And1_ItShouldReturnAListWithOneEpisode() { var service = new KodiService(); var parameters = new GetEpisodesParams { Properties = new[] { EpisodeProperties.Title, EpisodeProperties.UniqueId }, Limits = new Limits { Start = 0, End = 1 } }; var details = service.GetEpisodes(parameters); Assert.IsNotNull(details); Assert.IsNotNull(details.Result); Assert.That(details.Result.Episodes.Count, Is.EqualTo(1)); Assert.IsInstanceOf <List <Episode> >(details.Result.Episodes); }