This repository has been archived by the owner on Jan 3, 2018. It is now read-only.
forked from mdornseif/appengine-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resttest_dsl.py
418 lines (350 loc) · 15.4 KB
/
resttest_dsl.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
# encoding: utf-8
"""
DSL zur beschreibung von REST-interfaces, angelehnt an https://gist.github.com/805540
Copyright (c) 2011, 2013 HUDORA. All rights reserved.
File created by Philipp Benjamin Koeppchen on 2011-02-23
"""
import optparse
import os
import sys
import time
import urlparse
import xml.dom.minidom
from collections import Counter
from pprint import pprint
import huTools.http._httplib2 # for ServerNotFoundError
from huTools import hujson2
from huTools.http import fetch
BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8)
FOREGROUND = 30
RESET_SEQ = "\033[0m"
COLOR_SEQ = "\033[1;%dm"
DEFAULTFAST = int(os.environ.get('DEFAULTFAST_MS', 1500))
NO_LINK_VALIDATION = False # superss LINK validation
NO_HTML_VALIDATION = False # superss HTML validation
# save slowest access to each URL
slowstats = Counter()
alllinks = Counter()
oklinks = set()
brokenlinks = {}
def colored(text, color):
"""Färbt den Text mit Terminalsequenzen ein.
>>> colored('whatever', RED)
'\033[1;32mwhatever\033[0m' # wuerde dann in rot erscheinen, wenn man es ausgibt
"""
start = COLOR_SEQ % (FOREGROUND + color)
return start + text + RESET_SEQ
class Response(object):
"""Repräsentiert das Ergebnis einer REST-Anfrage.
Mittels responds_* koennen zusicherungen geprueft werden:
r.responds_http_status(200)
r.responds_html()
"""
def __init__(self, client, method, url, status, headers, content, duration): # pylint: disable=R0913
self.client = client
self.method = method
self.url = url
self.status = status
self.headers = headers
self.content = content
self.errors = 0
self.duration = duration
def fail(self, message):
"""Negatives ergebnis einer Zusicherung."""
self.errors += 1
print '%s %s -> %s: %s' % (self.method, self.url, colored("FAIL", RED), message)
print '=' * 50
print "<<<",
pprint(self.headers)
if self.client.debug:
print "<<<",
print self.content
print '=' * 50
print
def succeed(self, message):
"""Positives ergebnis einer Zusicherung."""
if self.client.debug:
print '%s %s -> %s: %s' % (self.method, self.url, colored("SUCCESS", GREEN), message)
def expect_condition(self, condition, message):
"""sichert eine boolsche bedingung zu. sollte nicht direkt aufgerufen werden"""
if not condition:
self.fail(message)
else:
self.succeed(message)
# low-level-beschreibungen der erwartungen
def responds_http_status(self, expected_status):
"""sichert zu, dass mit dem gegebenen HTTP-status geantwortet wurde."""
self.expect_condition(
self.status == expected_status,
'expected status %s, got %s' % (expected_status, self.status))
return self
def responds_content_type(self, expected_type):
"""sichert zu, dass mit dem gegebenen Content-Type geantwortet wurde."""
actual_type = self.headers.get('content-type')
# evtl wird dem contenttype ein encoding nachgestellt, dies soll abgetrennt werden
actual_type = actual_type.split(';')[0]
self.expect_condition(
actual_type == expected_type,
'expected content type %r, got %r' % (expected_type, actual_type))
return self
def converter_succeeds(self, converter, message):
"""sichert zu, dass content mittels converter(self.content) ohne exception konvertiert werden kann"""
try:
converter(self.content)
except Exception:
self.fail(message)
else:
self.succeed(message)
# high-level-beschreibungen
def responds_json(self):
"""sichert zu, dass die Antwort ein well-formed JSON-Dokument war."""
self.responds_http_status(200)
self.responds_content_type('application/json')
self.converter_succeeds(hujson2.loads, 'expected valid json')
return self
def responds_xml(self):
"""sichert zu, dass die Antwort ein well-formed XML-Dokument war."""
self.responds_http_status(200)
self.responds_content_type('application/xml')
self.converter_succeeds(xml.dom.minidom.parseString, 'expected valid xml')
return self
def responds_rssxml(self):
"""sichert zu, dass die Antwort ein well-formed RSS+XML-Dokument war."""
self.responds_http_status(200)
self.responds_content_type('application/rss+xml')
self.converter_succeeds(xml.dom.minidom.parseString, 'expected valid rss+xml')
return self
def responds_plaintext(self):
"""sichert zu, dass die Antwort ein Plaintext-Dokument war."""
self.responds_http_status(200)
self.responds_content_type('text/plain')
return self
def responds_html(self):
"""sichert zu, dass die Antwort ein HTML-Dokument war."""
self.responds_http_status(200)
self.responds_content_type('text/html')
return self
def responds_not_found(self):
"""sichert zu, dass kein Dokument gefunden wurde."""
self.responds_http_status(404)
return self
def responds_access_denied(self):
"""sichert zu, dass der Zugriff verweigert wurde."""
self.responds_http_status(401)
return self
def responds_forbidden(self):
"""sichert zu, dass der Zugriff verweigert wurde."""
self.responds_http_status(403)
return self
def responds_unauthorized(self):
"""sichert zu, dass der Zugriff verweigert wurde."""
self.responds_http_status(403)
def redirects_to(self, expected_url):
"""sichert zu, dass mit einen Redirect geantwortet wurde."""
location = self.headers.get('location', self.headers.get('content-location', ''))
self.expect_condition(
location.endswith(expected_url), 'expected redirect to %s, got %s' % (expected_url, location))
def responds_with_content_location(self, expected_location):
"""sichert zu, dass die Antwort einen location-header hat."""
content_location = self.headers.get('content-location', '')
self.expect_condition(
content_location.endswith(expected_location),
'expected content-location to end with %r, got %r.' % (expected_location, content_location))
return self
def responds_fast(self, maxduration=DEFAULTFAST):
"""sichert zu, dass der Zugriff schnell geht (unter maxduration ms)."""
self.expect_condition(
self.duration <= maxduration,
'expected answer within %d ms, took %d ms' % (maxduration, self.duration))
return self
def responds_with_valid_links(self):
if NO_LINK_VALIDATION:
return self
links = extract_links(self.content, self.url)
for link in links:
if link in brokenlinks:
# no need to check again
brokenlinks.setdefault(link, set()).add(self.url)
elif link not in oklinks:
try:
status, _responseheaders, _content = fetch(
link,
headers=dict(
referer=self.url, Cookie=self.headers.get('set-cookie', '')
),
content='', method='GET', multipart=False, ua='', timeout=30)
except (IOError, huTools.http._httplib2.ServerNotFoundError):
status = 600
except (huTools.http._httplib2.RedirectLimit):
status = 700
if status == 200:
oklinks.add(link)
else:
brokenlinks.setdefault(link, set()).add(self.url)
if status == 700:
print 'too many redirects on %s' % link
self.expect_condition(
status in (200, 401, 405, 700), 'invalid (%r) link to %r' % (status, link))
def responds_with_valid_html(self):
if NO_HTML_VALIDATION:
return self
try:
from tidylib import tidy_document
document, errors = tidy_document(
self.content, options={'numeric-entities': 1, 'input-encoding': 'utf8'})
if errors:
print "### {0} see http://validator.w3.org/nu/?doc={0}".format(self.url)
contentlines = self.content.split('\n')
for errorline in errors.split('\n'):
address = errorline.split('-')[0]
errortext = '-'.join(errorline.split('-')[1:])
if address:
line, linenr, column, colnr = address.split()
if 'trimming empty <p' not in errortext and 'inserting implicit ' not in errortext:
print "line {0}:{1} {2}".format(linenr, colnr, errortext),
print repr(contentlines[int(linenr) - 1])
except (ImportError, OSError):
pass
return self
def responds_normal(self, maxduration=DEFAULTFAST, links=True):
"""Normale Seite: Status 200, HTML, schnelle Antwort, keine kaputten Links"""
self.responds_html()
# self.responds_with_valid_html()
self.responds_fast(maxduration)
if links:
self.responds_with_valid_links()
return self
def responds_with_html_to_valid_auth(self):
"""
Stellt sicher, dass der Request nur mit gueltiger Authentifizierung
funktioniert und ansonsten der Zugriff verweigert wird.
"""
self.responds_http_status(401)
path = urlparse.urlparse(self.url).path
self.client.GET(path, auth='user').responds_html()
def responds_with_json_to_valid_auth(self):
"""stellt sicher, das der Request nur mit gueltiger Authentifizierung
funktioniert und ansonsten der Zugriff verweigert wird."""
self.responds_http_status(401)
path = urlparse.urlparse(self.url).path
self.client.GET(path, auth='user').responds_json()
class TestClient(object):
"""Hilfsklasse zum Ausfuehren von HTTP-Requests im Rahmen von Tests."""
def __init__(self, host, users, debug=False):
self.debug = debug
self.host = host
self.authdict = {}
self.responses = []
self.protocol = 'http'
for user in users:
key, creds = user.split('=', 1)
self.add_credentials(key, creds)
def add_credentials(self, auth, creds):
"""Stellt dem Client credentials zur Verfügung, die in GET genutzt werden können.
auth: key der Credentials
creds: HTTP-Credentials in der Form 'username:password'
"""
self.authdict[auth] = creds
def GET(self, path, auth=None, accept=None, headers={}):
"""Führt einen HTTP-GET auf den gegebenen [path] aus.
Nutzt dabei ggf. die credentials zu [auth] und [accept]."""
if auth and auth not in self.authdict:
raise ValueError("Unknown auth '%s'" % auth)
myheaders = {}
if accept:
myheaders['Accept'] = accept
myheaders.update(headers)
url = urlparse.urlunparse((self.protocol, self.host, path, '', '', ''))
# try request several times if it is slow to get rid of network jitter
counter = 0
duration = 100001
while counter < 5 and duration >= DEFAULTFAST:
if counter > 1:
if duration > 10:
break # solw API pages etc we test only once
if self.debug:
print "retry request because of %d ms duration" % duration
else:
sys.stdout.write('.')
sys.stdout.flush()
time.sleep(1.5)
start = time.time()
status, responseheaders, content = fetch(
url, content='', method='GET',
credentials=self.authdict.get(auth),
headers=myheaders, multipart=False, ua='resttest', timeout=30)
duration = int((time.time() - start) * 1000)
slowstats[url] = duration
counter += 1
response = Response(self, 'GET', url, status, responseheaders, content, duration)
self.responses.append(response)
return response
def POST(self, path, content, auth=None, headers={}):
"""Führt einen HTTP-GET auf den gegebenen [path] aus.
Nutzt dabei ggf. die credentials zu [auth] und [accept]."""
if auth and auth not in self.authdict:
raise ValueError("Unknown auth '%s'" % auth)
url = urlparse.urlunparse((self.protocol, self.host, path, '', '', ''))
start = time.time()
status, responseheaders, content = fetch(
url, content=content, method='GET',
credentials=self.authdict.get(auth),
headers=headers, multipart=False, ua='resttest', timeout=30)
duration = int((time.time() - start) * 1000)
response = Response(self, 'GET', url, status, responseheaders, content, duration)
self.responses.append(response)
return response
@property
def errors(self):
"""Anzahl der fehlgeschlagenen Zusicherungen, die für Anfragen dieses Clients gefroffen wurden."""
return sum(r.errors for r in self.responses)
def extract_links(content, url):
import lxml.html
links = []
dom = lxml.html.document_fromstring(content, base_url=url)
dom.make_links_absolute(url)
for element, _attribute, link, _pos in dom.iterlinks():
if link.startswith('http'):
if element.tag == 'form' and element.get('method'):
if element.get('method').upper() == 'POST':
continue
links.append(link)
alllinks[link] += 1
return links
def get_app_version():
"""Ermittelt die Aktuell zu deployende Version."""
# Der dümmste YAML parser der Welt.
for line in open('app.yaml'):
if line.startswith('version: '):
version = line.split()[1]
return version.strip()
raise RuntimeError("Can't detect version")
def create_testclient_from_cli(default_hostname, users):
""" Creates a Testclient with it's arguments from the Commandline.
the CLI understands the options, --hostname, --credentials-user, --credentials-admin, their default
values are taken from this functions args
default_hostname: hostname, on wich to run tests, if none is provided via CLI
returns a `TestClient`
"""
parser = optparse.OptionParser()
parser.add_option(
'-H', '--hostname', dest='hostname',
help='Hostname, on which the tests should be run',
default=default_hostname)
parser.add_option(
'-u', '--credentials-user', dest='users', action='append', default=[],
help='user credentials for HTTP Basic Auth')
parser.add_option(
'-d', '--debug', dest='debug', default=False, action='store_true')
opts, args = parser.parse_args()
if args:
parser.error('positional arguments are not accepted')
if os.environ.get('RESTTESTHOST'):
default_hostname = os.environ.get('RESTTESTHOST')
# Das `or` sorgen dafür, dass --option='' als 'nicht angegeben' gewertet wird, siehe aufruf im Makefile.
if users is None:
users = []
if opts.users:
users.extend(opts.users)
client = TestClient(opts.hostname or default_hostname, users=users, debug=opts.debug)
return client