public async Task Test_UserObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new UserObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var user = await jsonReader.ReadObjectAsync(stream); user.Should().NotBeNull(); user.Username.Should().Be("sean"); user.IsPrivate.Should().BeFalse(); user.Name.Should().Be("Sean Rudford"); user.IsVIP.Should().BeTrue(); user.IsVIP_EP.Should().BeTrue(); user.Ids.Should().NotBeNull(); user.Ids.Slug.Should().Be("sean"); user.JoinedAt.Should().BeNull(); user.Location.Should().Be("SF"); user.About.Should().Be("I have all your cassette tapes."); user.Gender.Should().Be("male"); user.Age.Should().Be(35); user.Images.Should().NotBeNull(); user.Images.Avatar.Should().NotBeNull(); user.Images.Avatar.Full.Should().Be("https://walter-dev.trakt.tv/images/users/000/000/001/avatars/large/0ba3f72910.jpg"); } }
public async Task Test_WatchedShowObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new WatchedShowObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktWatchedShow = await jsonReader.ReadObjectAsync(stream); traktWatchedShow.Should().NotBeNull(); traktWatchedShow.Plays.Should().BeNull(); traktWatchedShow.LastWatchedAt.Should().BeNull(); traktWatchedShow.Show.Should().NotBeNull(); traktWatchedShow.Show.Title.Should().Be("Game of Thrones"); traktWatchedShow.Show.Year.Should().Be(2011); traktWatchedShow.Show.Ids.Should().NotBeNull(); traktWatchedShow.Show.Ids.Trakt.Should().Be(1390U); traktWatchedShow.Show.Ids.Slug.Should().Be("game-of-thrones"); traktWatchedShow.Show.Ids.Tvdb.Should().Be(121361U); traktWatchedShow.Show.Ids.Imdb.Should().Be("tt0944947"); traktWatchedShow.Show.Ids.Tmdb.Should().Be(1399U); traktWatchedShow.Show.Ids.TvRage.Should().Be(24493U); traktWatchedShow.WatchedSeasons.Should().BeNull(); } }
public async Task Test_UserStatisticsObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new UserStatisticsObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var userStatistics = await jsonReader.ReadObjectAsync(stream); userStatistics.Should().NotBeNull(); userStatistics.Movies.Should().NotBeNull(); userStatistics.Movies.Plays.Should().Be(552); userStatistics.Movies.Watched.Should().Be(534); userStatistics.Movies.Minutes.Should().Be(17330); userStatistics.Movies.Collected.Should().Be(117); userStatistics.Movies.Ratings.Should().Be(64); userStatistics.Movies.Comments.Should().Be(14); userStatistics.Shows.Should().BeNull(); userStatistics.Seasons.Should().BeNull(); userStatistics.Episodes.Should().BeNull(); userStatistics.Network.Should().BeNull(); userStatistics.Ratings.Should().BeNull(); } }
public async Task Test_SeasonWatchedProgressArrayJsonReader_ReadArray_From_Stream_Incomplete_7() { var traktJsonReader = new ArrayJsonReader <ITraktSeasonWatchedProgress>(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktSeasonWatchedProgresses = await traktJsonReader.ReadArrayAsync(stream); traktSeasonWatchedProgresses.Should().NotBeNull().And.NotBeEmpty().And.HaveCount(3); var watchedProgresses = traktSeasonWatchedProgresses.ToArray(); watchedProgresses[0].Number.Should().Be(1); watchedProgresses[0].Aired.Should().Be(3); watchedProgresses[0].Completed.Should().Be(2); watchedProgresses[0].Episodes.Should().NotBeNull().And.HaveCount(2); var episodesWatchedProgress = watchedProgresses[0].Episodes.ToArray(); episodesWatchedProgress[0].Should().NotBeNull(); episodesWatchedProgress[0].Number.Should().Be(1); episodesWatchedProgress[0].Completed.Should().BeTrue(); episodesWatchedProgress[0].LastWatchedAt.Should().Be(DateTime.Parse("2011-04-18T01:00:00.000Z").ToUniversalTime()); episodesWatchedProgress[1].Should().NotBeNull(); episodesWatchedProgress[1].Number.Should().Be(2); episodesWatchedProgress[1].Completed.Should().BeTrue(); episodesWatchedProgress[1].LastWatchedAt.Should().Be(DateTime.Parse("2011-04-19T02:00:00.000Z").ToUniversalTime()); // ----------------------------------------------- watchedProgresses[1].Number.Should().Be(2); watchedProgresses[1].Aired.Should().Be(3); watchedProgresses[1].Completed.Should().Be(2); watchedProgresses[1].Episodes.Should().NotBeNull().And.HaveCount(2); episodesWatchedProgress = watchedProgresses[1].Episodes.ToArray(); episodesWatchedProgress[0].Should().NotBeNull(); episodesWatchedProgress[0].Number.Should().Be(1); episodesWatchedProgress[0].Completed.Should().BeTrue(); episodesWatchedProgress[0].LastWatchedAt.Should().Be(DateTime.Parse("2011-04-18T01:00:00.000Z").ToUniversalTime()); episodesWatchedProgress[1].Should().NotBeNull(); episodesWatchedProgress[1].Number.Should().Be(2); episodesWatchedProgress[1].Completed.Should().BeTrue(); episodesWatchedProgress[1].LastWatchedAt.Should().Be(DateTime.Parse("2011-04-19T02:00:00.000Z").ToUniversalTime()); // ----------------------------------------------- watchedProgresses[2].Number.Should().BeNull(); watchedProgresses[2].Aired.Should().BeNull(); watchedProgresses[2].Completed.Should().Be(2); watchedProgresses[2].Episodes.Should().BeNull(); } }
public async Task Test_MostPWCMovieObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new MostPWCMovieObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktMostPWCMovie = await traktJsonReader.ReadObjectAsync(stream); traktMostPWCMovie.Should().NotBeNull(); traktMostPWCMovie.WatcherCount.Should().BeNull(); traktMostPWCMovie.PlayCount.Should().BeNull(); traktMostPWCMovie.CollectedCount.Should().Be(1348); traktMostPWCMovie.Movie.Should().BeNull(); } }
public async Task Test_WatchedMovieObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new WatchedMovieObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktWatchedMovie = await jsonReader.ReadObjectAsync(stream); traktWatchedMovie.Should().NotBeNull(); traktWatchedMovie.Plays.Should().BeNull(); traktWatchedMovie.LastWatchedAt.Should().BeNull(); traktWatchedMovie.LastUpdatedAt.Should().Be(DateTime.Parse("2014-09-01T09:10:11.000Z").ToUniversalTime()); traktWatchedMovie.Movie.Should().BeNull(); } }
public async Task Test_AccountSettingsObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new AccountSettingsObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var userAccountSettings = await jsonReader.ReadObjectAsync(stream); userAccountSettings.Should().NotBeNull(); userAccountSettings.TimeZoneId.Should().BeNull(); userAccountSettings.Time24Hr.Should().BeNull(); userAccountSettings.CoverImage.Should().Be("https://walter.trakt.us/images/movies/000/001/545/fanarts/original/0abb604492.jpg?1406095042"); userAccountSettings.Token.Should().BeNull(); } }
public async Task Test_SyncShowsLastActivitiesObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new SyncShowsLastActivitiesObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var showsLastActivities = await jsonReader.ReadObjectAsync(stream); showsLastActivities.Should().NotBeNull(); showsLastActivities.RatedAt.Should().BeNull(); showsLastActivities.WatchlistedAt.Should().BeNull(); showsLastActivities.CommentedAt.Should().Be(DateTime.Parse("2014-11-20T06:51:30.325Z").ToUniversalTime()); showsLastActivities.HiddenAt.Should().BeNull(); } }
public async Task Test_SeasonWatchedProgressObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new SeasonWatchedProgressObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktSeasonWatchedProgress = await traktJsonReader.ReadObjectAsync(stream); traktSeasonWatchedProgress.Should().NotBeNull(); traktSeasonWatchedProgress.Number.Should().BeNull(); traktSeasonWatchedProgress.Aired.Should().BeNull(); traktSeasonWatchedProgress.Completed.Should().Be(2); traktSeasonWatchedProgress.Episodes.Should().BeNull(); } }
public async Task Test_UserShowsStatisticsObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new UserShowsStatisticsObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var userShowsStatistics = await jsonReader.ReadObjectAsync(stream); userShowsStatistics.Should().NotBeNull(); userShowsStatistics.Watched.Should().BeNull(); userShowsStatistics.Collected.Should().BeNull(); userShowsStatistics.Ratings.Should().Be(64); userShowsStatistics.Comments.Should().BeNull(); } }
public async Task Test_MovieTranslationObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new MovieTranslationObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktMovieTranslation = await traktJsonReader.ReadObjectAsync(stream); traktMovieTranslation.Should().NotBeNull(); traktMovieTranslation.Title.Should().BeNull(); traktMovieTranslation.Overview.Should().BeNull(); traktMovieTranslation.Tagline.Should().Be("The Force Lives On..."); traktMovieTranslation.LanguageCode.Should().BeNull(); } }
public async Task Test_MovieIdsObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new MovieIdsObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktMovieIds = await traktJsonReader.ReadObjectAsync(stream); traktMovieIds.Should().NotBeNull(); traktMovieIds.Trakt.Should().Be(0); traktMovieIds.Slug.Should().BeNull(); traktMovieIds.Imdb.Should().Be("tt2488496"); traktMovieIds.Tmdb.Should().BeNull(); } }
public async Task Test_SeasonIdsObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new SeasonIdsObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktSeasonIds = await traktJsonReader.ReadObjectAsync(stream); traktSeasonIds.Should().NotBeNull(); traktSeasonIds.Trakt.Should().Be(0); traktSeasonIds.Tvdb.Should().BeNull(); traktSeasonIds.Tmdb.Should().Be(60523U); traktSeasonIds.TvRage.Should().BeNull(); } }
public async Task Test_PersonIdsObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new PersonIdsObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktPersonIds = await traktJsonReader.ReadObjectAsync(stream); traktPersonIds.Should().NotBeNull(); traktPersonIds.Trakt.Should().Be(0); traktPersonIds.Slug.Should().Be("bryan-cranston"); traktPersonIds.Imdb.Should().BeNull(); traktPersonIds.Tmdb.Should().BeNull(); traktPersonIds.TvRage.Should().BeNull(); } }
public async Task Test_UserCustomListItemsPostResponseGroupObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new UserCustomListItemsPostResponseGroupObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var customListItemsPostResponseGroup = await jsonReader.ReadObjectAsync(stream); customListItemsPostResponseGroup.Should().NotBeNull(); customListItemsPostResponseGroup.Movies.Should().BeNull(); customListItemsPostResponseGroup.Shows.Should().Be(2); customListItemsPostResponseGroup.Seasons.Should().BeNull(); customListItemsPostResponseGroup.Episodes.Should().BeNull(); customListItemsPostResponseGroup.People.Should().BeNull(); } }
public async Task Test_EpisodeCheckinPostResponseObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new EpisodeCheckinPostResponseObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var checkinEpisodeResponse = await jsonReader.ReadObjectAsync(stream); checkinEpisodeResponse.Should().NotBeNull(); checkinEpisodeResponse.Id.Should().Be(0UL); checkinEpisodeResponse.WatchedAt.Should().Be(DateTime.Parse("2014-08-06T06:54:36.859Z").ToUniversalTime()); checkinEpisodeResponse.Sharing.Should().BeNull(); checkinEpisodeResponse.Episode.Should().BeNull(); checkinEpisodeResponse.Show.Should().BeNull(); } }
public async Task Test_MetadataObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new MetadataObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktMetadata = await traktJsonReader.ReadObjectAsync(stream); traktMetadata.Should().NotBeNull(); traktMetadata.MediaType.Should().BeNull(); traktMetadata.MediaResolution.Should().Be(TraktMediaResolution.HD_720p); traktMetadata.Audio.Should().BeNull(); traktMetadata.AudioChannels.Should().BeNull(); traktMetadata.ThreeDimensional.Should().BeNull(); } }
public async Task Test_MovieScrobblePostResponseObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new MovieScrobblePostResponseObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var movieScrobbleResponse = await jsonReader.ReadObjectAsync(stream); movieScrobbleResponse.Should().NotBeNull(); movieScrobbleResponse.Id.Should().Be(0UL); movieScrobbleResponse.Action.Should().Be(TraktScrobbleActionType.Stop); movieScrobbleResponse.Progress.Should().BeNull(); movieScrobbleResponse.Sharing.Should().BeNull(); movieScrobbleResponse.Movie.Should().BeNull(); } }
public async Task Test_SharingObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new SharingObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktSharing = await traktJsonReader.ReadObjectAsync(stream); traktSharing.Should().NotBeNull(); traktSharing.Twitter.Should().BeNull(); traktSharing.Google.Should().BeTrue(); traktSharing.Tumblr.Should().BeNull(); traktSharing.Medium.Should().BeNull(); traktSharing.Slack.Should().BeNull(); } }
public async Task Test_AccountSettingsObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new AccountSettingsObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var userAccountSettings = await jsonReader.ReadObjectAsync(stream); userAccountSettings.Should().NotBeNull(); userAccountSettings.TimeZoneId.Should().BeNull(); userAccountSettings.Time24Hr.Should().BeTrue(); userAccountSettings.CoverImage.Should().BeNull(); userAccountSettings.Token.Should().BeNull(); userAccountSettings.DateFormat.Should().BeNull(); } }
public async Task Test_DeviceObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var objectJsonReader = new DeviceObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { ITraktDevice traktDevice = await objectJsonReader.ReadObjectAsync(stream); traktDevice.Should().NotBeNull(); traktDevice.DeviceCode.Should().BeNull(); traktDevice.UserCode.Should().Be("mockUserCode"); traktDevice.VerificationUrl.Should().BeNull(); traktDevice.ExpiresInSeconds.Should().Be(0); traktDevice.IntervalInSeconds.Should().Be(0); } }
public async Task Test_MovieReleaseObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new MovieReleaseObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktMovieRelease = await traktJsonReader.ReadObjectAsync(stream); traktMovieRelease.Should().NotBeNull(); traktMovieRelease.CountryCode.Should().BeNull(); traktMovieRelease.Certification.Should().Be("PG-13"); traktMovieRelease.ReleaseDate.Should().BeNull(); traktMovieRelease.ReleaseType.Should().BeNull(); traktMovieRelease.Note.Should().BeNull(); } }
public async Task Test_EpisodeScrobblePostResponseObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new EpisodeScrobblePostResponseObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var episodeScrobbleResponse = await jsonReader.ReadObjectAsync(stream); episodeScrobbleResponse.Should().NotBeNull(); episodeScrobbleResponse.Id.Should().Be(3373536623UL); episodeScrobbleResponse.Action.Should().BeNull(); episodeScrobbleResponse.Progress.Should().BeNull(); episodeScrobbleResponse.Sharing.Should().BeNull(); episodeScrobbleResponse.Episode.Should().BeNull(); episodeScrobbleResponse.Show.Should().BeNull(); } }
public async Task Test_StatisticsObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var traktJsonReader = new StatisticsObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktStatistics = await traktJsonReader.ReadObjectAsync(stream); traktStatistics.Should().NotBeNull(); traktStatistics.Watchers.Should().Be(129920); traktStatistics.Plays.Should().Be(3563853); traktStatistics.Collectors.Should().Be(49711); traktStatistics.CollectedEpisodes.Should().Be(1310350); traktStatistics.Comments.Should().Be(96); traktStatistics.Lists.Should().Be(49468); traktStatistics.Votes.Should().BeNull(); } }
public async Task Test_WatchedShowObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new WatchedShowObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktWatchedShow = await jsonReader.ReadObjectAsync(stream); traktWatchedShow.Should().NotBeNull(); traktWatchedShow.Plays.Should().Be(1); traktWatchedShow.LastWatchedAt.Should().BeNull(); traktWatchedShow.LastUpdatedAt.Should().BeNull(); traktWatchedShow.ResetAt.Should().BeNull(); traktWatchedShow.Show.Should().BeNull(); traktWatchedShow.WatchedSeasons.Should().BeNull(); } }
public async Task Test_MovieCheckinPostResponseObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new MovieCheckinPostResponseObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var checkinMovieResponse = await jsonReader.ReadObjectAsync(stream); checkinMovieResponse.Should().NotBeNull(); checkinMovieResponse.Id.Should().Be(0UL); checkinMovieResponse.WatchedAt.Should().BeNull(); checkinMovieResponse.Sharing.Should().NotBeNull(); checkinMovieResponse.Sharing.Twitter.Should().BeTrue(); checkinMovieResponse.Sharing.Google.Should().BeTrue(); checkinMovieResponse.Sharing.Tumblr.Should().BeTrue(); checkinMovieResponse.Sharing.Medium.Should().BeTrue(); checkinMovieResponse.Sharing.Slack.Should().BeTrue(); checkinMovieResponse.Movie.Should().BeNull(); } }
public async Task Test_AuthorizationObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var objectJsonReader = new AuthorizationObjectJsonReader { CompleteDeserialization = true }; using (var stream = JSON_INCOMPLETE_7.ToStream()) { ITraktAuthorization traktAuthorization = await objectJsonReader.ReadObjectAsync(stream); traktAuthorization.Should().NotBeNull(); traktAuthorization.AccessToken.Should().Be("mockAccessToken"); traktAuthorization.RefreshToken.Should().Be("mockRefreshToken"); traktAuthorization.Scope.Should().Be(TraktAccessScope.Public); traktAuthorization.ExpiresInSeconds.Should().Be(7200U); traktAuthorization.TokenType.Should().Be(TraktAccessTokenType.Bearer); traktAuthorization.CreatedAtTimestamp.Should().Be(1506271312UL); traktAuthorization.IgnoreExpiration.Should().BeFalse(); } }
public async Task Test_UserSettingsObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new UserSettingsObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var userSettings = await jsonReader.ReadObjectAsync(stream); userSettings.Should().NotBeNull(); userSettings.User.Should().BeNull(); userSettings.Account.Should().BeNull(); userSettings.Connections.Should().NotBeNull(); userSettings.Connections.Twitter.Should().BeTrue(); userSettings.Connections.Google.Should().BeTrue(); userSettings.Connections.Tumblr.Should().BeTrue(); userSettings.Connections.Medium.Should().BeTrue(); userSettings.Connections.Slack.Should().BeTrue(); userSettings.SharingText.Should().BeNull(); } }
public async Task Test_CollectionMovieObjectJsonReader_ReadObject_From_Stream_Incomplete_7() { var jsonReader = new CollectionMovieObjectJsonReader(); using (var stream = JSON_INCOMPLETE_7.ToStream()) { var traktCollectionMovie = await jsonReader.ReadObjectAsync(stream); traktCollectionMovie.Should().NotBeNull(); traktCollectionMovie.CollectedAt.Should().BeNull(); traktCollectionMovie.UpdatedAt.Should().BeNull(); traktCollectionMovie.Movie.Should().NotBeNull(); traktCollectionMovie.Movie.Title.Should().Be("Star Wars: The Force Awakens"); traktCollectionMovie.Movie.Year.Should().Be(2015); traktCollectionMovie.Movie.Ids.Should().NotBeNull(); traktCollectionMovie.Movie.Ids.Trakt.Should().Be(94024U); traktCollectionMovie.Movie.Ids.Slug.Should().Be("star-wars-the-force-awakens-2015"); traktCollectionMovie.Movie.Ids.Imdb.Should().Be("tt2488496"); traktCollectionMovie.Movie.Ids.Tmdb.Should().Be(140607U); traktCollectionMovie.Metadata.Should().BeNull(); } }