OSDN Git Service

cef9242bf904adc85b2fe2d4ab0874e6af94e887
[opentween/open-tween.git] / OpenTween.Tests / Api / GraphQL / FavoriteTweetRequestTest.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2024 kim_upsilon (@kim_upsilon) <https://upsilo.net/~upsilon/>
3 // All rights reserved.
4 //
5 // This file is part of OpenTween.
6 //
7 // This program is free software; you can redistribute it and/or modify it
8 // under the terms of the GNU General Public License as published by the Free
9 // Software Foundation; either version 3 of the License, or (at your option)
10 // any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 // or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 // for more details.
16 //
17 // You should have received a copy of the GNU General Public License along
18 // with this program. If not, see <http://www.gnu.org/licenses/>, or write to
19 // the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 // Boston, MA 02110-1301, USA.
21
22 using System.Threading.Tasks;
23 using Moq;
24 using OpenTween.Connection;
25 using Xunit;
26
27 namespace OpenTween.Api.GraphQL
28 {
29     public class FavoriteTweetRequestTest
30     {
31         [Fact]
32         public async Task Send_Test()
33         {
34             using var apiResponse = await TestUtils.CreateApiResponse("Resources/Responses/FavoriteTweet.json");
35
36             var mock = new Mock<IApiConnection>();
37             mock.Setup(x =>
38                     x.SendAsync(It.IsAny<IHttpRequest>())
39                 )
40                 .Callback<IHttpRequest>(x =>
41                 {
42                     var request = Assert.IsType<PostJsonRequest>(x);
43                     Assert.Equal(new("https://twitter.com/i/api/graphql/lI07N6Otwv1PhnEgXILM7A/FavoriteTweet"), request.RequestUri);
44                     Assert.Equal("""{"variables":{"tweet_id":"12345"},"queryId":"lI07N6Otwv1PhnEgXILM7A"}""", request.JsonString);
45                 })
46                 .ReturnsAsync(apiResponse);
47
48             var request = new FavoriteTweetRequest
49             {
50                 TweetId = new("12345"),
51             };
52
53             await request.Send(mock.Object);
54
55             mock.VerifyAll();
56         }
57
58         [Fact]
59         public async Task Send_AlreadyFavoritedTest()
60         {
61             using var apiResponse = await TestUtils.CreateApiResponse("Resources/Responses/FavoriteTweet_AlreadyFavorited.json");
62
63             var mock = new Mock<IApiConnection>();
64             mock.Setup(x => x.SendAsync(It.IsAny<IHttpRequest>()))
65                 .ReturnsAsync(apiResponse);
66
67             var request = new FavoriteTweetRequest
68             {
69                 TweetId = new("12345"),
70             };
71
72             // 重複によるエラーレスポンスが返っているが例外を発生させない
73             await request.Send(mock.Object);
74
75             mock.VerifyAll();
76         }
77     }
78 }