-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathtest_00_setup_ui.py
147 lines (97 loc) · 3.4 KB
/
test_00_setup_ui.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
import csv
from sh import temboard
def test_start_ui(agent, ui, browser):
# Start UI ASAP to save some times.
pass
def test_setproctitle_script():
from sh import python3
python3('ui/temboardui/toolkit/proctitle.py')
def test_setproctitle_inline():
from sh import python3
python3(
c='import temboardui.toolkit.proctitle as pc; pc.test_main()',
_env={"PYTHONPATH": "/usr/lib/temboard"}
)
def test_setproctitle_module():
from sh import python3
python3(
m='temboardui.toolkit.proctitle',
_env={"PYTHONPATH": "/usr/lib/temboard"}
)
def test_temboard_version():
out = temboard('--version')
assert 'temBoard ' in out
assert 'Python ' in out
assert 'Tornado ' in out
assert 'psycopg2 ' in out
assert 'libpq ' in out
assert 'SQLAlchemy ' in out
def test_temboard_help():
temboard('--help')
def test_routes(ui_auto_configure, ui_sudo):
assert '/login' in ui_sudo.temboard.routes()
assert '/statements' in ui_sudo.temboard.routes('--sort')
def test_migratedb(ui_auto_configure):
temboard('migratedb', 'check')
def test_tasks_run(ui_auto_configure):
out = temboard.tasks.run("?")
assert '\ncollector\n' in out
def test_signing_key(ui):
response = ui.get('/signing.key')
response.raise_for_status()
def test_apikey_lifecycle(ui_auto_configure, ui_sudo):
out = ui_sudo.temboard.apikey.create()
reader = csv.reader(out)
header = next(reader)
assert 'Id' in header
assert 'Secret' in header
assert 'Comment' in header
assert 'Expiration' in header
key = next(reader)
out = ui_sudo.temboard.apikey.list()
reader = csv.reader(out)
for row in reader:
if row[0] == key[0]:
break
else:
assert False, "Key not listed"
ui_sudo.temboard.apikey.delete(key[0])
out = ui_sudo.temboard.apikey.list()
secret = key[1]
assert secret not in out
ui_sudo.temboard.apikey.purge()
def test_proctitle(ui):
if b'sudo' in ui.proc.cmd[0]: # CI case
ppid = ui.proc.pid
with open(f"/proc/{ppid}/task/{ppid}/children") as fo:
children = fo.read()
pid = int(children)
else: # dev case
pid = ui.proc.pid
with open(f"/proc/{pid}/cmdline") as fo:
cmdline = fo.read()
assert cmdline.startswith('temboard: web')
with open(f"/proc/{pid}/task/{pid}/children") as fo:
children = fo.read()
children = children.split()
for childpid in children:
with open(f"/proc/{childpid}/cmdline") as fo:
cmdline = fo.read().rstrip('\0')
if not cmdline: # Zombie
continue
assert cmdline.startswith('temboard: '), cmdline
assert ': worker' in cmdline or ': scheduler' in cmdline
def test_autossl(ui):
http_url = ui.base_url.copy_with(scheme='http')
response = ui.get(http_url)
assert 301 == response.status_code
assert response.headers['location'].startswith('https://')
def test_login_logout(browser, ui, ui_url):
browser.get(ui_url + '/')
browser.select("#inputUsername").send_keys("admin")
browser.select("#inputPassword").send_keys("admin")
browser.select("button[type=submit]").click()
# Assert link to instances exists.
browser.select("a[href='/settings/instances']")
browser.select("li.nav-item.dropdown a").click()
browser.select("a[href='/logout']").click()