-
Notifications
You must be signed in to change notification settings - Fork 0
/
tester.py
128 lines (114 loc) · 4.35 KB
/
tester.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
import httplib2
import sys
import json
import sys
import codecs
sys.stdout = codecs.getwriter('utf8')(sys.stdout)
sys.stderr = codecs.getwriter('utf8')(sys.stderr)
print "Running Endpoint Tester....\n"
address = raw_input("Please enter the address of the server you want to access, \n If left blank the connection will be set to 'http://localhost:5000': ")
if address == '':
address = 'http://localhost:5000'
try:
print "Test 1: Creating new Restaurants......"
url = address + '/restaurants?location=Buenos+Aires+Argentina&mealType=Sushi'
h = httplib2.Http()
resp, result = h.request(url,'POST')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
print json.loads(result)
url = address + '/restaurants?location=Denver+Colorado&mealType=Soup'
h = httplib2.Http()
resp, result = h.request(url,'POST')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
print json.loads(result)
url = address + '/restaurants?location=Prague+Czech+Republic&mealType=Crepes'
h = httplib2.Http()
resp, result = h.request(url,'POST')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
print json.loads(result).iteritems()
url = address + '/restaurants?location=Shanghai+China&mealType=Sandwiches'
h = httplib2.Http()
resp, result = h.request(url,'POST')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
print json.loads(result)
url = address + '/restaurants?location=Nairobi+Kenya&mealType=Pizza'
h = httplib2.Http()
resp, result = h.request(url,'POST')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
print json.loads(result)
except Exception as err:
print "Test 1 FAILED: Could not add new restaurants"
print err.args
sys.exit()
else:
print "Test 1 PASS: Succesfully Made all new restaurants"
#TEST TWO -- READ ALL RESTAURANTS
try:
print "Attempting Test 2: Reading all Restaurants..."
url = address + "/restaurants"
h = httplib2.Http()
resp, result = h.request(url,'GET')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
all_result = json.loads(result)
print result
except Exception as err:
print "Test 2 FAILED: Could not retrieve restaurants from server"
print err.args
sys.exit()
else:
print "Test 2 PASS: Succesfully read all restaurants"
try:
print "Attempting Test 3: Reading the last created restaurant..."
result = all_result
restID = result['restaurants'][len(result['restaurants'])-1]['id']
url = address + "/restaurants/%s" % restID
h = httplib2.Http()
resp, result = h.request(url,'GET')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
print json.loads(result)
except Exception as err:
print "Test 3 FAILED: Could not retrieve restaurant from server"
print err.args
sys.exit()
else:
print "Test 3 PASS: Succesfully read last restaurant"
try:
print "Attempting Test 4: Changing the name, image, and address of the first restaurant to Udacity..."
result = all_result
restID = result['restaurants'][0]['id']
url = address + "/restaurants/%s?name=Udacity&address=2465+Latham+Street+Mountain+View+CA&image=https://media.glassdoor.com/l/70/82/fc/e8/students-first.jpg" % restID
h = httplib2.Http()
resp, result = h.request(url,'PUT')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
print json.loads(result)
except Exception as err:
print "Test 4 FAILED: Could not update restaurant from server"
print err.args
sys.exit()
else:
print "Test 4 PASS: Succesfully updated first restaurant"
try:
print "Attempting Test 5: Deleteing the second restaurant from the server..."
result = all_result
restID = result['restaurants'][1]['id']
url = address + "/restaurants/%s" % restID
h = httplib2.Http()
resp, result = h.request(url,'DELETE')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
print result
except Exception as err:
print "Test 5 FAILED: Could not delete restaurant from server"
print err.args
sys.exit()
else:
print "Test 5 PASS: Succesfully updated first restaurant"
print "ALL TESTS PASSED!"