public void Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_JsonReader_Null()
        {
            var traktJsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();
            Func <Task <ITraktUserCustomListItemsRemovePostResponse> > customListItemsRemovePostResponse = () => traktJsonReader.ReadObjectAsync(default(JsonTextReader));

            customListItemsRemovePostResponse.Should().Throw <ArgumentNullException>();
        }
Ejemplo n.º 2
0
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_Stream_Null()
        {
            var jsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            var customListItemsRemovePostResponse = await jsonReader.ReadObjectAsync(default(Stream));

            customListItemsRemovePostResponse.Should().BeNull();
        }
Ejemplo n.º 3
0
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_Json_String_Empty()
        {
            var jsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            var customListItemsRemovePostResponse = await jsonReader.ReadObjectAsync(string.Empty);

            customListItemsRemovePostResponse.Should().BeNull();
        }
Ejemplo n.º 4
0
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_JsonReader_Null()
        {
            var traktJsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            var customListItemsRemovePostResponse = await traktJsonReader.ReadObjectAsync(default(JsonTextReader));

            customListItemsRemovePostResponse.Should().BeNull();
        }
Ejemplo n.º 5
0
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_Json_String_Not_Valid_3()
        {
            var jsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            var customListItemsRemovePostResponse = await jsonReader.ReadObjectAsync(JSON_NOT_VALID_3);

            customListItemsRemovePostResponse.Should().NotBeNull();
            customListItemsRemovePostResponse.Deleted.Should().BeNull();
            customListItemsRemovePostResponse.NotFound.Should().BeNull();
        }
Ejemplo n.º 6
0
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_Stream_Empty()
        {
            var jsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            using (var stream = string.Empty.ToStream())
            {
                var customListItemsRemovePostResponse = await jsonReader.ReadObjectAsync(stream);

                customListItemsRemovePostResponse.Should().BeNull();
            }
        }
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_JsonReader_Empty()
        {
            var traktJsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            using (var reader = new StringReader(string.Empty))
                using (var jsonReader = new JsonTextReader(reader))
                {
                    var customListItemsRemovePostResponse = await traktJsonReader.ReadObjectAsync(jsonReader);

                    customListItemsRemovePostResponse.Should().BeNull();
                }
        }
Ejemplo n.º 8
0
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_Stream_Not_Valid_3()
        {
            var jsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            using (var stream = JSON_NOT_VALID_3.ToStream())
            {
                var customListItemsRemovePostResponse = await jsonReader.ReadObjectAsync(stream);

                customListItemsRemovePostResponse.Should().NotBeNull();
                customListItemsRemovePostResponse.Deleted.Should().BeNull();
                customListItemsRemovePostResponse.NotFound.Should().BeNull();
            }
        }
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_JsonReader_Not_Valid_3()
        {
            var traktJsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            using (var reader = new StringReader(JSON_NOT_VALID_3))
                using (var jsonReader = new JsonTextReader(reader))
                {
                    var customListItemsRemovePostResponse = await traktJsonReader.ReadObjectAsync(jsonReader);

                    customListItemsRemovePostResponse.Should().NotBeNull();
                    customListItemsRemovePostResponse.Deleted.Should().BeNull();
                    customListItemsRemovePostResponse.NotFound.Should().BeNull();
                }
        }
Ejemplo n.º 10
0
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_Json_String_Not_Valid_2()
        {
            var jsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            var customListItemsRemovePostResponse = await jsonReader.ReadObjectAsync(JSON_NOT_VALID_2);

            customListItemsRemovePostResponse.Should().NotBeNull();

            customListItemsRemovePostResponse.Deleted.Should().NotBeNull();
            customListItemsRemovePostResponse.Deleted.Movies.Should().Be(1);
            customListItemsRemovePostResponse.Deleted.Shows.Should().Be(2);
            customListItemsRemovePostResponse.Deleted.Seasons.Should().Be(3);
            customListItemsRemovePostResponse.Deleted.Episodes.Should().Be(4);
            customListItemsRemovePostResponse.Deleted.People.Should().Be(5);

            customListItemsRemovePostResponse.NotFound.Should().BeNull();
        }
