OSDN Git Service

Merge pull request #246 from opentween/graphql-public-search
[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<IApiConnection>();
42             mock.Setup(x =>
43                     x.GetStreamAsync(It.IsAny<Uri>(), It.IsAny<IDictionary<string, string>>())
44                 )
45                 .Callback<Uri, IDictionary<string, string>>((url, param) =>
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                 })
52                 .ReturnsAsync(responseStream);
53
54             var request = new SearchTimelineRequest(rawQuery: "#OpenTween")
55             {
56                 Count = 20,
57             };
58
59             var response = await request.Send(mock.Object).ConfigureAwait(false);
60             Assert.Single(response.Tweets);
61             Assert.Equal("DAADDAABCgABFnlh4hraMAYKAAIOTm0DEhTAAQAIAAIAAAACCAADAAAAAAgABAAAAAAKAAUX8j3ezIAnEAoABhfyPd7Mf9jwAAA", response.CursorBottom);
62
63             mock.VerifyAll();
64         }
65
66         [Fact]
67         public async Task Send_RequestCursor_Test()
68         {
69             using var responseStream = File.OpenRead("Resources/Responses/SearchTimeline_SimpleTweet.json");
70
71             var mock = new Mock<IApiConnection>();
72             mock.Setup(x =>
73                     x.GetStreamAsync(It.IsAny<Uri>(), It.IsAny<IDictionary<string, string>>())
74                 )
75                 .Callback<Uri, IDictionary<string, string>>((url, param) =>
76                 {
77                     Assert.Equal(new("https://twitter.com/i/api/graphql/lZ0GCEojmtQfiUQa5oJSEw/SearchTimeline"), url);
78                     Assert.Equal(2, param.Count);
79                     Assert.Equal("""{"rawQuery":"#OpenTween","count":20,"product":"Latest","cursor":"aaa"}""", param["variables"]);
80                     Assert.True(param.ContainsKey("features"));
81                 })
82                 .ReturnsAsync(responseStream);
83
84             var request = new SearchTimelineRequest(rawQuery: "#OpenTween")
85             {
86                 Count = 20,
87                 Cursor = "aaa",
88             };
89
90             await request.Send(mock.Object).ConfigureAwait(false);
91             mock.VerifyAll();
92         }
93     }
94 }