forked from DocNow/twarc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_twarc.py
633 lines (485 loc) · 19.7 KB
/
test_twarc.py
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
import os
import re
import json
import time
import logging
import pytest
try:
from unittest.mock import patch, call, MagicMock # Python 3
except ImportError:
from mock import patch, call, MagicMock # Python 2
from requests_oauthlib import OAuth1Session
import requests
import twarc
"""
You will need to have these environment variables set to run these tests:
* CONSUMER_KEY
* CONSUMER_SECRET
* ACCESS_TOKEN
* ACCESS_TOKEN_SECRET
"""
logging.basicConfig(filename="test.log", level=logging.INFO)
T = twarc.Twarc()
def test_version():
import setup
assert setup.__version__ == twarc.__version__
def test_search():
count = 0
for tweet in T.search('obama'):
assert tweet['id_str']
count += 1
if count == 10:
break
assert count == 10
def test_search_max_pages():
count = 0
for tweet in T.search('obama', max_pages=3):
count += 1
assert tweet['id_str']
assert count == 300
def test_search_max_pages():
tweets = list(T.search('obama', max_pages=1))
assert 0 < len(tweets) <= 100
tweets = list(T.search('obama', max_pages=2))
assert 100 < len(tweets) <= 200
def test_since_id():
for tweet in T.search('obama'):
id = tweet['id_str']
break
assert id
time.sleep(5)
for tweet in T.search('obama', since_id=id):
assert tweet['id_str'] > id
def test_max_id():
for tweet in T.search('obama'):
id = tweet['id_str']
break
assert id
time.sleep(5)
count = 0
for tweet in T.search('obama', max_id=id):
count += 1
assert tweet['id_str'] <= id
if count > 100:
break
def test_max_and_since_ids():
max_id = since_id = None
count = 0
for tweet in T.search('obama'):
count += 1
if not max_id:
max_id = tweet['id_str']
since_id = tweet['id_str']
if count > 500:
break
count = 0
for tweet in T.search('obama', max_id=max_id, since_id=since_id):
count += 1
assert tweet['id_str'] <= max_id
assert tweet['id_str'] > since_id
def test_paging():
# pages are 100 tweets big so if we can get 500 paging is working
count = 0
for tweet in T.search('obama'):
count += 1
if count == 500:
break
assert count == 500
def test_geocode():
# look for tweets from New York ; the search radius is larger than NYC
# so hopefully we'll find one from New York in the first 100?
count = 0
found = False
for tweet in T.search(None, geocode='40.7484,-73.9857,1mi'):
if (tweet['place'] or {}).get('name') == 'Manhattan':
found = True
break
if count > 100:
break
count += 1
assert found
def test_track():
tweet = next(T.filter(track="obama"))
json_str = json.dumps(tweet)
assert re.search('obama', json_str, re.IGNORECASE)
# reconnect to close streaming connection for other tests
T.connect()
def test_keepalive():
for event in T.filter(track="abcdefghiklmno", record_keepalive=True):
if event == 'keep-alive':
break
# reconnect to close streaming connection for other tests
T.connect()
def test_follow():
user_ids = [
"87818409", # @guardian
"428333", # @cnnbrk
"5402612", # @BBCBreaking
"2467791", # @washingtonpost
"1020058453", # @BuzzFeedNews
"23484039", # WSJbreakingnews
"384438102", # ABCNewsLive
"15108702", # ReutersLive
"87416722" # SkyNewsBreak
]
found = False
for tweet in T.filter(follow=','.join(user_ids)):
assert tweet['id_str']
if tweet['user']['id_str'] in user_ids:
found = True
elif tweet['in_reply_to_user_id_str'] in user_ids:
found = True
elif tweet['retweeted_status']['user']['id_str'] in user_ids:
found = True
elif 'quoted_status' in tweet and \
tweet['quoted_status']['user']['id_str'] in user_ids:
found = True
break
if not found:
logging.warn("couldn't find user in response: %s", json.dumps(tweet, indent=2))
assert found
# reconnect to close streaming connection for other tests
T.connect()
def test_locations():
# look for tweets from New York ; the bounding box is larger than NYC
# so hopefully we'll find one from New York in the first 100?
count = 0
found = False
for tweet in T.filter(locations="-74,40,-73,41"):
if tweet['place']['name'] == 'Manhattan':
found = True
break
if count > 100:
break
count += 1
assert found
# reconnect to close streaming connection for other tests
T.connect()
def test_languages():
count = 0
ok = True
langs = ['fr', 'es']
for tweet in T.filter('paris,madrid', lang=langs):
if tweet['lang'] not in langs:
ok = False
break
if count > 25:
break
count += 1
assert ok
# reconnect to close streaming connection for other tests
T.connect()
def test_timeline_by_user_id():
# looks for recent tweets and checks if tweets are of provided user_id
user_id = "87818409"
for tweet in T.timeline(user_id=user_id):
assert tweet['user']['id_str'] == user_id
# Make sure that passing an int user_id behaves as expected. Issue #235
user_id = 87818409
all_tweets = list(T.timeline(user_id=user_id))
assert len(all_tweets)
for tweet in all_tweets:
assert tweet['user']['id'] == user_id
def test_timeline_max_pages():
# looks for recent tweets and checks if tweets are of provided user_id
user_id = "87818409"
first_page = list(T.timeline(user_id=user_id, max_pages=1))
assert 0 < len(first_page) <= 200
all_pages = list(T.timeline(user_id=user_id))
assert len(all_pages) > len(first_page)
def test_timeline_by_screen_name():
# looks for recent tweets and checks if tweets are of provided screen_name
screen_name = "guardian"
for tweet in T.timeline(screen_name=screen_name):
assert tweet['user']['screen_name'].lower() == screen_name.lower()
def test_home_timeline():
found = False
for tweet in T.timeline():
found = True
break
assert found
def test_timeline_arg_handling():
# Confirm that only user_id *or* screen_name is valid for timeline
screen_name = "guardian"
user_id = "87818409"
with pytest.raises(ValueError):
for t in T.timeline(screen_name=screen_name, user_id=user_id):
pass
def test_timeline_with_since_id():
count = 0
tweet_id = None
for tweet in T.timeline(screen_name='guardian'):
tweet_id = tweet['id_str']
count += 1
if count > 10:
break
tweets = list(T.timeline(screen_name='guardian', since_id=tweet_id))
assert len(tweets) == 10
def test_trends_available():
# fetches all available trend regions and checks presence of likely member
trends = T.trends_available()
worldwide = [t for t in trends if t['placeType']['name'] == 'Supername']
assert worldwide[0]['name'] == 'Worldwide'
def test_trends_place():
# fetches recent trends for Amsterdam, WOEID 727232
trends = T.trends_place(727232)
assert len(list(trends[0]['trends'])) > 0
def test_trends_closest():
# fetches regions bounding the specified lat and lon
trends = T.trends_closest(38.883137, -76.990228)
assert len(list(trends)) > 0
def test_trends_place_exclude():
# fetches recent trends for Amsterdam, WOEID 727232, sans hashtags
trends = T.trends_place(727232, exclude='hashtags')[0]['trends']
hashtag_trends = [t for t in trends if t['name'].startswith('#')]
assert len(hashtag_trends) == 0
def test_follower_ids():
count = 0
for id in T.follower_ids('justinbieber'):
count += 1
if count == 10001:
break
assert count == 10001
def test_follower_ids_with_user_id():
count = 0
for id in T.follower_ids(27260086):
count += 1
if count > 10001:
break
assert count > 10001
def test_follower_ids_max_pages():
ids = list(T.follower_ids(27260086, max_pages=1))
assert 0 < len(ids) <= 5000
ids = list(T.follower_ids(27260086, max_pages=2))
assert 5000 < len(ids) <= 10000
def test_friend_ids():
count = 0
for id in T.friend_ids('justinbieber'):
count += 1
if count == 10001:
break
assert count == 10001
def test_friend_ids_with_user_id():
count = 0
for id in T.friend_ids(27260086):
count += 1
if count > 10001:
break
assert count > 10001
def test_friend_ids_max_pages():
ids = list(T.friend_ids(27260086, max_pages=1))
assert 0 < len(ids) <= 5000
ids = list(T.friend_ids(27260086, max_pages=2))
assert 5000 < len(ids) <= 10000
def test_user_lookup_by_user_id():
# looks for the user with given user_id
user_ids = [
'87818409', # @guardian
'807095', # @nytimes
'428333', # @cnnbrk
'5402612', # @BBCBreaking
'2467791', # @washingtonpost
'1020058453', # @BuzzFeedNews
'23484039', # WSJbreakingnews
'384438102', # ABCNewsLive
'15108702', # ReutersLive
'87416722' # SkyNewsBreak
]
uids = []
for user in T.user_lookup(ids=user_ids):
uids.append(user['id_str'])
assert set(user_ids) == set(uids)
def test_user_lookup_by_screen_name():
# looks for the user with given screen_names
screen_names = ["guardian", "nytimes", "cnnbrk", "BBCBreaking",
"washingtonpost", "BuzzFeedNews", "WSJbreakingnews",
"ABCNewsLive", "ReutersLive", "SkyNewsBreak"]
names = []
for user in T.user_lookup(ids=screen_names, id_type="screen_name"):
names.append(user['screen_name'].lower())
assert set(names) == set(map(lambda x: x.lower(), screen_names))
def test_tweet():
t = T.tweet("20")
assert t['full_text'] == 'just setting up my twttr'
def test_dehydrate():
tweets = [
'{"text": "test tweet 1", "id_str": "800000000000000000"}',
'{"text": "test tweet 2", "id_str": "800000000000000001"}',
]
ids = list(T.dehydrate(iter(tweets)))
assert len(ids) == 2
assert "800000000000000000" in ids
assert "800000000000000001" in ids
def test_hydrate():
ids = [
"501064188211765249", "501064196642340864", "501064197632167936",
"501064196931330049", "501064198005481472", "501064198009655296",
"501064198059597824", "501064198513000450", "501064180468682752",
"501064199142117378", "501064171707170816", "501064200186118145",
"501064200035516416", "501064201041743872", "501064201251880961",
"501064198973960192", "501064201256071168", "501064202027798529",
"501064202245521409", "501064201503113216", "501064202363359232",
"501064202295848960", "501064202380115971", "501064202904403970",
"501064203135102977", "501064203508412416", "501064203516407810",
"501064203546148864", "501064203697156096", "501064204191690752",
"501064204288540672", "501064197396914176", "501064194309906436",
"501064204989001728", "501064204980592642", "501064204661850113",
"501064205400039424", "501064205089665024", "501064206666702848",
"501064207274868736", "501064197686296576", "501064207623000064",
"501064207824351232", "501064208083980290", "501064208277319680",
"501064208398573568", "501064202794971136", "501064208789045248",
"501064209535614976", "501064209551994881", "501064141332029440",
"501064207387742210", "501064210177331200", "501064210395037696",
"501064210693230592", "501064210840035329", "501064211855069185",
"501064192024006657", "501064200316125184", "501064205642903552",
"501064212547137536", "501064205382848512", "501064213843169280",
"501064208562135042", "501064214211870720", "501064214467731457",
"501064215160172545", "501064209648848896", "501064215990648832",
"501064216241897472", "501064215759568897", "501064211858870273",
"501064216522932227", "501064216930160640", "501064217667960832",
"501064211997274114", "501064212303446016", "501064213675012096",
"501064218343661568", "501064213951823873", "501064219467341824",
"501064219677044738", "501064210080473088", "501064220415229953",
"501064220847656960", "501064222340423681", "501064222772445187",
"501064222923440130", "501064220121632768", "501064222948593664",
"501064224936714240", "501064225096499201", "501064225142624256",
"501064225314185216", "501064225926561794", "501064226451259392",
"501064226816143361", "501064227302674433", "501064227344646144",
"501064227688558592", "501064228288364546", "501064228627705857",
"501064229764751360", "501064229915729921", "501064231304065026",
"501064231366983681", "501064231387947008", "501064231488200704",
"501064231941570561", "501064232188665856", "501064232449114112",
"501064232570724352", "501064232700350464", "501064233186893824",
"501064233438568450", "501064233774510081", "501064235107897344",
"619172347640201216", "619172347275116548", "619172341944332288",
"619172340891578368", "619172338177843200", "619172335426244608",
"619172332100284416", "619172331592773632", "619172331584376832",
"619172331399725057", "619172328249757696", "619172328149118976",
"619172326886674432", "619172324600745984", "619172323447324672",
"619172321564098560", "619172320880533504", "619172320360333312",
"619172319047647232", "619172314710609920", "619172313846693890",
"619172312122814464", "619172306338709504", "619172304191401984",
"619172303654518784", "619172302878408704", "619172300689031168",
"619172298310840325", "619172295966392320", "619172293936291840",
"619172293680345089", "619172285501456385", "619172282183725056",
"619172281751711748", "619172281294655488", "619172278086070272",
"619172275741298688", "619172274235535363", "619172257789706240",
"619172257278111744", "619172253075378176", "619172242736308224",
"619172236134588416", "619172235488718848", "619172232120692736",
"619172227813126144", "619172221349662720", "619172216349917184",
"619172214475108352", "619172209857327104", "619172208452182016",
"619172208355749888", "619172193730199552", "619172193482768384",
"619172184922042368", "619172182548049920", "619172179960328192",
"619172175820357632", "619172174872469504", "619172173568053248",
"619172170233679872", "619172165959708672", "619172163912908801",
"619172162608463873", "619172158741303297", "619172157197819905",
"501064235175399425", "501064235456401410", "615973042443956225",
"618602288781860864"
]
count = 0
for tweet in T.hydrate(iter(ids)):
assert tweet['id_str']
count += 1
assert count > 100 # may need to adjust as these might get deleted
@patch("twarc.client.OAuth1Session", autospec=True)
def test_connection_error_get(oauth1session_class):
mock_oauth1session = MagicMock(spec=OAuth1Session)
oauth1session_class.return_value = mock_oauth1session
mock_oauth1session.get.side_effect = requests.exceptions.ConnectionError
t = twarc.Twarc("consumer_key", "consumer_secret", "access_token",
"access_token_secret", connection_errors=3,
validate_keys=False)
with pytest.raises(requests.exceptions.ConnectionError):
t.get("https://api.twitter.com")
assert 3 == mock_oauth1session.get.call_count
@patch("twarc.client.OAuth1Session", autospec=True)
def test_connection_error_post(oauth1session_class):
mock_oauth1session = MagicMock(spec=OAuth1Session)
oauth1session_class.return_value = mock_oauth1session
mock_oauth1session.post.side_effect = requests.exceptions.ConnectionError
t = twarc.Twarc("consumer_key", "consumer_secret", "access_token",
"access_token_secret", connection_errors=2,
validate_keys=False)
with pytest.raises(requests.exceptions.ConnectionError):
t.post("https://api.twitter.com")
assert 2 == mock_oauth1session.post.call_count
def test_http_error_sample():
t = twarc.Twarc("consumer_key", "consumer_secret", "access_token",
"access_token_secret", http_errors=2, validate_keys=False)
with pytest.raises(requests.exceptions.HTTPError):
next(t.sample())
def test_http_error_filter():
t = twarc.Twarc("consumer_key", "consumer_secret", "access_token",
"access_token_secret", http_errors=3, validate_keys=False)
with pytest.raises(requests.exceptions.HTTPError):
next(t.filter(track="test"))
def test_retweets():
assert len(list(T.retweets('795972820413140992'))) == 2
def test_oembed():
t = next(T.search('obama'))
url = 'https://twitter.com/{}/status/{}'.format(t['user']['screen_name'], t['id_str'])
tweet_json = T.oembed(url)
assert url == tweet_json['url']
def test_oembed_params():
t = next(T.search('obama'))
url = 'https://twitter.com/{}/status/{}'.format(t['user']['screen_name'], t['id_str'])
tweet_json = T.oembed(url, theme="dark")
assert 'data-theme="dark"' in tweet_json['html']
def test_replies():
# this test will look at trending hashtags, and do a search
# to find a popular tweet that uses it, and then makes a
# big assumption that someone must have responded to the tweet
# get the top hashtag that is trending
trends = T.trends_place("1")[0]["trends"]
trends.sort(key=lambda a: a['tweet_volume'] or 0, reverse=True)
top_hashtag = trends[0]["name"].strip('#')
logging.info("top hashtag %s" % top_hashtag)
tries = 0
for top_tweet in T.search(top_hashtag, result_type="popular"):
logging.info("testing %s" % top_tweet['id_str'])
# get replies to the top tweet
replies = T.replies(top_tweet)
# the first tweet should be the base tweet, or the tweet that
# we are looking for replies to
me = next(replies)
assert me['id_str'] == top_tweet['id_str']
try:
reply = next(replies)
assert reply['in_reply_to_status_id_str'] == top_tweet['id_str']
break
except StopIteration:
pass # didn't find a reply
tries += 1
if tries > 10:
break
def test_lists_members():
slug = 'bots'
screen_name = 'edsu'
members = list(T.list_members(slug=slug, owner_screen_name=screen_name))
assert len(members) > 0
assert members[0]['screen_name']
def test_lists_members_owner_id():
slug = 'bots'
owner_id = '14331818'
members = list(T.list_members(slug=slug, owner_id=owner_id))
assert len(members) > 0
assert members[0]['screen_name']
def test_lists_list_id():
members = list(T.list_members(list_id='197880909'))
assert len(members) > 0
assert members[0]['screen_name']
def test_extended_compat():
t_compat = twarc.Twarc(tweet_mode="compat")
assert 'full_text' in next(T.search('obama'))
assert 'text' in next(t_compat.search("obama"))
assert 'full_text' in next(T.timeline(screen_name="BarackObama"))
assert 'text' in next(t_compat.timeline(screen_name="BarackObama"))
def test_invalid_credentials():
old_consumer_key = T.consumer_key
T.consumer_key = None
with pytest.raises(RuntimeError):
T.validate_keys()
T.consumer_key = 'Definitely not a valid key'
with pytest.raises(RuntimeError):
T.validate_keys()
T.consumer_key = old_consumer_key