]> jfr.im git - z_archive/twitter.git/blame - tests/test_sanity.py
refacto test
[z_archive/twitter.git] / tests / test_sanity.py
CommitLineData
f0603331
MV
1# encoding: utf-8
2from __future__ import unicode_literals
e541e268 3
9999744f 4import os
e541e268 5from random import choice
c77b5e4b 6import time
ed23f46c
MV
7import pickle
8import json
e541e268 9
32a4811d 10from twitter import Twitter, NoAuth, OAuth, read_token_file, TwitterHTTPError
ed23f46c 11from twitter.api import TwitterDictResponse, TwitterListResponse
e541e268
MV
12from twitter.cmdline import CONSUMER_KEY, CONSUMER_SECRET
13
14noauth = NoAuth()
15oauth = OAuth(*read_token_file('tests/oauth_creds')
2cf5509c 16 + (CONSUMER_KEY, CONSUMER_SECRET))
17
920528cd
MV
18twitter11 = Twitter(domain='api.twitter.com',
19 auth=oauth,
20 api_version='1.1')
e541e268 21
1ff50236 22twitter11_na = Twitter(domain='api.twitter.com',
23 auth=noauth,
24 api_version='1.1')
e541e268
MV
25
26AZaz = "abcdefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ"
27
2cf5509c 28
e541e268
MV
29def get_random_str():
30 return ''.join(choice(AZaz) for _ in range(10))
31
32
c075046b
R
33def test_API_set_tweet(unicod=False):
34 random_tweet = "A random tweet %s" % \
35 ("with unicode üøπ" if unicod else "") + get_random_str()
2cf5509c 36 twitter11.statuses.update(status=random_tweet)
f0603331 37 time.sleep(5)
4a803760 38 recent = twitter11.statuses.home_timeline()
e541e268 39 assert recent
c77b5e4b
SK
40 assert isinstance(recent.rate_limit_remaining, int)
41 assert isinstance(recent.rate_limit_reset, int)
f0603331
MV
42 texts = [tweet['text'] for tweet in recent]
43 assert random_tweet in texts
e541e268 44
066c34e0 45def test_API_set_unicode_tweet():
c075046b 46 test_API_set_tweet(unicod=True)
066c34e0 47
48
9999744f
R
49def clean_link(text):
50 pos = text.find(" http://t.co")
51 if pos != -1:
52 return text[:pos]
53 return text
54
55__location__ = os.path.realpath(
56 os.path.join(os.getcwd(), os.path.dirname(__file__)))
57
58def test_API_set_unicode_twitpic(base64=False):
59 random_tweet = "A random twitpic from %s with unicode üøπ" % \
60 ("base64" if base64 else "file") + get_random_str()
61 if base64:
62 img = b"iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAIAAACQkWg2AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB94JFhMBAJv5kaUAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAA4UlEQVQoz7WSIZLGIAxG6c5OFZjianBcIOfgPkju1DsEBWfAUEcNGGpY8Xe7dDoVFRvHfO8NJGRorZE39UVe1nd/WNfVObcsi3OOEAIASikAmOf5D2q/FWPUWgshKKWfiFIqhNBaxxhPjPQ05/z+Bs557xw9hBC89ymlu5BS8t6HEC5NW2sR8alRRLTWXoRSSinlSejT12M9BAAAgCeoTw9BSimlfBIu6WdYtVZEVErdaaUUItZaL/9wOsaY83YAMMb0dGtt6Jdv3/ec87ZtOWdCCGNsmibG2DiOJzP8+7b+AAOmsiPxyHWCAAAAAElFTkSuQmCC"
63 else:
64 with open(os.path.join(__location__, "test.png"), "rb") as f:
65 img = f.read()
66 params = {"status": random_tweet, "media[]": img}
67 if base64:
68 params["_base64"] = True
69 twitter11.statuses.update_with_media(**params)
70 time.sleep(5)
71 recent = twitter11.statuses.home_timeline()
72 assert recent
73 texts = [clean_link(tweet['text']) for tweet in recent]
74 assert random_tweet in texts
75
76def test_API_set_unicode_twitpic_base64():
77 test_API_set_unicode_twitpic(base64=True)
78
79
652c5402 80def test_search():
fcf08b18 81 # In 1.1, search works on api.twitter.com not search.twitter.com
82 # and requires authorisation
ed074882 83 results = twitter11.search.tweets(q='foo')
652c5402 84 assert results
e748eed8 85
86
87def test_get_trends():
88 # This is one method of inserting parameters, using named
89 # underscore params.
c6e1e349 90 world_trends = twitter11.trends.available(_woeid=1)
e748eed8 91 assert world_trends
92
93
94def test_get_trends_2():
95 # This is a nicer variation of the same call as above.
2cf5509c 96 world_trends = twitter11.trends._(1)
e748eed8 97 assert world_trends
920528cd
MV
98
99
100def test_get_trends_3():
101 # Of course they broke it all again in 1.1...
102 assert twitter11.trends.place(_id=1)
103
ed23f46c 104
32a4811d
HN
105def test_TwitterHTTPError_raised_for_invalid_oauth():
106 test_passed = False
107 try:
108 twitter11_na.statuses.mentions_timeline()
109 except TwitterHTTPError:
110 # this is the error we are looking for :)
111 test_passed = True
112 assert test_passed
ed23f46c
MV
113
114
115def test_picklability():
116 res = TwitterDictResponse({'a': 'b'})
117 p = pickle.dumps(res)
118 res2 = pickle.loads(p)
119 assert res == res2
120 assert res2['a'] == 'b'
121
122 res = TwitterListResponse([1, 2, 3])
123 p = pickle.dumps(res)
124 res2 = pickle.loads(p)
125 assert res == res2
126 assert res2[2] == 3
127
128
129def test_jsonifability():
130 res = TwitterDictResponse({'a': 'b'})
131 p = json.dumps(res)
132 res2 = json.loads(p)
133 assert res == res2
134 assert res2['a'] == 'b'
135
136 res = TwitterListResponse([1, 2, 3])
137 p = json.dumps(res)
138 res2 = json.loads(p)
139 assert res == res2
140 assert res2[2] == 3