-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtest_all.py
executable file
·701 lines (543 loc) · 21.2 KB
/
test_all.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
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
#!/usr/bin/env python3
import unittest
import json
import os
import os.path as path
import signal
import subprocess
import sys
import typing
import urllib.error
import urllib.request
connection: typing.Dict[str, typing.Union[str, int]] = {
"host": "localhost",
"management_port": 8080,
"http_port": 8000,
"grpc_port": 9000,
"coap_port": 5683,
}
tf_process: typing.Optional[subprocess.Popen] = None # type: ignore
src_path = "."
fn_path = path.join(src_path, "test", "fns")
script_path = path.join(src_path, "scripts")
grpc_api_path = path.join(src_path, "pkg", "grpc", "tinyfaas")
sys.path.append(grpc_api_path)
def setUpModule() -> None:
"""start tinyfaas instance"""
# call make clean
try:
subprocess.run(["make", "clean"], cwd=src_path, check=True, capture_output=True)
except subprocess.CalledProcessError as e:
print(f"Failed to clean up:\n{e.stderr.decode('utf-8')}")
# start tinyfaas
try:
env = os.environ.copy()
env["HTTP_PORT"] = str(connection["http_port"])
env["GRPC_PORT"] = str(connection["grpc_port"])
env["COAP_PORT"] = str(connection["coap_port"])
global tf_process
# find architecture and operating system
uname = os.uname()
if uname.machine == "x86_64":
arch = "amd64"
elif uname.machine == "arm64" or uname.machine == "aarch64":
arch = "arm64"
else:
raise Exception(f"Unsupported architecture: {uname.machine}")
if uname.sysname == "Linux":
os_name = "linux"
elif uname.sysname == "Darwin":
os_name = "darwin"
else:
raise Exception(f"Unsupported operating system: {uname.sysname}")
tf_binary = path.join(src_path, f"tinyfaas-{os_name}-{arch}")
# os.makedirs(path.join(src_path, "tmp"), exist_ok=True)
with open(path.join(".", "tf_test.out"), "w") as f:
tf_process = subprocess.Popen(
[tf_binary],
cwd=src_path,
env=env,
stdout=f,
stderr=f,
)
except subprocess.CalledProcessError as e:
print(f"Failed to start:\n{e.stderr.decode('utf-8')}")
# wait for tinyfaas to start
while True:
try:
urllib.request.urlopen(
f"http://{connection['host']}:{connection['management_port']}/"
)
break
except urllib.error.HTTPError:
break
except Exception:
continue
# wait for tinyfaas to start
while True:
try:
urllib.request.urlopen(
f"http://{connection['host']}:{connection['http_port']}/"
)
break
except urllib.error.HTTPError:
break
except Exception:
continue
return
def tearDownModule() -> None:
"""stop tinyfaas instance"""
# call wipe-functions.sh
try:
subprocess.run(
["./wipe-functions.sh"], cwd=script_path, check=True, capture_output=True
)
except subprocess.CalledProcessError as e:
print(f"Failed to wipe functions:\n{e.stderr.decode('utf-8')}")
# stop tinyfaas
# with open(path.join(src_path, "tmp", "tf_test.out"), "w") as f:
# f.write(tf_process.stdout.read())
# f.write(tf_process.stderr.read())
try:
tf_process.send_signal(signal.SIGINT) # type: ignore
tf_process.wait(timeout=1) # type: ignore
tf_process.terminate() # type: ignore
except subprocess.CalledProcessError as e:
print(f"Failed to stop:\n{e.stderr.decode('utf-8')}")
except subprocess.TimeoutExpired:
print("Failed to stop: Timeout expired")
# call make clean
try:
subprocess.run(["make", "clean"], cwd=src_path, check=True, capture_output=True)
except subprocess.CalledProcessError as e:
print(f"Failed to clean up:\n{e.stderr.decode('utf-8')}")
return
def startFunction(folder_name: str, fn_name: str, env: str, threads: int) -> str:
"""starts a function, returns name"""
# get full path of folder
folder_name = os.path.abspath(folder_name)
# use the upload.sh script
try:
subprocess.run(
["./upload.sh", folder_name, fn_name, env, str(threads)],
cwd=script_path,
check=True,
capture_output=True,
)
except subprocess.CalledProcessError as e:
print(f"Failed to upload function {fn_name}:\n{e.stderr.decode('utf-8')}")
raise e
return fn_name
class TinyFaaSTest(unittest.TestCase):
@classmethod
def setUpClass(cls) -> None:
super(TinyFaaSTest, cls).setUpClass()
def setUp(self) -> None:
global connection
self.host = connection["host"]
self.http_port = connection["http_port"]
self.grpc_port = connection["grpc_port"]
self.coap_port = connection["coap_port"]
class TestSieve(TinyFaaSTest):
fn = ""
@classmethod
def setUpClass(cls) -> None:
cls.fn = startFunction(
path.join(fn_path, "sieve-of-eratosthenes"), "sieve", "nodejs", 1
)
def setUp(self) -> None:
super(TestSieve, self).setUp()
self.fn = TestSieve.fn
def test_invoke_http(self) -> None:
"""invoke a function"""
# make a request to the function
res = urllib.request.urlopen(
f"http://{self.host}:{self.http_port}/{self.fn}", timeout=10
)
# check the response
self.assertEqual(res.status, 200)
return
def test_invoke_http_async(self) -> None:
"""invoke a function async"""
# make an async request to the function
req = urllib.request.Request(
f"http://{self.host}:{self.http_port}/{self.fn}",
headers={"X-tinyFaaS-Async": "true"},
)
res = urllib.request.urlopen(req, timeout=10)
# check the response
self.assertEqual(res.status, 202)
return
def test_invoke_coap(self) -> None:
"""invoke a function with CoAP"""
try:
import asyncio
import aiocoap # type: ignore
except ImportError:
self.skipTest(
"aiocoap is not installed -- if you want to run CoAP tests, install the dependencies in requirements.txt"
)
return
msg = aiocoap.Message(
code=aiocoap.GET, uri=f"coap://{self.host}:{self.coap_port}/{self.fn}"
)
async def main() -> aiocoap.Message:
protocol = await aiocoap.Context.create_client_context()
response = await protocol.request(msg).response
await protocol.shutdown()
return response
response = asyncio.run(main())
self.assertIsNotNone(response)
self.assertEqual(response.code, aiocoap.CONTENT)
return
def test_invoke_grpc(self) -> None:
"""invoke a function"""
try:
import grpc # type: ignore
except ImportError:
self.skipTest(
"grpc is not installed -- if you want to run gRPC tests, install the dependencies in requirements.txt"
)
import tinyfaas_pb2
import tinyfaas_pb2_grpc
with grpc.insecure_channel(f"{self.host}:{self.grpc_port}") as channel:
stub = tinyfaas_pb2_grpc.TinyFaaSStub(channel)
response = stub.Request(tinyfaas_pb2.Data(functionIdentifier=self.fn))
self.assertIsNotNone(response)
self.assertIsNot(response.response, "")
class TestEcho(TinyFaaSTest):
fn = ""
@classmethod
def setUpClass(cls) -> None:
super(TestEcho, cls).setUpClass()
cls.fn = startFunction(path.join(fn_path, "echo"), "echo", "python3", 1)
def setUp(self) -> None:
super(TestEcho, self).setUp()
self.fn = TestEcho.fn
def test_invoke_http(self) -> None:
"""invoke a function"""
# make a request to the function with a payload
payload = "Hello World!"
req = urllib.request.Request(
f"http://{self.host}:{self.http_port}/{self.fn}",
data=payload.encode("utf-8"),
)
res = urllib.request.urlopen(req, timeout=10)
# check the response
self.assertEqual(res.status, 200)
self.assertEqual(res.read().decode("utf-8"), payload)
return
def test_invoke_coap(self) -> None:
"""invoke a function with CoAP"""
try:
import asyncio
import aiocoap
except ImportError:
self.skipTest(
"aiocoap is not installed -- if you want to run CoAP tests, install the dependencies in requirements.txt"
)
return
# make a request to the function with a payload
payload = "Hello World!"
msg = aiocoap.Message(
code=aiocoap.GET,
uri=f"coap://{self.host}:{self.coap_port}/{self.fn}",
payload=payload.encode("utf-8"),
)
async def main() -> aiocoap.Message:
protocol = await aiocoap.Context.create_client_context()
response = await protocol.request(msg).response
await protocol.shutdown()
return response
response = asyncio.run(main())
self.assertIsNotNone(response)
self.assertEqual(response.code, aiocoap.CONTENT)
self.assertEqual(response.payload.decode("utf-8"), payload)
return
def test_invoke_grpc(self) -> None:
"""invoke a function"""
try:
import grpc
except ImportError:
self.skipTest(
"grpc is not installed -- if you want to run gRPC tests, install the dependencies in requirements.txt"
)
import tinyfaas_pb2
import tinyfaas_pb2_grpc
# make a request to the function with a payload
payload = "Hello World!"
with grpc.insecure_channel(f"{self.host}:{self.grpc_port}") as channel:
stub = tinyfaas_pb2_grpc.TinyFaaSStub(channel)
response = stub.Request(
tinyfaas_pb2.Data(functionIdentifier=self.fn, data=payload)
)
self.assertIsNotNone(response)
self.assertEqual(response.response, payload)
class TestEchoJS(TinyFaaSTest):
fn = ""
@classmethod
def setUpClass(cls) -> None:
super(TestEchoJS, cls).setUpClass()
cls.fn = startFunction(path.join(fn_path, "echo-js"), "echojs", "nodejs", 1)
def setUp(self) -> None:
super(TestEchoJS, self).setUp()
self.fn = TestEchoJS.fn
def test_invoke_http(self) -> None:
"""invoke a function"""
# make a request to the function with a payload
payload = "Hello World!"
req = urllib.request.Request(
f"http://{self.host}:{self.http_port}/{self.fn}",
data=payload.encode("utf-8"),
)
res = urllib.request.urlopen(req, timeout=10)
# check the response
self.assertEqual(res.status, 200)
self.assertEqual(res.read().decode("utf-8"), payload)
return
def test_invoke_coap(self) -> None:
"""invoke a function with CoAP"""
try:
import asyncio
import aiocoap
except ImportError:
self.skipTest(
"aiocoap is not installed -- if you want to run CoAP tests, install the dependencies in requirements.txt"
)
return
# make a request to the function with a payload
payload = "Hello World!"
msg = aiocoap.Message(
code=aiocoap.GET,
uri=f"coap://{self.host}:{self.coap_port}/{self.fn}",
payload=payload.encode("utf-8"),
)
async def main() -> aiocoap.Message:
protocol = await aiocoap.Context.create_client_context()
response = await protocol.request(msg).response
await protocol.shutdown()
return response
response = asyncio.run(main())
self.assertIsNotNone(response)
self.assertEqual(response.code, aiocoap.CONTENT)
self.assertEqual(response.payload.decode("utf-8"), payload)
return
def test_invoke_grpc(self) -> None:
"""invoke a function"""
try:
import grpc
except ImportError:
self.skipTest(
"grpc is not installed -- if you want to run gRPC tests, install the dependencies in requirements.txt"
)
import tinyfaas_pb2
import tinyfaas_pb2_grpc
# make a request to the function with a payload
payload = "Hello World!"
with grpc.insecure_channel(f"{self.host}:{self.grpc_port}") as channel:
stub = tinyfaas_pb2_grpc.TinyFaaSStub(channel)
response = stub.Request(
tinyfaas_pb2.Data(functionIdentifier=self.fn, data=payload)
)
self.assertIsNotNone(response)
self.assertEqual(response.response, payload)
class TestBinary(TinyFaaSTest):
fn = ""
@classmethod
def setUpClass(cls) -> None:
super(TestBinary, cls).setUpClass()
cls.fn = startFunction(
path.join(fn_path, "echo-binary"), "echobinary", "binary", 1
)
def setUp(self) -> None:
super(TestBinary, self).setUp()
self.fn = TestBinary.fn
def test_invoke_http(self) -> None:
"""invoke a function"""
# make a request to the function with a payload
payload = "Hello World!"
req = urllib.request.Request(
f"http://{self.host}:{self.http_port}/{self.fn}",
data=payload.encode("utf-8"),
)
res = urllib.request.urlopen(req, timeout=10)
# check the response
self.assertEqual(res.status, 200)
self.assertEqual(res.read().decode("utf-8"), payload)
return
def test_invoke_coap(self) -> None:
"""invoke a function with CoAP"""
try:
import asyncio
import aiocoap
except ImportError:
self.skipTest(
"aiocoap is not installed -- if you want to run CoAP tests, install the dependencies in requirements.txt"
)
return
# make a request to the function with a payload
payload = "Hello World!"
msg = aiocoap.Message(
code=aiocoap.GET,
uri=f"coap://{self.host}:{self.coap_port}/{self.fn}",
payload=payload.encode("utf-8"),
)
async def main() -> aiocoap.Message:
protocol = await aiocoap.Context.create_client_context()
response = await protocol.request(msg).response
await protocol.shutdown()
return response
response = asyncio.run(main())
self.assertIsNotNone(response)
self.assertEqual(response.code, aiocoap.CONTENT)
self.assertEqual(response.payload.decode("utf-8"), payload)
return
def test_invoke_grpc(self) -> None:
"""invoke a function"""
try:
import grpc
except ImportError:
self.skipTest(
"grpc is not installed -- if you want to run gRPC tests, install the dependencies in requirements.txt"
)
import tinyfaas_pb2
import tinyfaas_pb2_grpc
# make a request to the function with a payload
payload = "Hello World!"
with grpc.insecure_channel(f"{self.host}:{self.grpc_port}") as channel:
stub = tinyfaas_pb2_grpc.TinyFaaSStub(channel)
response = stub.Request(
tinyfaas_pb2.Data(functionIdentifier=self.fn, data=payload)
)
self.assertIsNotNone(response)
self.assertEqual(response.response, payload)
class TestShowHeadersJS(TinyFaaSTest):
fn = ""
@classmethod
def setUpClass(cls) -> None:
super(TestShowHeadersJS, cls).setUpClass()
cls.fn = startFunction(
path.join(fn_path, "show-headers-js"), "headersjs", "nodejs", 1
)
def setUp(self) -> None:
super(TestShowHeadersJS, self).setUp()
self.fn = TestShowHeadersJS.fn
def test_invoke_http(self) -> None:
"""invoke a function"""
# make a request to the function with a custom headers
req = urllib.request.Request(
f"http://{self.host}:{self.http_port}/{self.fn}",
headers={"lab": "scalable_software_systems_group"},
)
res = urllib.request.urlopen(req, timeout=10)
# check the response
self.assertEqual(res.status, 200)
response_body = res.read().decode("utf-8")
response_json = json.loads(response_body)
self.assertIn("lab", response_json)
self.assertEqual(
response_json["lab"], "scalable_software_systems_group"
) # custom header
self.assertIn("user-agent", response_json)
self.assertIn("Python-urllib", response_json["user-agent"]) # python client
return
# def test_invoke_coap(self) -> None: # CoAP does not support headers
def test_invoke_grpc(self) -> None:
"""invoke a function"""
try:
import grpc
except ImportError:
self.skipTest(
"grpc is not installed -- if you want to run gRPC tests, install the dependencies in requirements.txt"
)
import tinyfaas_pb2
import tinyfaas_pb2_grpc
# make a request to the function with a payload
payload = ""
metadata = (("lab", "scalable_software_systems_group"),)
with grpc.insecure_channel(f"{self.host}:{self.grpc_port}") as channel:
stub = tinyfaas_pb2_grpc.TinyFaaSStub(channel)
response = stub.Request(
tinyfaas_pb2.Data(functionIdentifier=self.fn, data=payload),
metadata=metadata,
)
response_json = json.loads(response.response)
self.assertIn("lab", response_json)
self.assertEqual(
response_json["lab"], "scalable_software_systems_group"
) # custom header
self.assertIn("user-agent", response_json)
self.assertIn("grpc-python", response_json["user-agent"]) # client header
class TestShowHeaders(
TinyFaaSTest
): # Note: In Python, the http.server module (and many other HTTP libraries) automatically capitalizes the first character of each word in the header keys.
fn = ""
@classmethod
def setUpClass(cls) -> None:
super(TestShowHeaders, cls).setUpClass()
cls.fn = startFunction(
path.join(fn_path, "show-headers"), "headers", "python3", 1
)
def setUp(self) -> None:
super(TestShowHeaders, self).setUp()
self.fn = TestShowHeaders.fn
def test_invoke_http(self) -> None:
"""invoke a function"""
# make a request to the function with a custom headers
req = urllib.request.Request(
f"http://{self.host}:{self.http_port}/{self.fn}",
headers={"Lab": "scalable_software_systems_group"},
)
res = urllib.request.urlopen(req, timeout=10)
# check the response
self.assertEqual(res.status, 200)
response_body = res.read().decode("utf-8")
response_json = json.loads(response_body)
self.assertIn("Lab", response_json)
self.assertEqual(
response_json["Lab"], "scalable_software_systems_group"
) # custom header
self.assertIn("User-Agent", response_json)
self.assertIn("Python-urllib", response_json["User-Agent"]) # python client
return
# def test_invoke_coap(self) -> None: # CoAP does not support headers, instead you have
def test_invoke_grpc(self) -> None:
"""invoke a function"""
try:
import grpc
except ImportError:
self.skipTest(
"grpc is not installed -- if you want to run gRPC tests, install the dependencies in requirements.txt"
)
import tinyfaas_pb2
import tinyfaas_pb2_grpc
# make a request to the function with a payload
payload = ""
metadata = (("lab", "scalable_software_systems_group"),)
with grpc.insecure_channel(f"{self.host}:{self.grpc_port}") as channel:
stub = tinyfaas_pb2_grpc.TinyFaaSStub(channel)
response = stub.Request(
tinyfaas_pb2.Data(functionIdentifier=self.fn, data=payload),
metadata=metadata,
)
response_json = json.loads(response.response)
self.assertIn("Lab", response_json)
self.assertEqual(
response_json["Lab"], "scalable_software_systems_group"
) # custom header
self.assertIn("User-Agent", response_json)
self.assertIn("grpc-python", response_json["User-Agent"]) # client header
if __name__ == "__main__":
# check that make is installed
try:
subprocess.run(["make", "--version"], check=True, capture_output=True)
except subprocess.CalledProcessError as e:
print(f"Make is not installed:\n{e.stderr.decode('utf-8')}")
sys.exit(1)
# check that Docker is working
try:
subprocess.run(["docker", "ps"], check=True, capture_output=True)
except subprocess.CalledProcessError as e:
print(f"Docker is not installed or not working:\n{e.stderr.decode('utf-8')}")
sys.exit(1)
unittest.main() # run all tests