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
|
from __future__ import annotations
import logging
import sys
import textwrap
from pathlib import Path
from typing import Any, Callable
import pytest
from pytest_mock import MockerFixture
from tox.config.cli.parse import get_options
from tox.config.loader.api import Override
from tox.pytest import CaptureFixture, LogCaptureFixture, MonkeyPatch
from tox.session.env_select import CliEnv
from tox.session.state import State
@pytest.fixture()
def exhaustive_ini(tmp_path: Path, monkeypatch: MonkeyPatch) -> Path:
to = tmp_path / "tox.ini"
to.write_text(
textwrap.dedent(
"""
[tox]
colored = yes
verbose = 5
quiet = 1
command = run-parallel
env = py37, py36
default_runner = virtualenv
recreate = true
no_test = true
parallel = 3
parallel_live = True
override =
a=b
c=d
""",
),
)
monkeypatch.setenv("TOX_CONFIG_FILE", str(to))
return to
@pytest.mark.parametrize("content", ["[tox]", ""])
def test_ini_empty(
tmp_path: Path,
core_handlers: dict[str, Callable[[State], int]],
default_options: dict[str, Any],
mocker: MockerFixture,
monkeypatch: MonkeyPatch,
content: str,
) -> None:
to = tmp_path / "tox.ini"
monkeypatch.setenv("TOX_CONFIG_FILE", str(to))
to.write_text(content)
mocker.patch("tox.config.cli.parse.discover_source", return_value=mocker.MagicMock(path=Path()))
options = get_options("r")
assert vars(options.parsed) == default_options
assert options.parsed.verbosity == 2
assert options.cmd_handlers == core_handlers
to.unlink()
missing_options = get_options("r")
assert vars(missing_options.parsed) == vars(options.parsed)
@pytest.fixture()
def default_options(tmp_path: Path) -> dict[str, Any]:
return {
"colored": "no",
"command": "r",
"default_runner": "virtualenv",
"develop": False,
"discover": [],
"env": CliEnv(),
"hash_seed": "noset",
"install_pkg": None,
"no_test": False,
"override": [],
"package_only": False,
"quiet": 0,
"recreate": False,
"no_recreate_provision": False,
"no_provision": False,
"no_recreate_pkg": False,
"result_json": None,
"skip_missing_interpreters": "config",
"skip_pkg_install": False,
"verbose": 2,
"work_dir": None,
"root_dir": None,
"config_file": (tmp_path / "tox.ini").absolute(),
"factors": [],
"labels": [],
}
def test_ini_exhaustive_parallel_values(exhaustive_ini: Path, core_handlers: dict[str, Callable[[State], int]]) -> None:
options = get_options("p")
assert vars(options.parsed) == {
"colored": "yes",
"command": "p",
"default_runner": "virtualenv",
"develop": False,
"discover": [],
"env": CliEnv(["py37", "py36"]),
"hash_seed": "noset",
"install_pkg": None,
"no_test": True,
"override": [Override("a=b"), Override("c=d")],
"package_only": False,
"no_recreate_pkg": False,
"parallel": 3,
"parallel_live": True,
"parallel_no_spinner": False,
"quiet": 1,
"no_provision": False,
"recreate": True,
"no_recreate_provision": False,
"result_json": None,
"skip_missing_interpreters": "config",
"skip_pkg_install": False,
"verbose": 5,
"work_dir": None,
"root_dir": None,
"config_file": exhaustive_ini,
"factors": [],
"labels": [],
}
assert options.parsed.verbosity == 4
assert options.cmd_handlers == core_handlers
def test_ini_help(exhaustive_ini: Path, capsys: CaptureFixture) -> None:
with pytest.raises(SystemExit) as context:
get_options("-h")
assert context.value.code == 0
out, err = capsys.readouterr()
assert not err
assert f"config file '{exhaustive_ini}' active (changed via env var TOX_CONFIG_FILE)"
def test_bad_cli_ini(
tmp_path: Path,
monkeypatch: MonkeyPatch,
caplog: LogCaptureFixture,
default_options: dict[str, Any],
mocker: MockerFixture,
) -> None:
mocker.patch("tox.config.cli.parse.discover_source", return_value=mocker.MagicMock(path=Path()))
caplog.set_level(logging.WARNING)
monkeypatch.setenv("TOX_CONFIG_FILE", str(tmp_path))
options = get_options("r")
msg = (
"PermissionError(13, 'Permission denied')"
if sys.platform == "win32"
else "IsADirectoryError(21, 'Is a directory')"
)
assert caplog.messages == [f"failed to read config file {tmp_path} because {msg}"]
default_options["config_file"] = tmp_path
assert vars(options.parsed) == default_options
def test_bad_option_cli_ini(
tmp_path: Path,
monkeypatch: MonkeyPatch,
caplog: LogCaptureFixture,
value_error: Callable[[str], str],
default_options: dict[str, Any],
) -> None:
caplog.set_level(logging.WARNING)
to = tmp_path / "tox.ini"
to.write_text(
textwrap.dedent(
"""
[tox]
verbose = what
""",
),
)
monkeypatch.setenv("TOX_CONFIG_FILE", str(to))
parsed, _, __, ___, ____ = get_options("r")
assert caplog.messages == [
"{} key verbose as type <class 'int'> failed with {}".format(
to,
value_error("invalid literal for int() with base 10: 'what'"),
),
]
assert vars(parsed) == default_options
|