-
Notifications
You must be signed in to change notification settings - Fork 292
/
refresh_test_responses.py
executable file
·44 lines (35 loc) · 1.15 KB
/
refresh_test_responses.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
#!/usr/bin/env python
import os.path
import json
import urllib
import urlparse
RAWPATH = 'onebusaway-android\src\instrumentTest\res\raw'
URIMAP = os.path.join(RAWPATH, 'urimap.json')
API_HOST = 'api.onebusaway.org'
API_PARAMS = [('key', 'TEST'), ('version', '2')]
def _real_url(url):
parsed = urlparse.urlparse(url)
# Append any query parameters
qs = urlparse.parse_qsl(parsed.query)
qs = urllib.urlencode(qs + API_PARAMS)
# Put everything back together
result = urlparse.urlunparse(('http', API_HOST, parsed.path, '', qs, ''))
return result
def main():
# Read the URI Map, and construct a real URL out of the mock URL.
urimap = json.load(open(URIMAP))
uris = urimap['uris']
for path, dest in uris.iteritems():
url = _real_url(path)
if not dest.startswith('__'):
destfile = os.path.join(RAWPATH, dest + '.json')
print destfile
urllib.urlretrieve(url, destfile)
print """
-----
Responses updated with the latest server data.
Go back to Android Studio, refresh the onebusaway-android project and re-run the unit tests.
-----
"""
if __name__ == '__main__':
main()