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
|
# Copyright 2016 Alethea Katherine Flowers
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
import ctypes
import logging
import os
import platform
import shutil
import signal
import subprocess
import sys
import time
from pathlib import Path
from textwrap import dedent
from unittest import mock
import pytest
import nox.command
import nox.popen
PYTHON = sys.executable
skip_on_windows_primary_console_session = pytest.mark.skipif(
platform.system() == "Windows" and "SECONDARY_CONSOLE_SESSION" not in os.environ,
reason="On Windows, this test must run in a separate console session.",
)
only_on_windows = pytest.mark.skipif(
platform.system() != "Windows", reason="Only run this test on Windows."
)
def test_run_defaults(capsys):
result = nox.command.run([PYTHON, "-c", "print(123)"])
assert result is True
def test_run_silent(capsys):
result = nox.command.run([PYTHON, "-c", "print(123)"], silent=True)
out, _ = capsys.readouterr()
assert "123" in result
assert out == ""
@pytest.mark.skipif(shutil.which("git") is None, reason="Needs git")
def test_run_not_in_path(capsys):
# Paths falls back on the environment PATH if the command is not found.
result = nox.command.run(["git", "--version"], paths=["."])
assert result is True
def test_run_verbosity(capsys, caplog):
caplog.clear()
with caplog.at_level(logging.DEBUG):
result = nox.command.run([PYTHON, "-c", "print(123)"], silent=True)
out, _ = capsys.readouterr()
assert "123" in result
assert out == ""
logs = [rec for rec in caplog.records if rec.levelname == "OUTPUT"]
assert not logs
caplog.clear()
with caplog.at_level(logging.DEBUG - 1):
result = nox.command.run([PYTHON, "-c", "print(123)"], silent=True)
out, _ = capsys.readouterr()
assert "123" in result
assert out == ""
logs = [rec for rec in caplog.records if rec.levelname == "OUTPUT"]
assert logs
assert logs[0].message.strip() == "123"
def test_run_verbosity_failed_command(capsys, caplog):
caplog.clear()
with caplog.at_level(logging.DEBUG):
with pytest.raises(nox.command.CommandFailed):
nox.command.run([PYTHON, "-c", "print(123); exit(1)"], silent=True)
out, err = capsys.readouterr()
assert "123" in err
assert out == ""
logs = [rec for rec in caplog.records if rec.levelname == "OUTPUT"]
assert not logs
caplog.clear()
with caplog.at_level(logging.DEBUG - 1):
with pytest.raises(nox.command.CommandFailed):
nox.command.run([PYTHON, "-c", "print(123); exit(1)"], silent=True)
out, err = capsys.readouterr()
assert "123" in err
assert out == ""
# Nothing is logged but the error is still written to stderr
assert not logs
@pytest.mark.skipif(
platform.system() == "Windows",
reason="See https://github.com/python/cpython/issues/85815",
)
def test_run_non_str():
result = nox.command.run(
[Path(PYTHON), "-c", "import sys; print(sys.argv)", Path(PYTHON)],
silent=True,
)
assert PYTHON in result
def test_run_env_unicode():
result = nox.command.run(
[PYTHON, "-c", 'import os; print(os.environ["SIGIL"])'],
silent=True,
env={"SIGIL": "123"},
)
assert "123" in result
def test_run_env_remove(monkeypatch):
monkeypatch.setenv("EMPTY", "notempty")
nox.command.run(
[PYTHON, "-c", 'import os; assert "EMPTY" in os.environ'],
silent=True,
)
nox.command.run(
[PYTHON, "-c", 'import os; assert "EMPTY" not in os.environ'],
silent=True,
env={"EMPTY": None},
)
@mock.patch("nox.command._PLATFORM", "win32")
def test_run_env_systemroot():
systemroot = os.environ.setdefault("SYSTEMROOT", "sigil")
result = nox.command.run(
[PYTHON, "-c", 'import os; print(os.environ["SYSTEMROOT"])'], silent=True
)
assert systemroot in result
def test_run_not_found():
with pytest.raises(nox.command.CommandFailed):
nox.command.run(["nonexistentcmd"])
def test_run_path_nonexistent():
result = nox.command.run(
[PYTHON, "-c", "import sys; print(sys.executable)"],
silent=True,
paths=["/non/existent"],
)
assert "/non/existent" not in result
def test_run_path_existent(tmp_path: Path):
executable_name = (
"testexc.exe" if "windows" in platform.platform().lower() else "testexc"
)
tmp_path.touch()
executable = tmp_path.joinpath(executable_name)
executable.touch()
executable.chmod(0o700)
with mock.patch("nox.command.popen") as mock_command:
mock_command.return_value = (0, "")
nox.command.run([executable_name], silent=True, paths=[str(tmp_path)])
mock_command.assert_called_with(
[str(executable)],
env=None,
silent=True,
stdout=None,
stderr=subprocess.STDOUT,
interrupt_timeout=0.3,
terminate_timeout=0.2,
)
def test_run_external_warns(tmpdir, caplog):
caplog.set_level(logging.WARNING)
nox.command.run([PYTHON, "--version"], silent=True, paths=[tmpdir.strpath])
assert "external=True" in caplog.text
def test_run_external_silences(tmpdir, caplog):
caplog.set_level(logging.WARNING)
nox.command.run(
[PYTHON, "--version"], silent=True, paths=[tmpdir.strpath], external=True
)
assert "external=True" not in caplog.text
def test_run_external_raises(tmpdir, caplog):
caplog.set_level(logging.ERROR)
with pytest.raises(nox.command.CommandFailed):
nox.command.run(
[PYTHON, "--version"], silent=True, paths=[tmpdir.strpath], external="error"
)
assert "external=True" in caplog.text
def test_exit_codes():
assert nox.command.run([PYTHON, "-c", "import sys; sys.exit(0)"])
with pytest.raises(nox.command.CommandFailed):
nox.command.run([PYTHON, "-c", "import sys; sys.exit(1)"])
assert nox.command.run(
[PYTHON, "-c", "import sys; sys.exit(1)"], success_codes=[1, 2]
)
def test_fail_with_silent(capsys):
with pytest.raises(nox.command.CommandFailed):
nox.command.run(
[
PYTHON,
"-c",
(
'import sys; sys.stdout.write("out");'
'sys.stderr.write("err"); sys.exit(1)'
),
],
silent=True,
)
out, err = capsys.readouterr()
assert "out" in err
assert "err" in err
@pytest.fixture
def marker(tmp_path):
"""A marker file for process communication."""
return tmp_path / "marker"
def enable_ctrl_c(enabled):
"""Enable keyboard interrupts (CTRL-C) on Windows."""
kernel32 = ctypes.WinDLL("kernel32", use_last_error=True)
if not kernel32.SetConsoleCtrlHandler(None, not enabled):
raise ctypes.WinError(ctypes.get_last_error())
def interrupt_process(proc):
"""Send SIGINT or CTRL_C_EVENT to the process."""
if platform.system() == "Windows":
# Disable Ctrl-C so we don't terminate ourselves.
enable_ctrl_c(False)
# Send the keyboard interrupt to all processes attached to the current
# console session.
os.kill(0, signal.CTRL_C_EVENT)
else:
proc.send_signal(signal.SIGINT)
@pytest.fixture
def command_with_keyboard_interrupt(monkeypatch, marker):
"""Monkeypatch Popen.communicate to raise KeyboardInterrupt."""
if platform.system() == "Windows":
# Enable Ctrl-C because the child inherits the setting from us.
enable_ctrl_c(True)
communicate = subprocess.Popen.communicate
def wrapper(proc, *args, **kwargs):
# Raise the interrupt only on the first call, so Nox has a chance to
# shut down the child process subsequently.
if wrapper.firstcall:
wrapper.firstcall = False
# Give the child time to install its signal handlers.
while not marker.exists():
time.sleep(0.05)
# Send a real keyboard interrupt to the child.
interrupt_process(proc)
# Fake a keyboard interrupt in the parent.
raise KeyboardInterrupt
return communicate(proc, *args, **kwargs)
wrapper.firstcall = True
monkeypatch.setattr("subprocess.Popen.communicate", wrapper)
def format_program(program, marker):
"""Preprocess the Python program run by the child process."""
main = f"""
import time
from pathlib import Path
Path({str(marker)!r}).touch()
time.sleep(3)
"""
return dedent(program).format(MAIN=dedent(main))
def run_pytest_in_new_console_session(test):
"""Run the given test in a separate console session."""
env = dict(os.environ, SECONDARY_CONSOLE_SESSION="")
creationflags = subprocess.CREATE_NO_WINDOW
subprocess.run(
[sys.executable, "-m", "pytest", f"{__file__}::{test}"],
env=env,
check=True,
capture_output=True,
creationflags=creationflags,
)
@skip_on_windows_primary_console_session
@pytest.mark.parametrize(
"program",
[
"""
{MAIN}
""",
"""
import signal
signal.signal(signal.SIGINT, signal.SIG_IGN)
{MAIN}
""",
"""
import signal
signal.signal(signal.SIGINT, signal.SIG_IGN)
signal.signal(signal.SIGTERM, signal.SIG_IGN)
{MAIN}
""",
],
)
def test_interrupt_raises(command_with_keyboard_interrupt, program, marker):
"""It kills the process and reraises the keyboard interrupt."""
with pytest.raises(KeyboardInterrupt):
nox.command.run([PYTHON, "-c", format_program(program, marker)])
@only_on_windows
def test_interrupt_raises_on_windows():
"""It kills the process and reraises the keyboard interrupt."""
run_pytest_in_new_console_session("test_interrupt_raises")
@skip_on_windows_primary_console_session
def test_interrupt_handled(command_with_keyboard_interrupt, marker):
"""It does not raise if the child handles the keyboard interrupt."""
program = """
import signal
def exithandler(sig, frame):
raise SystemExit()
signal.signal(signal.SIGINT, exithandler)
{MAIN}
"""
nox.command.run([PYTHON, "-c", format_program(program, marker)])
@only_on_windows
def test_interrupt_handled_on_windows():
"""It does not raise if the child handles the keyboard interrupt."""
run_pytest_in_new_console_session("test_interrupt_handled")
def test_custom_stdout(capsys, tmpdir):
with open(str(tmpdir / "out.txt"), "w+b") as stdout:
nox.command.run(
[
PYTHON,
"-c",
(
'import sys; sys.stdout.write("out");'
'sys.stderr.write("err"); sys.exit(0)'
),
],
stdout=stdout,
)
out, err = capsys.readouterr()
assert not out
assert "out" not in err
assert "err" not in err
stdout.seek(0)
tempfile_contents = stdout.read().decode("utf-8")
assert "out" in tempfile_contents
assert "err" in tempfile_contents
def test_custom_stdout_silent_flag(capsys, tmpdir):
with open(str(tmpdir / "out.txt"), "w+b") as stdout: # noqa: SIM117
with pytest.raises(ValueError, match="silent"):
nox.command.run([PYTHON, "-c", 'print("hi")'], stdout=stdout, silent=True)
def test_custom_stdout_failed_command(capsys, tmpdir):
with open(str(tmpdir / "out.txt"), "w+b") as stdout:
with pytest.raises(nox.command.CommandFailed):
nox.command.run(
[
PYTHON,
"-c",
(
'import sys; sys.stdout.write("out");'
'sys.stderr.write("err"); sys.exit(1)'
),
],
stdout=stdout,
)
out, err = capsys.readouterr()
assert not out
assert "out" not in err
assert "err" not in err
stdout.seek(0)
tempfile_contents = stdout.read().decode("utf-8")
assert "out" in tempfile_contents
assert "err" in tempfile_contents
def test_custom_stderr(capsys, tmpdir):
with open(str(tmpdir / "err.txt"), "w+b") as stderr:
nox.command.run(
[
PYTHON,
"-c",
(
'import sys; sys.stdout.write("out");'
'sys.stderr.write("err"); sys.exit(0)'
),
],
stderr=stderr,
)
out, err = capsys.readouterr()
assert not err
assert "out" not in out
assert "err" not in out
stderr.seek(0)
tempfile_contents = stderr.read().decode("utf-8")
assert "out" not in tempfile_contents
assert "err" in tempfile_contents
def test_custom_stderr_failed_command(capsys, tmpdir):
with open(str(tmpdir / "out.txt"), "w+b") as stderr:
with pytest.raises(nox.command.CommandFailed):
nox.command.run(
[
PYTHON,
"-c",
(
'import sys; sys.stdout.write("out");'
'sys.stderr.write("err"); sys.exit(1)'
),
],
stderr=stderr,
)
out, err = capsys.readouterr()
assert not err
assert "out" not in out
assert "err" not in out
stderr.seek(0)
tempfile_contents = stderr.read().decode("utf-8")
assert "out" not in tempfile_contents
assert "err" in tempfile_contents
def test_output_decoding() -> None:
result = nox.popen.decode_output(b"abc")
assert result == "abc"
def test_output_decoding_non_ascii() -> None:
result = nox.popen.decode_output("ü".encode())
assert result == "ü"
def test_output_decoding_utf8_only_fail(monkeypatch: pytest.MonkeyPatch) -> None:
monkeypatch.setattr(nox.popen.locale, "getpreferredencoding", lambda: "utf8")
with pytest.raises(UnicodeDecodeError) as exc:
nox.popen.decode_output(b"\x95")
assert exc.value.encoding == "utf-8"
def test_output_decoding_utf8_fail_cp1252_success(
monkeypatch: pytest.MonkeyPatch,
) -> None:
monkeypatch.setattr(nox.popen.locale, "getpreferredencoding", lambda: "cp1252")
result = nox.popen.decode_output(b"\x95")
assert result == "•" # U+2022
def test_output_decoding_both_fail(monkeypatch: pytest.MonkeyPatch) -> None:
monkeypatch.setattr(nox.popen.locale, "getpreferredencoding", lambda: "ascii")
with pytest.raises(UnicodeDecodeError) as exc:
nox.popen.decode_output(b"\x95")
assert exc.value.encoding == "ascii"
|