-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtest.py
executable file
·68 lines (55 loc) · 1.43 KB
/
test.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
#!/usr/bin/env python3
import sys
import os
import time
import socket
import subprocess
import os
from contextlib import contextmanager
from indradb import Client
HOST = "localhost:27615"
@contextmanager
def server(env):
"""
Context manager for running the server. This starts the server up, waits
until its responsive, then yields. When the context manager's execution is
resumed, it kills the server.
"""
# Start the process
server_proc = subprocess.Popen(
["cargo", "run", "--bin", "indradb-server"],
cwd=os.path.join(".", "indradb_server"),
stdout=sys.stdout,
stderr=sys.stderr,
env=env
)
while True:
try:
Client(HOST).ping()
break
except:
print("server not yet ready")
# Server is not yet responding to requests - let's make sure it's
# running in the first place
if server_proc.poll() != None:
raise Exception("Server failed to start")
time.sleep(1)
try:
yield
finally:
server_proc.terminate()
def main():
env = dict(os.environ)
env.update({
"RUST_BACKTRACE": "1",
"DATABASE_URL": "memory://",
"INDRADB_HOST": HOST
})
with server(env):
subprocess.run(
["pytest", "tests", *sys.argv[1:]],
env=env,
check=True,
)
if __name__ == "__main__":
main()