forked from udacity/OAuth2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathendpoints_tester3.py
101 lines (84 loc) · 2.98 KB
/
endpoints_tester3.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
import httplib2
import json
import sys
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'
# Making a POST Request
print "Making a POST request to /puppies..."
try:
url = address + "/puppies?name=Fido&description=Playful+Little+Puppy"
h = httplib2.Http()
resp, result = h.request(url, 'POST')
obj = json.loads(result)
puppyID = obj['Puppy']['id']
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
except Exception as err:
print "Test 1 FAILED: Could not make POST Request to web server"
print err.args
sys.exit()
else:
print "Test 1 PASS: Succesfully Made POST Request to /puppies"
# Making a GET Request
print "Making a GET Request for /puppies..."
try:
url = address + "/puppies"
h = httplib2.Http()
resp, result = h.request(url, 'GET')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
except Exception as err:
print "Test 2 FAILED: Could not make GET Request to web server"
print err.args
sys.exit()
else:
print "Test 2 PASS: Succesfully Made GET Request to /puppies"
# Making GET Requests to /puppies/id
print "Making GET requests to /puppies/id "
try:
id = puppyID
url = address + "/puppies/%s" % id
h = httplib2.Http()
resp, result = h.request(url, 'GET')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
except Exception as err:
print "Test 3 FAILED: Could not make GET Requests to web server"
print err.args
sys.exit()
else:
print "Test 3 PASS: Succesfully Made GET Request to /puppies/id"
# Making a PUT Request
print "Making PUT requests to /puppies/id "
try:
id = puppyID
url = address + "/puppies/%s?name=wilma&description=A+sleepy+bundle+of+joy" % id
h = httplib2.Http()
resp, result = h.request(url, 'PUT')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
except Exception as err:
print "Test 4 FAILED: Could not make PUT Request to web server"
print err.args
sys.exit()
else:
print "Test 4 PASS: Succesfully Made PUT Request to /puppies/id"
# Making a DELETE Request
print "Making DELETE requests to /puppies/id ... "
try:
id = puppyID
url = address + "/puppies/%s" % id
h = httplib2.Http()
resp, result = h.request(url, 'DELETE')
if resp['status'] != '200':
raise Exception('Received an unsuccessful status code of %s' % resp['status'])
except Exception as err:
print "Test 5 FAILED: Could not make DELETE Requests to web server"
print err.args
sys.exit()
else:
print "Test 5 PASS: Succesfully Made DELETE Request to /puppies/id"
print "ALL TESTS PASSED!!"