-
-
Notifications
You must be signed in to change notification settings - Fork 273
/
Copy pathtest_run.py
637 lines (524 loc) · 19.6 KB
/
test_run.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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
import builtins
import os
import stat
from pathlib import Path
from typing import Callable, Dict, Generator, List, Optional, Tuple
import pytest
import requests
from pytest import CaptureFixture
from pytest_mock import MockerFixture
from zulipterminal.api_types import ServerSettings
from zulipterminal.cli.run import (
NotAZulipOrganizationError,
_write_zuliprc,
exit_with_error,
get_login_label,
get_server_settings,
in_color,
main,
parse_args,
)
from zulipterminal.model import ServerConnectionFailure
from zulipterminal.version import ZT_VERSION
MODULE = "zulipterminal.cli.run"
CONTROLLER = MODULE + ".Controller"
os.environ["ZULIP_EDITOR_COMMAND"] = ""
@pytest.mark.parametrize(
"color, code",
[
("red", "\x1b[91m"),
("green", "\x1b[92m"),
("yellow", "\x1b[93m"),
("blue", "\x1b[94m"),
("purple", "\x1b[95m"),
("cyan", "\x1b[96m"),
],
)
def test_in_color(color: str, code: str, text: str = "some text") -> None:
assert in_color(color, text) == code + text + "\x1b[0m"
@pytest.mark.parametrize(
"json, label",
[
(
dict(require_email_format_usernames=False, email_auth_enabled=True),
"Email or Username",
),
(
dict(require_email_format_usernames=False, email_auth_enabled=False),
"Username",
),
(dict(require_email_format_usernames=True, email_auth_enabled=True), "Email"),
(dict(require_email_format_usernames=True, email_auth_enabled=False), "Email"),
],
)
def test_get_login_label(
mocker: MockerFixture,
json: ServerSettings, # NOTE: pytest does not ensure dict above is complete
label: str,
) -> None:
result = get_login_label(json)
assert result == label + ": "
@pytest.fixture
def server_settings_minimal() -> ServerSettings:
return ServerSettings(
authentication_methods={},
external_authentication_methods=[],
zulip_feature_level=0, # New in Zulip 3.0, ZFL 1
zulip_version="2.1.0",
zulip_merge_base="", # New in Zulip 5.0, ZFL 88
push_notifications_enabled=True,
is_incompatible=False,
require_email_format_usernames=False,
email_auth_enabled=True,
realm_uri="chat.zulip.zulip", # Present if a Zulip server; preferred URL
realm_name="A Zulip Server", # Present if Organization is active at URL
realm_icon="...",
realm_description="Very exciting server",
realm_web_public_access_enabled=True, # New in Zulip 5.0, ZFL 116
)
def test_get_server_settings(
mocker: MockerFixture,
server_settings_minimal: ServerSettings,
realm_url: str = "https://chat.zulip.org",
) -> None:
response = mocker.Mock(
status_code=requests.codes.OK, json=lambda: server_settings_minimal
)
mocked_get = mocker.patch("requests.get", return_value=response)
result = get_server_settings(realm_url)
mocked_get.assert_called_once_with(url=realm_url + "/api/v1/server_settings")
assert result == server_settings_minimal
def test_get_server_settings__not_a_zulip_organization(
mocker: MockerFixture, realm_url: str = "https://google.com"
) -> None:
response = mocker.Mock(
status_code=requests.codes.bad_request # FIXME: Test others?
)
mocked_get = mocker.patch("requests.get", return_value=response)
with pytest.raises(NotAZulipOrganizationError) as exc:
get_server_settings(realm_url)
mocked_get.assert_called_once_with(url=realm_url + "/api/v1/server_settings")
assert str(exc.value) == realm_url
@pytest.mark.parametrize("options", ["-h", "--help"])
def test_main_help(capsys: CaptureFixture[str], options: str) -> None:
with pytest.raises(SystemExit):
main([options])
captured = capsys.readouterr()
lines = captured.out.strip().split("\n")
assert lines[0].startswith("usage: ")
required_arguments = {
"--theme THEME, -t THEME",
"-h, --help",
"-d, --debug",
"--list-themes",
"--profile",
"--config-file CONFIG_FILE, -c CONFIG_FILE",
"--autohide",
"--no-autohide",
"-v, --version",
"-e, --explore",
"--color-depth",
"--notify",
"--no-notify",
"--transparency",
"--no-transparency",
}
optional_argument_lines = {
line[2:] for line in lines if len(line) > 2 and line[2] == "-"
}
for line in optional_argument_lines:
assert any(line.startswith(arg) for arg in required_arguments)
assert captured.err == ""
@pytest.fixture
def platform_mocker(mocker: MockerFixture) -> Callable[[str, str], List[str]]:
def factory(platform: str, python: str) -> List[str]:
mocker.patch(MODULE + ".detected_platform", return_value=platform)
mocker.patch(MODULE + ".detected_python_in_full", return_value=python)
return ["Detected:", f" - platform: {platform}", f" - python: {python}"]
return factory
@pytest.fixture
def minimal_zuliprc(tmp_path: Path) -> str:
zuliprc_path = tmp_path / "zuliprc"
with open(zuliprc_path, "w") as f:
f.write("[api]") # minimal to avoid Exception
os.chmod(zuliprc_path, 0o600)
return str(zuliprc_path)
def test_valid_zuliprc_but_no_connection(
capsys: CaptureFixture[str],
mocker: MockerFixture,
platform_mocker: Callable[[str, str], List[str]],
minimal_zuliprc: str,
server_connection_error: str = "some_error",
platform: str = "some_platform",
python: str = "3.99 (Zython) [cool]",
) -> None:
mocker.patch(
CONTROLLER + ".__init__",
side_effect=ServerConnectionFailure(server_connection_error),
)
expected_platform_output = platform_mocker(platform, python)
with pytest.raises(SystemExit) as e:
main(["-c", minimal_zuliprc])
assert str(e.value) == "1"
captured = capsys.readouterr()
lines = captured.out.strip().split("\n")
expected_lines = expected_platform_output + [
"Loading with:",
" theme 'zt_dark' specified from default config.",
" autohide setting 'no_autohide' specified from default config.",
" exit confirmation setting 'enabled' specified from default config.",
" maximum footlinks value '3' specified from default config.",
" color depth setting '256' specified from default config.",
" notify setting 'disabled' specified from default config.",
" transparency setting 'disabled' specified from default config.",
" external editor command '' specified from environment.",
"\x1b[91m",
f"Error connecting to Zulip server: {server_connection_error}.\x1b[0m",
]
assert lines == expected_lines
assert captured.err == ""
@pytest.mark.parametrize(
"bad_theme, expected_complete_incomplete_themes, expected_warning",
[
("c", (["a", "b"], ["c", "d"]), "(you could try: a, b)"),
("d", ([], ["a", "b", "c", "d"]), "(all themes are incomplete)"),
],
)
def test_warning_regarding_incomplete_theme(
capsys: CaptureFixture[str],
mocker: MockerFixture,
platform_mocker: Callable[[str, str], List[str]],
minimal_zuliprc: str,
bad_theme: str,
expected_complete_incomplete_themes: Tuple[List[str], List[str]],
expected_warning: str,
server_connection_error: str = "sce",
platform: str = "some_platform",
python: str = "3.99 (Zython) [cool]",
) -> None:
mocker.patch(
CONTROLLER + ".__init__",
side_effect=ServerConnectionFailure(server_connection_error),
)
mocker.patch(MODULE + ".detected_platform", return_value=platform)
mocker.patch(MODULE + ".all_themes", return_value=("a", "b", "c", "d"))
mocker.patch(
MODULE + ".complete_and_incomplete_themes",
return_value=expected_complete_incomplete_themes,
)
mocker.patch(MODULE + ".generate_theme")
expected_platform_output = platform_mocker(platform, python)
with pytest.raises(SystemExit) as e:
main(["-c", minimal_zuliprc, "-t", bad_theme])
assert str(e.value) == "1"
captured = capsys.readouterr()
lines = captured.out.strip().split("\n")
expected_lines = expected_platform_output + [
"Loading with:",
f" theme '{bad_theme}' specified on command line.",
"\x1b[93m WARNING: Incomplete theme; results may vary!",
f" {expected_warning}\x1b[0m",
" autohide setting 'no_autohide' specified from default config.",
" exit confirmation setting 'enabled' specified from default config.",
" maximum footlinks value '3' specified from default config.",
" color depth setting '256' specified from default config.",
" notify setting 'disabled' specified from default config.",
" transparency setting 'disabled' specified from default config.",
" external editor command '' specified from environment.",
"\x1b[91m",
f"Error connecting to Zulip server: {server_connection_error}.\x1b[0m",
]
assert lines == expected_lines
assert captured.err == ""
@pytest.mark.parametrize("options", ["-v", "--version"])
def test_zt_version(capsys: CaptureFixture[str], options: str) -> None:
with pytest.raises(SystemExit) as e:
main([options])
assert str(e.value) == "0"
captured = capsys.readouterr()
lines = captured.out.strip("\n")
expected = "Zulip Terminal " + ZT_VERSION
assert lines == expected
assert captured.err == ""
@pytest.mark.parametrize(
"option, autohide",
[
("--autohide", "autohide"),
("--no-autohide", "no_autohide"),
("--debug", None), # no-autohide by default
],
)
def test_parse_args_valid_autohide_option(option: str, autohide: Optional[str]) -> None:
args = parse_args([option])
assert args.autohide == autohide
@pytest.mark.parametrize(
"options", [["--autohide", "--no-autohide"], ["--no-autohide", "--autohide"]]
)
def test_main_multiple_autohide_options(
capsys: CaptureFixture[str], options: List[str]
) -> None:
with pytest.raises(SystemExit) as e:
main(options)
assert str(e.value) == "2"
captured = capsys.readouterr()
lines = captured.err.strip("\n")
lines = lines.split("pytest: ", 1)[1]
expected = f"error: argument {options[1]}: not allowed with argument {options[0]}"
assert lines == expected
@pytest.mark.parametrize(
"option, notify_option",
[
("--notify", "enabled"),
("--no-notify", "disabled"),
("--profile", None), # disabled by default
],
)
def test__parse_args_valid_notify_option(
option: str, notify_option: Optional[str]
) -> None:
args = parse_args([option])
assert args.notify == notify_option
@pytest.mark.parametrize(
"options",
[
["--notify", "--no-notify"],
["--no-notify", "--notify"],
],
)
def test_main_multiple_notify_options(
capsys: CaptureFixture[str], options: List[str]
) -> None:
with pytest.raises(SystemExit) as e:
main(options)
assert str(e.value) == "2"
captured = capsys.readouterr()
lines = captured.err.strip("\n")
lines = lines.split("pytest: ", 1)[1]
expected = f"error: argument {options[1]}: not allowed with argument {options[0]}"
assert lines == expected
# NOTE: Fixture is necessary to ensure unreadable dir is garbage-collected
# See pytest issue #7821
@pytest.fixture
def unreadable_dir(tmp_path: Path) -> Generator[Tuple[Path, Path], None, None]:
unreadable_dir = tmp_path / "unreadable"
unreadable_dir.mkdir()
unreadable_dir.chmod(0)
if os.access(str(unreadable_dir), os.R_OK):
# Docker container or similar
pytest.skip("Directory was still readable")
yield tmp_path, unreadable_dir
unreadable_dir.chmod(0o755)
def test_main_cannot_write_zuliprc_given_good_credentials(
capsys: CaptureFixture[str],
mocker: MockerFixture,
unreadable_dir: Tuple[Path, Path],
path_to_use: str = "unreadable",
expected_exception: str = "PermissionError",
) -> None:
tmp_path, unusable_path = unreadable_dir
# This is default base path to use
zuliprc_path = os.path.join(str(tmp_path), path_to_use, "zuliprc")
mocker.patch(MODULE + ".CONFIG_PATH", zuliprc_path)
mocker.patch(MODULE + ".HOME_PATH_ZULIPRC", os.path.join(str(tmp_path), "home"))
account_alias = "my_account_alias"
# Give some arbitrary input and fake that it's always valid
mocker.patch.object(builtins, "input", lambda _: "text\n")
mocker.patch(
MODULE + ".get_api_key",
return_value=("my_site", "my_login", "my_api_key", account_alias),
)
with pytest.raises(SystemExit):
main([])
captured = capsys.readouterr()
lines = captured.out.strip().split("\n")
expected_line = (
"\x1b[91m"
f"{expected_exception}: zuliprc could not be created "
f"at {os.path.join(zuliprc_path, account_alias, 'zuliprc')}"
"\x1b[0m"
)
assert lines[-1] == expected_line
@pytest.fixture
def parameterized_zuliprc(tmp_path: Path) -> Callable[[Dict[str, str]], str]:
def func(config: Dict[str, str]) -> str:
zuliprc_path = tmp_path / "zuliprc"
with open(zuliprc_path, "w") as f:
f.write("[api]\n\n") # minimal to avoid Exception
f.write("[zterm]\n")
for key, value in config.items():
f.write(f"{key}={value}\n")
os.chmod(zuliprc_path, 0o600)
return str(zuliprc_path)
return func
@pytest.mark.parametrize(
"config_key, config_value, footlinks_output",
[
("footlinks", "disabled", "'0' specified in zuliprc file from footlinks."),
("footlinks", "enabled", "'3' specified in zuliprc file from footlinks."),
("maximum-footlinks", "3", "'3' specified in zuliprc file."),
("maximum-footlinks", "0", "'0' specified in zuliprc file."),
],
ids=[
"footlinks_disabled",
"footlinks_enabled",
"maximum-footlinks_3",
"maximum-footlinks_0",
],
)
def test_successful_main_function_with_config(
capsys: CaptureFixture[str],
mocker: MockerFixture,
platform_mocker: Callable[[str, str], List[str]],
parameterized_zuliprc: Callable[[Dict[str, str]], str],
config_key: str,
config_value: str,
footlinks_output: str,
platform: str = "some_platform",
python: str = "3.99 (Zython) [cool]",
) -> None:
config = {
"theme": "default",
"autohide": "autohide",
"notify": "enabled",
"color-depth": "256",
}
config[config_key] = config_value
zuliprc = parameterized_zuliprc(config)
mocker.patch(CONTROLLER + ".__init__", return_value=None)
mocker.patch(CONTROLLER + ".main", return_value=None)
expected_platform_output = platform_mocker(platform, python)
with pytest.raises(SystemExit):
main(["-c", zuliprc])
captured = capsys.readouterr()
lines = captured.out.strip().split("\n")
expected_lines = expected_platform_output + [
"Loading with:",
" theme 'zt_dark' specified in zuliprc file (by alias 'default').",
" autohide setting 'autohide' specified in zuliprc file.",
" exit confirmation setting 'enabled' specified from default config.",
f" maximum footlinks value {footlinks_output}",
" color depth setting '256' specified in zuliprc file.",
" notify setting 'enabled' specified in zuliprc file.",
" transparency setting 'disabled' specified from default config.",
" external editor command '' specified from environment.",
]
assert lines == expected_lines
@pytest.mark.parametrize(
"zulip_config, error_message",
[
(
{"footlinks": "enabled", "maximum-footlinks": "3"},
"Configuration Error: footlinks and maximum-footlinks options"
" cannot be used together",
),
(
{"maximum-footlinks": "-3"},
"Configuration Error: Minimum value allowed for maximum-footlinks"
" is 0; you used '-3'",
),
],
)
def test_main_error_with_invalid_zuliprc_options(
capsys: CaptureFixture[str],
mocker: MockerFixture,
platform_mocker: Callable[[str, str], List[str]],
parameterized_zuliprc: Callable[[Dict[str, str]], str],
zulip_config: Dict[str, str],
error_message: str,
platform: str = "some_platform",
python: str = "3.99 (Zython) [cool]",
) -> None:
zuliprc = parameterized_zuliprc(zulip_config)
mocker.patch(CONTROLLER + ".__init__", return_value=None)
mocker.patch(MODULE + ".detected_platform", return_value=platform)
mocker.patch(CONTROLLER + ".main", return_value=None)
expected_platform_output = platform_mocker(platform, python)
with pytest.raises(SystemExit) as e:
main(["-c", zuliprc])
assert str(e.value) == "1"
captured = capsys.readouterr()
lines = captured.out.strip()
expected_lines = "\n".join(
expected_platform_output + [f"\033[91m{error_message}\033[0m"]
)
assert lines == expected_lines
@pytest.mark.parametrize(
"error_code, helper_text",
[
(1, ""),
(2, "helper"),
],
)
def test_exit_with_error(
capsys: CaptureFixture[str],
error_code: int,
helper_text: str,
error_message: str = "some text",
) -> None:
with pytest.raises(SystemExit) as e:
exit_with_error(
error_message=error_message, helper_text=helper_text, error_code=error_code
)
assert str(e.value) == str(error_code)
captured = capsys.readouterr()
lines = captured.out.strip().split("\n")
expected_line = f"\033[91m{error_message}\033[0m"
assert lines[0] == expected_line
if helper_text:
assert lines[1] == helper_text
def test__write_zuliprc__success(
tmp_path: Path, id: str = "id", key: str = "key", url: str = "url"
) -> None:
path = os.path.join(str(tmp_path), "zuliprc")
error_message = _write_zuliprc(path, api_key=key, server_url=url, login_id=id)
assert error_message == ""
expected_contents = f"[api]\nemail={id}\nkey={key}\nsite={url}"
with open(path) as f:
assert f.read() == expected_contents
assert stat.filemode(os.stat(path).st_mode)[-6:] == 6 * "-"
def test__write_zuliprc__fail_file_exists(
minimal_zuliprc: str,
tmp_path: Path,
id: str = "id",
key: str = "key",
url: str = "url",
) -> None:
path = os.path.join(str(tmp_path), "zuliprc")
error_message = _write_zuliprc(path, api_key=key, server_url=url, login_id=id)
assert error_message == "zuliprc already exists at " + path
@pytest.mark.parametrize(
"mode",
[
# Avoid reformatting to retain readability of grid of values
# fmt:off
0o77, 0o70, 0o07,
0o66, 0o60, 0o06,
0o55, 0o50, 0o05,
0o44, 0o40, 0o04,
0o33, 0o30, 0o03,
0o22, 0o20, 0o02,
0o11, 0o10, 0o01,
# fmt:on
],
)
def test_show_error_if_loading_zuliprc_with_open_permissions(
capsys: CaptureFixture[str], minimal_zuliprc: str, mode: int
) -> None:
mode += 0o600
os.chmod(minimal_zuliprc, mode)
current_mode = stat.filemode(os.stat(minimal_zuliprc).st_mode)
with pytest.raises(SystemExit) as e:
main(["-c", minimal_zuliprc])
assert str(e.value) == "1"
captured = capsys.readouterr()
lines = captured.out.split("\n")[:-1]
expected_last_lines = [
f"(it currently has permissions '{current_mode}')",
"This can often be achieved with a command such as:",
f" chmod og-rwx {minimal_zuliprc}",
"Consider regenerating the [api] part of your zuliprc to ensure "
"your account is secure."
"\x1b[0m",
]
assert lines[-4:] == expected_last_lines
assert captured.err == ""