-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_todo_list.py
45 lines (28 loc) · 1.2 KB
/
test_todo_list.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
#!/usr/bin/python3
import os
from genezio import genezio_deploy, genezio_login, genezio_local, genezio_delete
from utils import run_node_script, kill_process
def test_todo_list():
print("Starting todo_list test...")
token = os.environ.get('GENEZIO_TOKEN')
genezio_login(token)
os.chdir("./projects/todo-list/")
deploy_result = genezio_deploy(False)
assert deploy_result.return_code == 0, "genezio deploy returned non-zero exit code"
assert deploy_result.project_url != "", "genezio deploy returned empty project url"
process = genezio_local()
assert process != None, "genezio local returned None"
os.chdir("./client/")
status, output = run_node_script("test-todo-list.js")
assert status == 0, "Node test script returned non-zero exit code"
components = output.split("\n")
for i in range(0, 8):
assert components[i] == "Ok", "Component " + str(i) + " returned wrong output"
kill_process(process)
os.chdir("../")
print("Prepared to delete project...")
genezio_delete(deploy_result.project_id)
print("Test passed!")
# Test order matters because the commands are having side effects.
if __name__ == '__main__':
test_todo_list()