/
niceSOFT
/
pip
Обзор
Документация
Войти
/
niceSOFT
/
pip
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/functional/test_help.py
160 строк
5 KB
Richard Si
Add tests for colorized help
24 янв 2026, 02:26
Не верифицирован
24 янв 2026, 02:26
b1a362e
Код
Авторство
О чём код?
import functools from unittest.mock import Mock import pytest from pip._vendor.rich.text import Text import pip._internal.cli.parser from pip._internal.cli.status_codes import ERROR, SUCCESS from pip._internal.commands import commands_dict, create_command from pip._internal.exceptions import CommandError from tests.lib import InMemoryPip, PipTestEnvironment def test_run_method_should_return_success_when_finds_command_name() -> None: """ Test HelpCommand.run for existing command """ options_mock = Mock() args = ["freeze"] help_cmd = create_command("help") status = help_cmd.run(options_mock, args) assert status == SUCCESS def test_run_method_should_return_success_when_command_name_not_specified() -> None: """ Test HelpCommand.run when there are no args """ options_mock = Mock() help_cmd = create_command("help") status = help_cmd.run(options_mock, []) assert status == SUCCESS def test_run_method_should_raise_command_error_when_command_does_not_exist() -> None: """ Test HelpCommand.run for non-existing command """ options_mock = Mock() args = ["mycommand"] help_cmd = create_command("help") with pytest.raises(CommandError): help_cmd.run(options_mock, args) def test_help_command_should_exit_status_ok_when_command_exists( script: PipTestEnvironment, ) -> None: """ Test `help` command for existing command """ result = script.pip("help", "freeze") assert result.returncode == SUCCESS def test_help_command_should_exit_status_ok_when_no_cmd_is_specified( script: PipTestEnvironment, ) -> None: """ Test `help` command for no command """ result = script.pip("help") assert result.returncode == SUCCESS def test_help_command_should_exit_status_error_when_cmd_does_not_exist( script: PipTestEnvironment, ) -> None: """ Test `help` command for non-existing command """ result = script.pip("help", "mycommand", expect_error=True) assert result.returncode == ERROR def test_help_command_redact_auth_from_url(script: PipTestEnvironment) -> None: """ Test `help` on various subcommands redact auth from url """ script.environ["PIP_INDEX_URL"] = "https://user:secret@example.com" result = script.pip("install", "--help") assert result.returncode == SUCCESS assert "secret" not in result.stdout def test_help_command_redact_auth_from_url_with_extra_index_url( script: PipTestEnvironment, ) -> None: """ Test `help` on various subcommands redact auth from url with extra index url """ script.environ["PIP_INDEX_URL"] = "https://user:secret@example.com" script.environ["PIP_EXTRA_INDEX_URL"] = "https://user:secret@example2.com" result = script.pip("install", "--help") assert result.returncode == SUCCESS assert "secret" not in result.stdout def test_help_commands_equally_functional(in_memory_pip: InMemoryPip) -> None: """ Test if `pip help` and 'pip --help' behave the same way. """ results = list(map(in_memory_pip.pip, ("help", "--help"))) results.append(in_memory_pip.pip()) out = (x.stdout for x in results) ret = (x.returncode for x in results) msg = '"pip --help" != "pip help" != "pip"' assert len(set(out)) == 1, "output of: " + msg assert sum(ret) == 0, "exit codes of: " + msg assert all(len(o) > 0 for o in out) for name in commands_dict: assert ( in_memory_pip.pip("help", name).stdout == in_memory_pip.pip(name, "--help").stdout != "" ) @pytest.mark.parametrize("envvar", ["", "NO_COLOR", "PIP_NO_COLOR"]) def test_help_command_colors( in_memory_pip: InMemoryPip, monkeypatch: pytest.MonkeyPatch, envvar: str ) -> None: """ Test if color disables correctly. """ monkeypatch.delenv("NO_COLOR", raising=False) monkeypatch.delenv("PIP_NO_COLOR", raising=False) monkeypatch.delenv("FORCE_COLOR", raising=False) PipConsole = pip._internal.cli.parser.PipConsole TestConsole = functools.partial( PipConsole, force_terminal=True, color_system="standard", width=80 ) monkeypatch.setattr(pip._internal.cli.parser, "PipConsole", TestConsole) if envvar: monkeypatch.setenv(envvar, "1") res = in_memory_pip.pip("help") text = Text.from_ansi(res.stdout) bold_spans = [s for s in text.spans if getattr(s.style, "bold", None)] bold_text = [text.plain[s.start : s.end] for s in bold_spans] assert bold_text == ["Usage:", "Commands:", "General Options:"] for span in bold_spans: style = span.style assert not isinstance(style, str) if envvar: assert style.color is None else: assert style.color is not None