Ejemplo n.º 11
0
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_Stream_Incomplete_2()
        {
            var jsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            using (var stream = JSON_INCOMPLETE_2.ToStream())
            {
                var customListItemsRemovePostResponse = await jsonReader.ReadObjectAsync(stream);

                customListItemsRemovePostResponse.Should().NotBeNull();

                customListItemsRemovePostResponse.Deleted.Should().NotBeNull();
                customListItemsRemovePostResponse.Deleted.Movies.Should().Be(1);
                customListItemsRemovePostResponse.Deleted.Shows.Should().Be(2);
                customListItemsRemovePostResponse.Deleted.Seasons.Should().Be(3);
                customListItemsRemovePostResponse.Deleted.Episodes.Should().Be(4);
                customListItemsRemovePostResponse.Deleted.People.Should().Be(5);

                customListItemsRemovePostResponse.NotFound.Should().BeNull();
            }
        }
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_JsonReader_Incomplete_2()
        {
            var traktJsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            using (var reader = new StringReader(JSON_INCOMPLETE_2))
                using (var jsonReader = new JsonTextReader(reader))
                {
                    var customListItemsRemovePostResponse = await traktJsonReader.ReadObjectAsync(jsonReader);

                    customListItemsRemovePostResponse.Should().NotBeNull();

                    customListItemsRemovePostResponse.Deleted.Should().NotBeNull();
                    customListItemsRemovePostResponse.Deleted.Movies.Should().Be(1);
                    customListItemsRemovePostResponse.Deleted.Shows.Should().Be(2);
                    customListItemsRemovePostResponse.Deleted.Seasons.Should().Be(3);
                    customListItemsRemovePostResponse.Deleted.Episodes.Should().Be(4);
                    customListItemsRemovePostResponse.Deleted.People.Should().Be(5);

                    customListItemsRemovePostResponse.NotFound.Should().BeNull();
                }
        }
