-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest-client.py
executable file
·598 lines (511 loc) · 21.2 KB
/
test-client.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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
#!/usr/bin/env python3
import argparse
import json
import re
import socket
import time
import tornado.httpclient
import tornado.websocket
import websocket
_TIME_REGEX = r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}[+-]\d{2}:\d{2}$'
_PROTO = None
_BASE_URL = None
_PATH_PREFIX = None
_AUTHORIZATION_HEADER = None
_DEBUG = False
_SKIP_ACTIONS_EVENTS = False
_SKIP_WEBSOCKET = False
def get_ip():
"""
Get the default local IP address.
From: https://stackoverflow.com/a/28950776
"""
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
try:
s.connect(('10.255.255.255', 1))
ip = s.getsockname()[0]
except (socket.error, IndexError):
ip = '127.0.0.1'
finally:
s.close()
return ip
def http_request(method, path, data=None):
"""
Send an HTTP request to the server.
method -- request method, i.e. 'GET'
path -- request path
data -- optional data to include
"""
url = _PROTO + '://' + _BASE_URL + _PATH_PREFIX + path
url = url.rstrip('/')
client = tornado.httpclient.HTTPClient()
fake_host = 'localhost'
if ':' in _BASE_URL:
fake_host += ':' + _BASE_URL.split(':')[1]
headers = {
'Host': fake_host,
'Accept': 'application/json',
}
if _DEBUG:
if data is None:
print('Request: {} {}'.format(method, url))
else:
print('Request: {} {}\n {}'.format(method, url, data))
if _AUTHORIZATION_HEADER is not None:
headers['Authorization'] = _AUTHORIZATION_HEADER
if data is None:
request = tornado.httpclient.HTTPRequest(
url,
method=method,
headers=headers,
)
else:
headers['Content-Type'] = 'application/json'
request = tornado.httpclient.HTTPRequest(
url,
method=method,
headers=headers,
body=json.dumps(data),
)
response = client.fetch(request, raise_error=False)
if response.body:
if _DEBUG:
print('Response: {} {}\n'
.format(response.code, response.body.decode()))
return response.code, json.loads(response.body.decode())
else:
if _DEBUG:
print('Response: {}\n'.format(response.code))
return response.code, None
def lists_equal(a, b):
if len(a) != len(b):
return False
intersection = set(a) & set(b)
return len(intersection) == len(a)
def run_client():
"""Test the web thing server."""
# Test thing description
code, body = http_request('GET', '/')
assert code == 200
assert body['id'] == 'urn:dev:ops:my-lamp-1234'
assert body['title'] == 'My Lamp'
assert body['security'] == 'nosec_sc'
assert body['securityDefinitions']['nosec_sc']['scheme'] == 'nosec'
assert body['@context'] == 'https://webthings.io/schemas'
assert lists_equal(body['@type'], ['OnOffSwitch', 'Light'])
assert body['description'] == 'A web connected lamp'
assert body['properties']['on']['@type'] == 'OnOffProperty'
assert body['properties']['on']['title'] == 'On/Off'
assert body['properties']['on']['type'] == 'boolean'
assert body['properties']['on']['description'] == 'Whether the lamp is turned on'
assert len(body['properties']['on']['links']) == 1
assert body['properties']['on']['links'][0]['href'] == _PATH_PREFIX + '/properties/on'
assert body['properties']['brightness']['@type'] == 'BrightnessProperty'
assert body['properties']['brightness']['title'] == 'Brightness'
assert body['properties']['brightness']['type'] == 'integer'
assert body['properties']['brightness']['description'] == 'The level of light from 0-100'
assert body['properties']['brightness']['minimum'] == 0
assert body['properties']['brightness']['maximum'] == 100
assert body['properties']['brightness']['unit'] == 'percent'
assert len(body['properties']['brightness']['links']) == 1
assert body['properties']['brightness']['links'][0]['href'] == _PATH_PREFIX + '/properties/brightness'
if not _SKIP_ACTIONS_EVENTS:
assert body['actions']['fade']['title'] == 'Fade'
assert body['actions']['fade']['description'] == 'Fade the lamp to a given level'
assert body['actions']['fade']['input']['type'] == 'object'
assert body['actions']['fade']['input']['properties']['brightness']['type'] == 'integer'
assert body['actions']['fade']['input']['properties']['brightness']['minimum'] == 0
assert body['actions']['fade']['input']['properties']['brightness']['maximum'] == 100
assert body['actions']['fade']['input']['properties']['brightness']['unit'] == 'percent'
assert body['actions']['fade']['input']['properties']['duration']['type'] == 'integer'
assert body['actions']['fade']['input']['properties']['duration']['minimum'] == 1
assert body['actions']['fade']['input']['properties']['duration']['unit'] == 'milliseconds'
assert len(body['actions']['fade']['links']) == 1
assert body['actions']['fade']['links'][0]['href'] == _PATH_PREFIX + '/actions/fade'
assert body['events']['overheated']['type'] == 'number'
assert body['events']['overheated']['unit'] == 'degree celsius'
assert body['events']['overheated']['description'] == 'The lamp has exceeded its safe operating temperature'
assert len(body['events']['overheated']['links']) == 1
assert body['events']['overheated']['links'][0]['href'] == _PATH_PREFIX + '/events/overheated'
if _SKIP_ACTIONS_EVENTS:
assert len(body['links']) >= 1
assert body['links'][0]['rel'] == 'properties'
assert body['links'][0]['href'] == _PATH_PREFIX + '/properties'
remaining_links = body['links'][1:]
else:
assert len(body['links']) >= 3
assert body['links'][0]['rel'] == 'properties'
assert body['links'][0]['href'] == _PATH_PREFIX + '/properties'
assert body['links'][1]['rel'] == 'actions'
assert body['links'][1]['href'] == _PATH_PREFIX + '/actions'
assert body['links'][2]['rel'] == 'events'
assert body['links'][2]['href'] == _PATH_PREFIX + '/events'
remaining_links = body['links'][3:]
if not _SKIP_WEBSOCKET:
assert len(remaining_links) >= 1
ws_href = None
for link in remaining_links:
if link['rel'] != 'alternate':
continue
if 'mediaType' in link:
assert link['mediaType'] == 'text/html'
assert link['href'] == _PATH_PREFIX
else:
proto = 'wss' if _PROTO == 'https' else 'ws'
assert re.match(proto + r'://[^/]+' + _PATH_PREFIX, link['href'])
ws_href = link['href']
assert ws_href is not None
# Test properties
code, body = http_request('GET', '/properties')
assert code == 200
assert body['brightness'] == 50
assert body['on']
code, body = http_request('GET', '/properties/brightness')
assert code == 200
assert body['brightness'] == 50
code, body = http_request('PUT', '/properties/brightness', {'brightness': 25})
assert code == 200
assert body['brightness'] == 25
code, body = http_request('GET', '/properties/brightness')
assert code == 200
assert body['brightness'] == 25
if not _SKIP_ACTIONS_EVENTS:
# Test events
code, body = http_request('GET', '/events')
assert code == 200
assert len(body) == 0
# Test actions
code, body = http_request('GET', '/actions')
assert code == 200
assert len(body) == 0
code, body = http_request(
'POST',
'/actions',
{
'fade': {},
})
assert code == 400
code, body = http_request(
'POST',
'/actions',
{
'fade': {
'input': {},
},
})
assert code == 400
code, body = http_request(
'POST',
'/actions',
{
'fade': {
'input': {
'brightness': 50,
'duration': 2000,
},
},
})
assert code == 201
assert body['fade']['input']['brightness'] == 50
assert body['fade']['input']['duration'] == 2000
assert body['fade']['href'].startswith(_PATH_PREFIX + '/actions/fade/')
assert body['fade']['status'] == 'created'
action_id = body['fade']['href'].split('/')[-1]
# Wait for the action to complete
time.sleep(2.5)
code, body = http_request('GET', '/actions')
assert code == 200
assert len(body) == 1
assert len(body[0].keys()) == 1
assert body[0]['fade']['input']['brightness'] == 50
assert body[0]['fade']['input']['duration'] == 2000
assert body[0]['fade']['href'] == _PATH_PREFIX + '/actions/fade/' + action_id
assert re.match(_TIME_REGEX, body[0]['fade']['timeRequested']) is not None
assert re.match(_TIME_REGEX, body[0]['fade']['timeCompleted']) is not None
assert body[0]['fade']['status'] == 'completed'
code, body = http_request('GET', '/actions/fade')
assert code == 200
assert len(body) == 1
assert len(body[0].keys()) == 1
assert body[0]['fade']['input']['brightness'] == 50
assert body[0]['fade']['input']['duration'] == 2000
assert body[0]['fade']['href'] == _PATH_PREFIX + '/actions/fade/' + action_id
assert re.match(_TIME_REGEX, body[0]['fade']['timeRequested']) is not None
assert re.match(_TIME_REGEX, body[0]['fade']['timeCompleted']) is not None
assert body[0]['fade']['status'] == 'completed'
code, body = http_request('DELETE', '/actions/fade/' + action_id)
assert code == 204
assert body is None
# The action above generates an event, so check it.
code, body = http_request('GET', '/events')
assert code == 200
assert len(body) == 1
assert len(body[0].keys()) == 1
assert body[0]['overheated']['data'] == 102
assert re.match(_TIME_REGEX, body[0]['overheated']['timestamp']) is not None
code, body = http_request('GET', '/events/overheated')
assert code == 200
assert len(body) == 1
assert len(body[0].keys()) == 1
assert body[0]['overheated']['data'] == 102
assert re.match(_TIME_REGEX, body[0]['overheated']['timestamp']) is not None
code, body = http_request(
'POST',
'/actions/fade',
{
'fade': {},
})
assert code == 400
code, body = http_request(
'POST',
'/actions/fade',
{
'fade': {
'input': {},
},
})
assert code == 400
code, body = http_request(
'POST',
'/actions/fade',
{
'fade': {
'input': {
'brightness': 50,
'duration': 2000,
},
},
})
assert code == 201
assert body['fade']['input']['brightness'] == 50
assert body['fade']['input']['duration'] == 2000
assert body['fade']['href'].startswith(_PATH_PREFIX + '/actions/fade/')
assert body['fade']['status'] == 'created'
action_id = body['fade']['href'].split('/')[-1]
# Wait for the action to complete
time.sleep(2.5)
code, body = http_request('GET', '/actions')
assert code == 200
assert len(body) == 1
assert len(body[0].keys()) == 1
assert body[0]['fade']['input']['brightness'] == 50
assert body[0]['fade']['input']['duration'] == 2000
assert body[0]['fade']['href'] == _PATH_PREFIX + '/actions/fade/' + action_id
assert re.match(_TIME_REGEX, body[0]['fade']['timeRequested']) is not None
assert re.match(_TIME_REGEX, body[0]['fade']['timeCompleted']) is not None
assert body[0]['fade']['status'] == 'completed'
code, body = http_request('GET', '/actions/fade')
assert code == 200
assert len(body) == 1
assert len(body[0].keys()) == 1
assert body[0]['fade']['input']['brightness'] == 50
assert body[0]['fade']['input']['duration'] == 2000
assert body[0]['fade']['href'] == _PATH_PREFIX + '/actions/fade/' + action_id
assert re.match(_TIME_REGEX, body[0]['fade']['timeRequested']) is not None
assert re.match(_TIME_REGEX, body[0]['fade']['timeCompleted']) is not None
assert body[0]['fade']['status'] == 'completed'
code, body = http_request('DELETE', '/actions/fade/' + action_id)
assert code == 204
assert body is None
if _SKIP_WEBSOCKET:
return
# Set up a websocket
ws = websocket.WebSocket()
if _AUTHORIZATION_HEADER is not None:
ws_href += '?jwt=' + _AUTHORIZATION_HEADER.split(' ')[1]
ws.connect(ws_href)
if _DEBUG:
orig_send = ws.send
orig_recv = ws.recv
def send(msg):
print('WS Send: {}'.format(msg))
return orig_send(msg)
def recv():
msg = orig_recv()
print('WS Recv: {}'.format(msg))
return msg
ws.send = send
ws.recv = recv
# Test setting property through websocket
ws.send(json.dumps({
'messageType': 'setProperty',
'data': {
'brightness': 10,
}
}))
message = json.loads(ws.recv())
assert message['messageType'] == 'propertyStatus'
assert message['data']['brightness'] == 10
code, body = http_request('GET', '/properties/brightness')
assert code == 200
assert body['brightness'] == 10
if _SKIP_ACTIONS_EVENTS:
return
# Test requesting action through websocket
ws.send(json.dumps({
'messageType': 'requestAction',
'data': {
'fade': {
'input': {
'brightness': 90,
'duration': 1000,
},
},
}
}))
# Handle any extra propertyStatus message first
while True:
message = json.loads(ws.recv())
if message['messageType'] == 'propertyStatus':
continue
break
assert message['messageType'] == 'actionStatus'
assert message['data']['fade']['input']['brightness'] == 90
assert message['data']['fade']['input']['duration'] == 1000
assert message['data']['fade']['href'].startswith(_PATH_PREFIX + '/actions/fade/')
assert message['data']['fade']['status'] == 'created'
message = json.loads(ws.recv())
assert message['messageType'] == 'actionStatus'
assert message['data']['fade']['input']['brightness'] == 90
assert message['data']['fade']['input']['duration'] == 1000
assert message['data']['fade']['href'].startswith(_PATH_PREFIX + '/actions/fade/')
assert message['data']['fade']['status'] == 'pending'
# These may come out of order
action_id = None
received = [False, False]
for _ in range(0, 2):
message = json.loads(ws.recv())
if message['messageType'] == 'propertyStatus':
assert message['data']['brightness'] == 90
received[0] = True
elif message['messageType'] == 'actionStatus':
assert message['data']['fade']['input']['brightness'] == 90
assert message['data']['fade']['input']['duration'] == 1000
assert message['data']['fade']['href'].startswith(_PATH_PREFIX + '/actions/fade/')
assert message['data']['fade']['status'] == 'completed'
action_id = message['data']['fade']['href'].split('/')[-1]
received[1] = True
else:
raise ValueError('Wrong message: {}'.format(message['messageType']))
for r in received:
assert r
code, body = http_request('GET', '/actions')
assert code == 200
assert len(body) == 1
assert len(body[0].keys()) == 1
assert body[0]['fade']['input']['brightness'] == 90
assert body[0]['fade']['input']['duration'] == 1000
assert body[0]['fade']['href'] == _PATH_PREFIX + '/actions/fade/' + action_id
assert re.match(_TIME_REGEX, body[0]['fade']['timeRequested']) is not None
assert re.match(_TIME_REGEX, body[0]['fade']['timeCompleted']) is not None
assert body[0]['fade']['status'] == 'completed'
code, body = http_request('GET', '/actions/fade/' + action_id)
assert code == 200
assert len(body.keys()) == 1
assert body['fade']['href'] == _PATH_PREFIX + '/actions/fade/' + action_id
assert re.match(_TIME_REGEX, body['fade']['timeRequested']) is not None
assert re.match(_TIME_REGEX, body['fade']['timeCompleted']) is not None
assert body['fade']['status'] == 'completed'
code, body = http_request('GET', '/events')
assert code == 200
assert len(body) == 3
assert len(body[2].keys()) == 1
assert body[2]['overheated']['data'] == 102
assert re.match(_TIME_REGEX, body[2]['overheated']['timestamp']) is not None
# Test event subscription through websocket
ws.send(json.dumps({
'messageType': 'addEventSubscription',
'data': {
'overheated': {},
}
}))
ws.send(json.dumps({
'messageType': 'requestAction',
'data': {
'fade': {
'input': {
'brightness': 100,
'duration': 500,
},
},
}
}))
message = json.loads(ws.recv())
assert message['messageType'] == 'actionStatus'
assert message['data']['fade']['input']['brightness'] == 100
assert message['data']['fade']['input']['duration'] == 500
assert message['data']['fade']['href'].startswith(_PATH_PREFIX + '/actions/fade/')
assert message['data']['fade']['status'] == 'created'
assert re.match(_TIME_REGEX, message['data']['fade']['timeRequested']) is not None
message = json.loads(ws.recv())
assert message['messageType'] == 'actionStatus'
assert message['data']['fade']['input']['brightness'] == 100
assert message['data']['fade']['input']['duration'] == 500
assert message['data']['fade']['href'].startswith(_PATH_PREFIX + '/actions/fade/')
assert message['data']['fade']['status'] == 'pending'
assert re.match(_TIME_REGEX, message['data']['fade']['timeRequested']) is not None
# These may come out of order
received = [False, False, False]
for _ in range(0, 3):
message = json.loads(ws.recv())
if message['messageType'] == 'propertyStatus':
assert message['data']['brightness'] == 100
received[0] = True
elif message['messageType'] == 'event':
assert message['data']['overheated']['data'] == 102
assert re.match(_TIME_REGEX, message['data']['overheated']['timestamp']) is not None
received[1] = True
elif message['messageType'] == 'actionStatus':
assert message['data']['fade']['input']['brightness'] == 100
assert message['data']['fade']['input']['duration'] == 500
assert message['data']['fade']['href'].startswith(_PATH_PREFIX + '/actions/fade/')
assert message['data']['fade']['status'] == 'completed'
assert re.match(_TIME_REGEX, message['data']['fade']['timeRequested']) is not None
assert re.match(_TIME_REGEX, message['data']['fade']['timeCompleted']) is not None
received[2] = True
for r in received:
assert r
ws.close()
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Web Thing test client.')
parser.add_argument('--protocol',
help='protocol, either http or https',
choices=['http', 'https'],
default='http')
parser.add_argument('--host',
help='server hostname or IP address',
default=get_ip())
parser.add_argument('--port',
help='server port',
type=int,
default=8888)
parser.add_argument('--path-prefix',
help='path prefix to get to thing description',
default='')
parser.add_argument('--auth-header',
help='authorization header, i.e. "Bearer ..."')
parser.add_argument('--skip-actions-events',
help='skip action and event tests',
action='store_true')
parser.add_argument('--skip-websocket',
help='skip WebSocket tests',
action='store_true')
parser.add_argument('--debug',
help='log all requests',
action='store_true')
args = parser.parse_args()
if (args.protocol == 'http' and args.port == 80) or \
(args.protocol == 'https' and args.port == 443):
_BASE_URL = args.host
else:
_BASE_URL = '{}:{}'.format(args.host, args.port)
if args.debug:
_DEBUG = True
if args.skip_actions_events:
_SKIP_ACTIONS_EVENTS = True
if args.skip_websocket:
_SKIP_WEBSOCKET = True
_PROTO = args.protocol
_PATH_PREFIX = args.path_prefix
_AUTHORIZATION_HEADER = args.auth_header
exit(run_client())