-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_webhooks.py
60 lines (38 loc) · 1.92 KB
/
test_webhooks.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
#!/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_webhooks():
print("Starting webhook test...")
token = os.environ.get('GENEZIO_TOKEN')
genezio_login(token)
os.chdir("./projects/webhook/")
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"
assert len(deploy_result.web_urls) == 4, "incorrect number of web urls exported"
os.chdir("./client/")
status, output = run_node_script("test-webhook-example.js", deploy_result.web_urls)
components = output.split("\n")
assert components[0] == "Ok", "Component 0 returned wrong output"
assert components[1] == 'text in body', "Component 1 returned wrong output"
assert components[2] == "{ name: 'John' }", "Component 2 returned wrong output"
assert components[3] == "contents of file", "Component 3 returned wrong output"
os.chdir("../")
process = genezio_local()
assert process != None, "genezio local returned None"
os.chdir("./client/")
status, output = run_node_script("test-webhook-example.js", deploy_result.web_urls)
components = output.split("\n")
assert components[0] == "Ok", "Component 0 returned wrong output"
assert components[1] == 'text in body', "Component 1 returned wrong output"
assert components[2] == "{ name: 'John' }", "Component 2 returned wrong output"
assert components[3] == "contents of file", "Component 3 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_webhooks()