OSDN Git Service

IApiConnectionをIApiConnectionLegacyに名前変更
[opentween/open-tween.git] / OpenTween.Tests / Api / GraphQL / SearchTimelineRequestTest.cs
1 // OpenTween - Client of Twitter
2 // Copyright (c) 2023 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;
23 using System.Collections.Generic;
24 using System.IO;
25 using System.Linq;
26 using System.Text;
27 using System.Threading.Tasks;
28 using Moq;
29 using OpenTween.Connection;
30 using Xunit;
31
32 namespace OpenTween.Api.GraphQL
33 {
34     public class SearchTimelineRequestTest
35     {
36         [Fact]
37         public async Task Send_Test()
38         {
39             using var responseStream = File.OpenRead("Resources/Responses/SearchTimeline_SimpleTweet.json");
40
41             var mock = new Mock<IApiConnectionLegacy>();
42             mock.Setup(x =>
43                     x.GetStreamAsync(It.IsAny<Uri>(), It.IsAny<IDictionary<string, string>>(), It.IsAny<string>())
44                 )
45                 .Callback<Uri, IDictionary<string, string>, string>((url, param, endpointName) =>
46                 {
47                     Assert.Equal(new("https://twitter.com/i/api/graphql/lZ0GCEojmtQfiUQa5oJSEw/SearchTimeline"), url);
48                     Assert.Equal(2, param.Count);
49                     Assert.Equal("""{"rawQuery":"#OpenTween","count":20,"product":"Latest"}""", param["variables"]);
50                     Assert.True(param.ContainsKey("features"));
51                     Assert.Equal("SearchTimeline", endpointName);
52                 })
53                 .ReturnsAsync(responseStream);
54
55             var request = new SearchTimelineRequest(rawQuery: "#OpenTween")
56             {
57                 Count = 20,
58             };
59
60             var response = await request.Send(mock.Object);
61             Assert.Single(response.Tweets);
62             Assert.Equal("DAADDAABCgABFnlh4hraMAYKAAIOTm0DEhTAAQAIAAIAAAABCAADAAAAAAgABAAAAAAKAAUX8j3ezIAnEAoABhfyPd7Mf9jwAAA", response.CursorTop);
63             Assert.Equal("DAADDAABCgABFnlh4hraMAYKAAIOTm0DEhTAAQAIAAIAAAACCAADAAAAAAgABAAAAAAKAAUX8j3ezIAnEAoABhfyPd7Mf9jwAAA", response.CursorBottom);
64
65             mock.VerifyAll();
66         }
67
68         [Fact]
69         public async Task Send_RequestCursor_Test()
70         {
71             using var responseStream = File.OpenRead("Resources/Responses/SearchTimeline_SimpleTweet.json");
72
73             var mock = new Mock<IApiConnectionLegacy>();
74             mock.Setup(x =>
75                     x.GetStreamAsync(It.IsAny<Uri>(), It.IsAny<IDictionary<string, string>>(), It.IsAny<string>())
76                 )
77                 .Callback<Uri, IDictionary<string, string>, string>((url, param, endpointName) =>
78                 {
79                     Assert.Equal(new("https://twitter.com/i/api/graphql/lZ0GCEojmtQfiUQa5oJSEw/SearchTimeline"), url);
80                     Assert.Equal(2, param.Count);
81                     Assert.Equal("""{"rawQuery":"#OpenTween","count":20,"product":"Latest","cursor":"aaa"}""", param["variables"]);
82                     Assert.True(param.ContainsKey("features"));
83                     Assert.Equal("SearchTimeline", endpointName);
84                 })
85                 .ReturnsAsync(responseStream);
86
87             var request = new SearchTimelineRequest(rawQuery: "#OpenTween")
88             {
89                 Count = 20,
90                 Cursor = "aaa",
91             };
92
93             await request.Send(mock.Object);
94             mock.VerifyAll();
95         }
96     }
97 }