forked from sanic-org/sanic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_cli.py
371 lines (309 loc) · 9.92 KB
/
test_cli.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
import json
import os
import sys
from pathlib import Path
from typing import List, Optional, Tuple
from unittest.mock import patch
import pytest
from sanic_routing import __version__ as __routing_version__
from sanic import __version__
from sanic.__main__ import main
from sanic.cli.inspector_client import InspectorClient
from .conftest import get_port
@pytest.fixture(scope="module", autouse=True)
def tty():
orig = sys.stdout.isatty
sys.stdout.isatty = lambda: False
yield
sys.stdout.isatty = orig
def capture(command: List[str], caplog=None, capsys=None):
if capsys:
capsys.readouterr()
if caplog:
caplog.clear()
os.chdir(Path(__file__).parent)
try:
main(command)
except SystemExit:
...
if capsys:
captured_err = capsys.readouterr()
return captured_err
if caplog:
return [record.message for record in caplog.records]
return None
def read_app_info(lines: List[str]):
for line in lines:
if line.startswith("{") and line.endswith("}"): # type: ignore
return json.loads(line)
@pytest.mark.parametrize(
"appname,extra",
(
("fake.server.app", None),
("fake.server", None),
("fake.server:create_app", "--factory"),
("fake.server.create_app()", None),
("fake.server.create_app", None),
),
)
def test_server_run(
appname: str, extra: Optional[str], caplog: pytest.LogCaptureFixture, port
):
command = [appname, f"-p={port}"]
if extra:
command.append(extra)
lines = capture(command, caplog)
assert f"Goin' Fast @ http://127.0.0.1:{port}" in lines
@pytest.mark.parametrize(
"command",
(
["fake.server.create_app_with_args", "--factory"],
["fake.server.create_app_with_args"],
),
)
def test_server_run_factory_with_args(caplog, command, port):
command.append(f"-p={port}")
lines = capture(command, caplog)
assert "target=fake.server.create_app_with_args" in lines
def test_server_run_factory_with_args_arbitrary(caplog, port):
command = [
"fake.server.create_app_with_args",
"--factory",
"--foo=bar",
f"-p={port}",
]
lines = capture(command, caplog)
assert "foo=bar" in lines
@pytest.mark.parametrize(
"cmd",
(
(
"--cert=certs/sanic.example/fullchain.pem",
"--key=certs/sanic.example/privkey.pem",
),
(
"--tls=certs/sanic.example/",
"--tls=certs/localhost/",
),
(
"--tls=certs/sanic.example/",
"--tls=certs/localhost/",
"--tls-strict-host",
),
),
)
def test_tls_options(cmd: Tuple[str, ...], caplog, port):
command = [
"fake.server.app",
*cmd,
f"--port={port}",
"--debug",
"--single-process",
]
lines = capture(command, caplog)
assert f"Goin' Fast @ https://127.0.0.1:{port}" in lines
@pytest.mark.parametrize(
"cmd",
(
("--cert=certs/sanic.example/fullchain.pem",),
(
"--cert=certs/sanic.example/fullchain.pem",
"--key=certs/sanic.example/privkey.pem",
"--tls=certs/localhost/",
),
("--tls-strict-host",),
),
)
def test_tls_wrong_options(cmd: Tuple[str, ...], caplog, port):
command = ["fake.server.app", *cmd, f"-p={port}", "--debug"]
lines = capture(command, caplog)
assert (
"TLS certificates must be specified by either of:\n "
"--cert certdir/fullchain.pem --key certdir/privkey.pem\n "
"--tls certdir (equivalent to the above)"
) in lines
@pytest.mark.parametrize(
"cmd",
(
("--host=localhost", "--port={port}"),
("-H", "localhost", "-p", "{port}"),
),
)
def test_host_port_localhost(cmd: Tuple[str, ...], caplog, port):
cmd = [c.format(port=str(port)) for c in cmd]
command = ["fake.server.app", *cmd]
lines = capture(command, caplog)
expected = f"Goin' Fast @ http://localhost:{port}"
assert expected in lines
@pytest.mark.parametrize(
"cmd,expected",
(
(
("--host=localhost", "--port={port}"),
"Goin' Fast @ http://localhost:{port}",
),
(
("-H", "localhost", "-p", "{port}"),
"Goin' Fast @ http://localhost:{port}",
),
(
("--host=127.0.0.1", "--port={port}"),
"Goin' Fast @ http://127.0.0.1:{port}",
),
(
("-H", "127.0.0.1", "-p", "{port}"),
"Goin' Fast @ http://127.0.0.1:{port}",
),
(("--host=::", "--port={port}"), "Goin' Fast @ http://[::]:{port}"),
(("-H", "::", "-p", "{port}"), "Goin' Fast @ http://[::]:{port}"),
(("--host=::1", "--port={port}"), "Goin' Fast @ http://[::1]:{port}"),
(("-H", "::1", "-p", "{port}"), "Goin' Fast @ http://[::1]:{port}"),
),
)
def test_host_port(cmd: Tuple[str, ...], expected: str, caplog, port):
cmd = [c.format(port=str(port)) for c in cmd]
expected = expected.format(port=str(port))
command = ["fake.server.app", *cmd]
lines = capture(command, caplog)
assert expected in lines
@pytest.mark.parametrize(
"num,cmd",
(
(1, (f"--workers={1}",)),
(2, (f"--workers={2}",)),
(4, (f"--workers={4}",)),
(1, ("-w", "1")),
(2, ("-w", "2")),
(4, ("-w", "4")),
),
)
def test_num_workers(num: int, cmd: Tuple[str, ...], caplog, port):
command = ["fake.server.app", *cmd, f"-p={port}"]
lines = capture(command, caplog)
if num == 1:
expected = "mode: production, single worker"
else:
expected = f"mode: production, w/ {num} workers"
assert expected in lines
@pytest.mark.parametrize("cmd", ("--debug",))
def test_debug(cmd: str, caplog, port):
command = ["fake.server.app", cmd, f"-p={port}"]
lines = capture(command, caplog)
info = read_app_info(lines)
assert info["debug"] is True
assert info["auto_reload"] is False
@pytest.mark.parametrize("cmd", ("--dev", "-d"))
def test_dev(cmd: str, caplog, port):
command = ["fake.server.app", cmd, f"-p={port}"]
lines = capture(command, caplog)
info = read_app_info(lines)
assert info["debug"] is True
assert info["auto_reload"] is True
@pytest.mark.parametrize("cmd", ("--auto-reload", "-r"))
def test_auto_reload(cmd: str, caplog, port):
command = ["fake.server.app", cmd, f"-p={port}"]
lines = capture(command, caplog)
info = read_app_info(lines)
assert info["debug"] is False, f"Unexpected value of debug {info}"
assert (
info["auto_reload"] is True
), f"Unexpected value of auto reload {info}"
@pytest.mark.parametrize(
"cmd,expected",
(
("", False),
("--debug", True),
("--access-log", True),
("--no-access-log", False),
),
)
def test_access_logs(cmd: str, expected: bool, caplog, port):
command = ["fake.server.app", f"-p={port}"]
if cmd:
command.append(cmd)
lines = capture(command, caplog)
print(lines)
info = read_app_info(lines)
if info["access_log"] != expected:
print(lines)
assert (
info["access_log"] is expected
), f"Expected: {expected}. Received: {info}. Lines: {lines}"
@pytest.mark.parametrize("cmd", ("--version", "-v"))
def test_version(cmd: str, caplog, capsys):
command = [cmd]
capture(command, caplog)
version_string = f"Sanic {__version__}; Routing {__routing_version__}\n"
out, _ = capsys.readouterr()
assert version_string == out
@pytest.mark.parametrize(
"cmd,expected",
(
("--noisy-exceptions", True),
("--no-noisy-exceptions", False),
),
)
def test_noisy_exceptions(cmd: str, expected: bool, caplog, port):
command = ["fake.server.app", cmd, f"-p={port}"]
lines = capture(command, caplog)
info = read_app_info(lines)
assert info["noisy_exceptions"] is expected
def test_inspector_inspect(urlopen, caplog, capsys):
urlopen.read.return_value = json.dumps(
{
"result": {
"info": {
"packages": ["foo"],
},
"extra": {
"more": "data",
},
"workers": {"Worker-Name": {"some": "state"}},
}
}
).encode()
with patch("sys.argv", ["sanic", "inspect"]):
capture(["inspect"], caplog)
captured = capsys.readouterr()
assert "Inspecting @ http://localhost:6457" in captured.out
assert "Worker-Name" in captured.out
assert captured.err == ""
@pytest.mark.parametrize(
"command,params",
(
(["reload"], {"zero_downtime": False}),
(["reload", "--zero-downtime"], {"zero_downtime": True}),
(["shutdown"], {}),
(["scale", "9"], {"replicas": 9}),
(["foo", "--bar=something"], {"bar": "something"}),
(["foo", "--bar"], {"bar": True}),
(["foo", "--no-bar"], {"bar": False}),
(["foo", "positional"], {"args": ["positional"]}),
(
["foo", "positional", "--bar=something"],
{"args": ["positional"], "bar": "something"},
),
),
)
def test_inspector_command(command, params):
with patch.object(InspectorClient, "request") as client:
with patch("sys.argv", ["sanic", "inspect", *command]):
main()
client.assert_called_once_with(command[0], **params)
def test_server_run_with_repl(caplog, capsys):
record = (
"sanic.error",
40,
"Can't start REPL in non-interactive mode. "
"You can only run with --repl in a TTY.",
)
def run():
command = ["fake.server.app", "--repl", f"-p={get_port()}"]
return capture(command, capsys=capsys)
with patch("sanic.cli.app.is_atty", return_value=True):
result = run()
assert record not in caplog.record_tuples
assert "Welcome to the Sanic interactive console" in result.err
assert ">>> " in result.out
run()
assert record in caplog.record_tuples