GetGalleryItemCommentAsync() public method

Get information about a specific comment.
/// Thrown when a null reference is passed to a method that does not accept it as a /// valid argument. /// Thrown when an error is found in a response from an Imgur endpoint. Thrown when an error is found in a response from a Mashape endpoint.
public GetGalleryItemCommentAsync ( int commentId, string galleryItemId ) : Task
commentId int The comment id.
galleryItemId string The gallery item id.
return Task
コード例 #1
0
        public async Task GetGalleryItemCommentAsync_WithGalleryItemIdNull_ThrowsArgumentNullException()
        {
            var client = new ImgurClient("123", "1234");
            var endpoint = new GalleryEndpoint(client);

            var exception =
                await
                    Record.ExceptionAsync(
                        async () => await endpoint.GetGalleryItemCommentAsync(987878, null).ConfigureAwait(false))
                        .ConfigureAwait(false);
            Assert.NotNull(exception);
            Assert.IsType<ArgumentNullException>(exception);
        }
コード例 #2
0
        public async Task GetGalleryItemCommentAsync_NotNull()
        {
            var mockUrl = "https://api.imgur.com/3/gallery/Mxd8cg0/comment/548357773";
            var mockResponse = new HttpResponseMessage(HttpStatusCode.OK)
            {
                Content = new StringContent(MockGalleryEndpointResponses.GetGalleryItemComment)
            };

            var client = new ImgurClient("123", "1234");
            var endpoint = new GalleryEndpoint(client, new HttpClient(new MockHttpMessageHandler(mockUrl, mockResponse)));
            var comment = await endpoint.GetGalleryItemCommentAsync(548357773, "Mxd8cg0").ConfigureAwait(false);

            Assert.NotNull(comment);
            Assert.Equal(548357773, comment.Id);
            Assert.Equal("Mxd8cg0", comment.ImageId);
            Assert.Equal("Would be nice to be in my 20s again and not have to favorite this :/", comment.CommentText);
            Assert.Equal("imgurapidotnet", comment.Author);
            Assert.Equal(24562464, comment.AuthorId);
            Assert.Equal(null, comment.AlbumCover);
            Assert.Equal(1, comment.Ups);
            Assert.Equal(0, comment.Downs);
            Assert.Equal(1, comment.Points);
            Assert.Equal(new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc).AddSeconds(1451479114), comment.DateTime);
            Assert.Equal(0, comment.ParentId);
            Assert.Equal(false, comment.Deleted);
            Assert.Equal(VoteOption.Up, comment.Vote);
            Assert.Equal("api", comment.Platform);
            Assert.Equal(0, comment.Children.Count());
        }