Ejemplo n.º 13
0
        public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_Stream_Not_Valid_1()
        {
            var jsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();

            using (var stream = JSON_NOT_VALID_1.ToStream())
            {
                var customListItemsRemovePostResponse = await jsonReader.ReadObjectAsync(stream);

                customListItemsRemovePostResponse.Should().NotBeNull();

                customListItemsRemovePostResponse.Deleted.Should().BeNull();

                customListItemsRemovePostResponse.NotFound.Should().NotBeNull();

                var notFound = customListItemsRemovePostResponse.NotFound;
                notFound.Movies.Should().NotBeNull().And.NotBeEmpty().And.HaveCount(2);

                var movies = notFound.Movies.ToArray();

                movies[0].Should().NotBeNull();
                movies[0].Ids.Should().NotBeNull();
                movies[0].Ids.Trakt.Should().Be(94024U);
                movies[0].Ids.Slug.Should().Be("star-wars-the-force-awakens-2015");
                movies[0].Ids.Imdb.Should().Be("tt2488496");
                movies[0].Ids.Tmdb.Should().Be(140607U);

                movies[1].Should().NotBeNull();
                movies[1].Ids.Should().NotBeNull();
                movies[1].Ids.Trakt.Should().Be(172687U);
                movies[1].Ids.Slug.Should().Be("king-arthur-legend-of-the-sword-2017");
                movies[1].Ids.Imdb.Should().Be("tt1972591");
                movies[1].Ids.Tmdb.Should().Be(274857U);

                // --------------------------------------------------

                notFound.Shows.Should().NotBeNull().And.NotBeEmpty().And.HaveCount(2);

                var shows = notFound.Shows.ToArray();

                shows[0].Should().NotBeNull();
                shows[0].Ids.Should().NotBeNull();
                shows[0].Ids.Trakt.Should().Be(1390U);
                shows[0].Ids.Slug.Should().Be("game-of-thrones");
                shows[0].Ids.Tvdb.Should().Be(121361U);
                shows[0].Ids.Imdb.Should().Be("tt0944947");
                shows[0].Ids.Tmdb.Should().Be(1399U);
                shows[0].Ids.TvRage.Should().Be(24493U);

                shows[1].Should().NotBeNull();
                shows[1].Ids.Should().NotBeNull();
                shows[1].Ids.Trakt.Should().Be(60300U);
                shows[1].Ids.Slug.Should().Be("the-flash-2014");
                shows[1].Ids.Tvdb.Should().Be(279121U);
                shows[1].Ids.Imdb.Should().Be("tt3107288");
                shows[1].Ids.Tmdb.Should().Be(60735U);
                shows[1].Ids.TvRage.Should().Be(36939U);

                // --------------------------------------------------

                notFound.Seasons.Should().NotBeNull().And.NotBeEmpty().And.HaveCount(2);

                var seasons = notFound.Seasons.ToArray();

                seasons[0].Should().NotBeNull();
                seasons[0].Ids.Should().NotBeNull();
                seasons[0].Ids.Trakt.Should().Be(61430U);
                seasons[0].Ids.Tvdb.Should().Be(279121U);
                seasons[0].Ids.Tmdb.Should().Be(60523U);
                seasons[0].Ids.TvRage.Should().Be(36939U);

                seasons[1].Should().NotBeNull();
                seasons[1].Ids.Should().NotBeNull();
                seasons[1].Ids.Trakt.Should().Be(61431U);
                seasons[1].Ids.Tvdb.Should().Be(578373U);
                seasons[1].Ids.Tmdb.Should().Be(60524U);
                seasons[1].Ids.TvRage.Should().Be(36940U);

                // --------------------------------------------------

                notFound.Episodes.Should().NotBeNull().And.NotBeEmpty().And.HaveCount(2);

                var episodes = notFound.Episodes.ToArray();

                episodes[0].Should().NotBeNull();
                episodes[0].Ids.Should().NotBeNull();
                episodes[0].Ids.Trakt.Should().Be(73640U);
                episodes[0].Ids.Tvdb.Should().Be(3254641U);
                episodes[0].Ids.Imdb.Should().Be("tt1480055");
                episodes[0].Ids.Tmdb.Should().Be(63056U);
                episodes[0].Ids.TvRage.Should().Be(1065008299U);

                episodes[1].Should().NotBeNull();
                episodes[1].Ids.Should().NotBeNull();
                episodes[1].Ids.Trakt.Should().Be(73641U);
                episodes[1].Ids.Tvdb.Should().Be(3436411U);
                episodes[1].Ids.Imdb.Should().Be("tt1668746");
                episodes[1].Ids.Tmdb.Should().Be(63057U);
                episodes[1].Ids.TvRage.Should().Be(1065023912U);

                // --------------------------------------------------

                notFound.People.Should().NotBeNull().And.NotBeEmpty().And.HaveCount(2);

                var people = notFound.People.ToArray();

                people[0].Should().NotBeNull();
                people[0].Ids.Should().NotBeNull();
                people[0].Ids.Trakt.Should().Be(297737U);
                people[0].Ids.Slug.Should().Be("bryan-cranston");
                people[0].Ids.Imdb.Should().Be("nm0186505");
                people[0].Ids.Tmdb.Should().Be(17419U);
                people[0].Ids.TvRage.Should().Be(1797U);

                people[1].Should().NotBeNull();
                people[1].Ids.Should().NotBeNull();
                people[1].Ids.Trakt.Should().Be(9486U);
                people[1].Ids.Slug.Should().Be("samuel-l-jackson");
                people[1].Ids.Imdb.Should().Be("nm0000168");
                people[1].Ids.Tmdb.Should().Be(2231U);
                people[1].Ids.TvRage.Should().Be(55720U);
            }
        }
Ejemplo n.º 14
0
 public async Task Test_UserCustomListItemsRemovePostResponseObjectJsonReader_ReadObject_From_Json_String_Null()
 {
     var jsonReader = new UserCustomListItemsRemovePostResponseObjectJsonReader();
     Func <Task <ITraktUserCustomListItemsRemovePostResponse> > customListItemsRemovePostResponse = () => jsonReader.ReadObjectAsync(default(string));
     await customListItemsRemovePostResponse.Should().ThrowAsync <ArgumentNullException>();
 }