forked from g8rswimmer/go-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_retweet_test.go
487 lines (483 loc) · 14 KB
/
client_retweet_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
package twitter
import (
"context"
"io"
"log"
"net/http"
"reflect"
"strings"
"testing"
)
func TestClient_UserRetweet(t *testing.T) {
type fields struct {
Authorizer Authorizer
Client *http.Client
Host string
}
type args struct {
userID string
tweetID string
}
tests := []struct {
name string
fields fields
args args
want *UserRetweetResponse
wantErr bool
}{
{
name: "Success",
fields: fields{
Authorizer: &mockAuth{},
Host: "https://www.test.com",
Client: mockHTTPClient(func(req *http.Request) *http.Response {
if req.Method != http.MethodPost {
log.Panicf("the method is not correct %s %s", req.Method, http.MethodPost)
}
if strings.Contains(req.URL.String(), userManageRetweetEndpoint.urlID("", "user-1234")) == false {
log.Panicf("the url is not correct %s %s", req.URL.String(), userManageRetweetEndpoint)
}
body := `{
"data": {
"retweeted": true
}
}`
return &http.Response{
StatusCode: http.StatusOK,
Body: io.NopCloser(strings.NewReader(body)),
Header: func() http.Header {
h := http.Header{}
h.Add(rateLimit, "15")
h.Add(rateRemaining, "12")
h.Add(rateReset, "1644461060")
return h
}(),
}
}),
},
args: args{
userID: "user-1234",
tweetID: "tweet-1234",
},
want: &UserRetweetResponse{
Data: &RetweetData{
Retweeted: true,
},
RateLimit: &RateLimit{
Limit: 15,
Remaining: 12,
Reset: Epoch(1644461060),
},
},
wantErr: false,
},
{
name: "No User ID",
fields: fields{},
args: args{
tweetID: "tweet-1234",
},
want: nil,
wantErr: true,
},
{
name: "No Tweet ID",
fields: fields{},
args: args{
userID: "user-1234",
},
want: nil,
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Client{
Authorizer: tt.fields.Authorizer,
Client: tt.fields.Client,
Host: tt.fields.Host,
}
got, err := c.UserRetweet(context.Background(), tt.args.userID, tt.args.tweetID)
if (err != nil) != tt.wantErr {
t.Errorf("Client.UserRetweet() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("Client.UserRetweet() = %v, want %v", got, tt.want)
}
})
}
}
func TestClient_DeleteUserRetweet(t *testing.T) {
type fields struct {
Authorizer Authorizer
Client *http.Client
Host string
}
type args struct {
userID string
tweetID string
}
tests := []struct {
name string
fields fields
args args
want *DeleteUserRetweetResponse
wantErr bool
}{
{
name: "Success",
fields: fields{
Authorizer: &mockAuth{},
Host: "https://www.test.com",
Client: mockHTTPClient(func(req *http.Request) *http.Response {
if req.Method != http.MethodDelete {
log.Panicf("the method is not correct %s %s", req.Method, http.MethodDelete)
}
if strings.Contains(req.URL.String(), userManageRetweetEndpoint.urlID("", "user-1234")+"/tweet-1234") == false {
log.Panicf("the url is not correct %s %s", req.URL.String(), userManageRetweetEndpoint)
}
body := `{
"data": {
"retweeted": false
}
}`
return &http.Response{
StatusCode: http.StatusOK,
Body: io.NopCloser(strings.NewReader(body)),
Header: func() http.Header {
h := http.Header{}
h.Add(rateLimit, "15")
h.Add(rateRemaining, "12")
h.Add(rateReset, "1644461060")
return h
}(),
}
}),
},
args: args{
userID: "user-1234",
tweetID: "tweet-1234",
},
want: &DeleteUserRetweetResponse{
Data: &RetweetData{
Retweeted: false,
},
RateLimit: &RateLimit{
Limit: 15,
Remaining: 12,
Reset: Epoch(1644461060),
},
},
wantErr: false,
},
{
name: "No User ID",
fields: fields{},
args: args{
tweetID: "tweet-1234",
},
want: nil,
wantErr: true,
},
{
name: "No Tweet ID",
fields: fields{},
args: args{
userID: "user-1234",
},
want: nil,
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Client{
Authorizer: tt.fields.Authorizer,
Client: tt.fields.Client,
Host: tt.fields.Host,
}
got, err := c.DeleteUserRetweet(context.Background(), tt.args.userID, tt.args.tweetID)
if (err != nil) != tt.wantErr {
t.Errorf("Client.DeleteUserRetweet() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("Client.DeleteUserRetweet() = %v, want %v", got, tt.want)
}
})
}
}
func TestClient_UserRetweetLookup(t *testing.T) {
type fields struct {
Authorizer Authorizer
Client *http.Client
Host string
}
type args struct {
tweetID string
opts UserRetweetLookupOpts
}
tests := []struct {
name string
fields fields
args args
want *UserRetweetLookupResponse
wantErr bool
}{
{
name: "Success - no options",
fields: fields{
Authorizer: &mockAuth{},
Host: "https://www.test.com",
Client: mockHTTPClient(func(req *http.Request) *http.Response {
if req.Method != http.MethodGet {
log.Panicf("the method is not correct %s %s", req.Method, http.MethodGet)
}
if strings.Contains(req.URL.String(), userRetweetLookupEndpoint.urlID("", "tweet-1234")) == false {
log.Panicf("the url is not correct %s %s", req.URL.String(), userRetweetLookupEndpoint)
}
body := `{
"data": [
{
"id": "1065249714214457345",
"name": "Spaces",
"username": "TwitterSpaces"
},
{
"id": "783214",
"name": "Twitter",
"username": "Twitter"
},
{
"id": "1526228120",
"name": "Twitter Data",
"username": "TwitterData"
}
],
"meta": {
"result_count": 3,
"next_token": "7140dibdnow9c7btw4543tz0nst7j4oppx64lxp35od2q",
"previous_token": "77qpymm88g5h9vqkluufkbmeb0lj9r4rend4k34047zg1"
}
}`
return &http.Response{
StatusCode: http.StatusOK,
Body: io.NopCloser(strings.NewReader(body)),
Header: func() http.Header {
h := http.Header{}
h.Add(rateLimit, "15")
h.Add(rateRemaining, "12")
h.Add(rateReset, "1644461060")
return h
}(),
}
}),
},
args: args{
tweetID: "tweet-1234",
},
want: &UserRetweetLookupResponse{
Raw: &UserRetweetRaw{
Users: []*UserObj{
{
ID: "1065249714214457345",
Name: "Spaces",
UserName: "TwitterSpaces",
},
{
ID: "783214",
Name: "Twitter",
UserName: "Twitter",
},
{
ID: "1526228120",
Name: "Twitter Data",
UserName: "TwitterData",
},
},
},
Meta: &UserRetweetMeta{
ResultCount: 3,
NextToken: "7140dibdnow9c7btw4543tz0nst7j4oppx64lxp35od2q",
PreviousToken: "77qpymm88g5h9vqkluufkbmeb0lj9r4rend4k34047zg1",
},
RateLimit: &RateLimit{
Limit: 15,
Remaining: 12,
Reset: Epoch(1644461060),
},
},
wantErr: false,
},
{
name: "Success - with options",
fields: fields{
Authorizer: &mockAuth{},
Host: "https://www.test.com",
Client: mockHTTPClient(func(req *http.Request) *http.Response {
if req.Method != http.MethodGet {
log.Panicf("the method is not correct %s %s", req.Method, http.MethodGet)
}
if strings.Contains(req.URL.String(), userRetweetLookupEndpoint.urlID("", "tweet-1234")) == false {
log.Panicf("the url is not correct %s %s", req.URL.String(), userRetweetLookupEndpoint)
}
body := `{
"data": [
{
"id": "1065249714214457345",
"created_at": "2018-11-21T14:24:58.000Z",
"name": "Spaces",
"pinned_tweet_id": "1389270063807598594",
"description": "Twitter Spaces is where live audio conversations happen.",
"username": "TwitterSpaces"
},
{
"id": "783214",
"created_at": "2007-02-20T14:35:54.000Z",
"name": "Twitter",
"description": "What's happening?!",
"username": "Twitter"
},
{
"id": "1526228120",
"created_at": "2013-06-17T23:57:45.000Z",
"name": "Twitter Data",
"description": "Data-driven insights about notable moments and conversations from Twitter, Inc., plus tips and tricks to help you get the most out of Twitter data.",
"username": "TwitterData"
},
{
"id": "2244994945",
"created_at": "2013-12-14T04:35:55.000Z",
"name": "Twitter Dev",
"pinned_tweet_id": "1354143047324299264",
"description": "The voice of the #TwitterDev team and your official source for updates, news, and events, related to the #TwitterAPI.",
"username": "TwitterDev"
},
{
"id": "6253282",
"created_at": "2007-05-23T06:01:13.000Z",
"name": "Twitter API",
"pinned_tweet_id": "1293595870563381249",
"description": "Tweets about changes and service issues. Follow @TwitterDev for more.",
"username": "TwitterAPI"
}
],
"includes": {
"tweets": [
{
"id": "1389270063807598594",
"text": "now, everyone with 600 or more followers can host a Space.nnbased on what we've learned, these accounts are likely to have a good experience hosting because of their existing audience. before bringing the ability to create a Space to everyone, we're focused on a few things. :thread:"
},
{
"id": "1354143047324299264",
"text": "Academics are one of the biggest groups using the #TwitterAPI to research what's happening. Their work helps make the world (& Twitter) a better place, and now more than ever, we must enable more of it. nIntroducing :drum_with_drumsticks: the Academic Research product track!nhttps://t.co/nOFiGewAV2"
},
{
"id": "1293595870563381249",
"text": "Twitter API v2: Early Access releasednnToday we announced Early Access to the first endpoints of the new Twitter API!nn#TwitterAPI #EarlyAccess #VersionBump https://t.co/g7v3aeIbtQ"
}
]
},
"meta": {
"result_count": 5
}
}`
return &http.Response{
StatusCode: http.StatusOK,
Body: io.NopCloser(strings.NewReader(body)),
}
}),
},
args: args{
tweetID: "tweet-1234",
opts: UserRetweetLookupOpts{
Expansions: []Expansion{ExpansionPinnedTweetID},
UserFields: []UserField{UserFieldCreatedAt, UserFieldDescription},
TweetFields: []TweetField{TweetFieldCreatedAt},
},
},
want: &UserRetweetLookupResponse{
Raw: &UserRetweetRaw{
Users: []*UserObj{
{
ID: "1065249714214457345",
Name: "Spaces",
UserName: "TwitterSpaces",
CreatedAt: "2018-11-21T14:24:58.000Z",
PinnedTweetID: "1389270063807598594",
Description: "Twitter Spaces is where live audio conversations happen.",
},
{
ID: "783214",
Name: "Twitter",
UserName: "Twitter",
CreatedAt: "2007-02-20T14:35:54.000Z",
Description: "What's happening?!",
},
{
ID: "1526228120",
Name: "Twitter Data",
UserName: "TwitterData",
CreatedAt: "2013-06-17T23:57:45.000Z",
Description: "Data-driven insights about notable moments and conversations from Twitter, Inc., plus tips and tricks to help you get the most out of Twitter data.",
},
{
ID: "2244994945",
Name: "Twitter Dev",
UserName: "TwitterDev",
CreatedAt: "2013-12-14T04:35:55.000Z",
PinnedTweetID: "1354143047324299264",
Description: "The voice of the #TwitterDev team and your official source for updates, news, and events, related to the #TwitterAPI.",
},
{
ID: "6253282",
Name: "Twitter API",
UserName: "TwitterAPI",
CreatedAt: "2007-05-23T06:01:13.000Z",
PinnedTweetID: "1293595870563381249",
Description: "Tweets about changes and service issues. Follow @TwitterDev for more.",
},
},
Includes: &UserRetweetRawIncludes{
Tweets: []*TweetObj{
{
ID: "1389270063807598594",
Text: "now, everyone with 600 or more followers can host a Space.nnbased on what we've learned, these accounts are likely to have a good experience hosting because of their existing audience. before bringing the ability to create a Space to everyone, we're focused on a few things. :thread:",
},
{
ID: "1354143047324299264",
Text: "Academics are one of the biggest groups using the #TwitterAPI to research what's happening. Their work helps make the world (& Twitter) a better place, and now more than ever, we must enable more of it. nIntroducing :drum_with_drumsticks: the Academic Research product track!nhttps://t.co/nOFiGewAV2",
},
{
ID: "1293595870563381249",
Text: "Twitter API v2: Early Access releasednnToday we announced Early Access to the first endpoints of the new Twitter API!nn#TwitterAPI #EarlyAccess #VersionBump https://t.co/g7v3aeIbtQ",
},
},
},
},
Meta: &UserRetweetMeta{
ResultCount: 5,
},
},
wantErr: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
c := &Client{
Authorizer: tt.fields.Authorizer,
Client: tt.fields.Client,
Host: tt.fields.Host,
}
got, err := c.UserRetweetLookup(context.Background(), tt.args.tweetID, tt.args.opts)
if (err != nil) != tt.wantErr {
t.Errorf("Client.UserRetweetLookup() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("Client.UserRetweetLookup() = %v, want %v", got, tt.want)
}
})
}
}