-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_runtime_binary_dependency.py
52 lines (31 loc) · 1.51 KB
/
test_runtime_binary_dependency.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
#!/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_runtime_linux_binary_dependency():
print("Starting binary_dependency linux runtime test...")
token = os.environ.get('GENEZIO_TOKEN')
genezio_login(token)
os.chdir("./projects/binary-dependency-runtime/")
deploy_result = genezio_deploy(deploy_frontend=False, args=["--install-deps"])
assert deploy_result.return_code == 0, "genezio deploy returned non-zero exit code"
assert deploy_result.project_url != "", "genezio deploy returned empty project url"
os.chdir("./client/")
status, output = run_node_script("test-binary-dependency.js")
assert status == 0, "Node test script returned non-zero exit code"
assert output == "Ok\n", "Node script returned wrong output"
os.chdir("../")
process = genezio_local(args=["--install-deps"])
assert process != None, "genezio local returned None"
os.chdir("./client/")
status, output = run_node_script("test-binary-dependency.js")
assert status == 0, "Node test script returned non-zero exit code"
assert output == "Ok\n", "Node script 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_runtime_linux_binary_dependency()