Skip to content

Commit

Permalink
Merge pull request #280 from codecov/gio/rename-python-standard-runner
Browse files Browse the repository at this point in the history
chore: rename PythonStandardRunner
  • Loading branch information
giovanni-guidini committed Oct 6, 2023
2 parents a8e8b09 + f5fc296 commit cab36bc
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 30 deletions.
2 changes: 1 addition & 1 deletion codecov_cli/commands/labelanalysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
required=True,
)
@click.option(
"--runner-name", "--runner", "runner_name", help="Runner to use", default="python"
"--runner-name", "--runner", "runner_name", help="Runner to use", default="pytest"
)
@click.option(
"--max-wait-time",
Expand Down
16 changes: 12 additions & 4 deletions codecov_cli/runners/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import click

from codecov_cli.runners.dan_runner import DoAnythingNowRunner
from codecov_cli.runners.python_standard_runner import PythonStandardRunner
from codecov_cli.runners.pytest_standard_runner import PytestStandardRunner
from codecov_cli.runners.types import LabelAnalysisRunnerInterface

logger = logging.getLogger("codecovcli")
Expand Down Expand Up @@ -42,9 +42,17 @@ def _load_runner_from_yaml(plugin_dict: typing.Dict) -> LabelAnalysisRunnerInter


def get_runner(cli_config, runner_name) -> LabelAnalysisRunnerInterface:
if runner_name == "python":
config_params = cli_config.get("runners", {}).get("python", {})
return PythonStandardRunner(config_params)
if runner_name == "pytest":
config_params = cli_config.get("runners", {}).get("pytest", {})
# This is for backwards compatibility with versions <= 0.3.4
# In which the key for this config was 'python', not 'pytest'
if config_params == {}:
config_params = cli_config.get("runners", {}).get("python", {})
if config_params:
logger.warning(
"Using 'python' to configure the PytestStandardRunner is deprecated. Please change to 'pytest'"
)
return PytestStandardRunner(config_params)
elif runner_name == "dan":
config_params = cli_config.get("runners", {}).get("dan", {})
return DoAnythingNowRunner(config_params)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
logger = logging.getLogger("codecovcli")


class PythonStandardRunnerConfigParams(dict):
class PytestStandardRunnerConfigParams(dict):
@property
def collect_tests_options(self) -> List[str]:
return self.get("collect_tests_options", [])
Expand All @@ -38,15 +38,15 @@ def coverage_root(self) -> str:
return self.get("coverage_root", "./")


class PythonStandardRunner(LabelAnalysisRunnerInterface):
class PytestStandardRunner(LabelAnalysisRunnerInterface):

dry_run_runner_options = ["--cov-context=test"]

def __init__(self, config_params: Optional[dict] = None) -> None:
super().__init__()
if config_params is None:
config_params = {}
self.params = PythonStandardRunnerConfigParams(config_params)
self.params = PytestStandardRunnerConfigParams(config_params)

def parse_captured_output_error(self, exp: CalledProcessError) -> str:
result = ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
import pytest
from pytest import ExitCode

from codecov_cli.runners.python_standard_runner import PythonStandardRunner
from codecov_cli.runners.python_standard_runner import logger as runner_logger
from codecov_cli.runners.python_standard_runner import stdout as pyrunner_stdout
from codecov_cli.runners.pytest_standard_runner import PytestStandardRunner
from codecov_cli.runners.pytest_standard_runner import logger as runner_logger
from codecov_cli.runners.pytest_standard_runner import stdout as pyrunner_stdout
from codecov_cli.runners.types import LabelAnalysisRequestResult


class TestPythonStandardRunner(object):
runner = PythonStandardRunner()
runner = PytestStandardRunner()

def test_init_with_params(self):
assert self.runner.params.collect_tests_options == []
Expand All @@ -21,10 +21,10 @@ def test_init_with_params(self):
config_params = dict(
collect_tests_options=["--option=value", "-option"],
)
runner_with_params = PythonStandardRunner(config_params)
runner_with_params = PytestStandardRunner(config_params)
assert runner_with_params.params == config_params

@patch("codecov_cli.runners.python_standard_runner.subprocess")
@patch("codecov_cli.runners.pytest_standard_runner.subprocess")
def test_execute_pytest(self, mock_subprocess):
output = "Output in stdout"
return_value = MagicMock(stdout=output.encode("utf-8"))
Expand All @@ -39,7 +39,7 @@ def test_execute_pytest(self, mock_subprocess):
)
assert result == output

@patch("codecov_cli.runners.python_standard_runner.subprocess")
@patch("codecov_cli.runners.pytest_standard_runner.subprocess")
def test_execute_pytest_fail_collection(self, mock_subprocess):
def side_effect(command, *args, **kwargs):
raise CalledProcessError(
Expand All @@ -58,7 +58,7 @@ def side_effect(command, *args, **kwargs):
== "Pytest exited with non-zero code 2.\nThis is likely not a problem with label-analysis. Check pytest's output and options.\nPYTEST OUTPUT:\nProcess running up to here...\nSome error occured"
)

@patch("codecov_cli.runners.python_standard_runner.subprocess")
@patch("codecov_cli.runners.pytest_standard_runner.subprocess")
def test_execute_pytest_fail_execution(self, mock_subprocess):
def side_effect(command, *args, **kwargs):
# In this scenario the regular output AND the stderr message will have been printed
Expand Down Expand Up @@ -123,7 +123,7 @@ def test_collect_tests(self, mocker):
"tests/services/upload/test_upload_service.py::test_do_upload_logic_verbose"
]
mock_execute = mocker.patch.object(
PythonStandardRunner,
PytestStandardRunner,
"_execute_pytest",
return_value="\n".join(collected_test_list),
)
Expand All @@ -138,13 +138,13 @@ def test_collect_tests_with_options(self, mocker):
"tests/services/upload/test_upload_collector.py::test_fix_php_files"
]
mock_execute = mocker.patch.object(
PythonStandardRunner,
PytestStandardRunner,
"_execute_pytest",
return_value="\n".join(collected_test_list),
)

config_params = dict(collect_tests_options=["--option=value", "-option"])
runner_with_params = PythonStandardRunner(config_params)
runner_with_params = PytestStandardRunner(config_params)

collected_tests_from_runner = runner_with_params.collect_tests()
mock_execute.assert_called_with(
Expand All @@ -159,7 +159,7 @@ def test_process_label_analysis_result(self, mocker):
"present_diff_labels": ["test_in_diff"],
"global_level_labels": ["test_global"],
}
mock_execute = mocker.patch.object(PythonStandardRunner, "_execute_pytest")
mock_execute = mocker.patch.object(PytestStandardRunner, "_execute_pytest")

self.runner.process_labelanalysis_result(
LabelAnalysisRequestResult(label_analysis_result)
Expand All @@ -185,10 +185,10 @@ def test_process_label_analysis_result_diff_coverage_root(self, mocker):
"present_diff_labels": ["test_in_diff"],
"global_level_labels": ["test_global"],
}
mock_execute = mocker.patch.object(PythonStandardRunner, "_execute_pytest")
mock_execute = mocker.patch.object(PytestStandardRunner, "_execute_pytest")

config_params = dict(coverage_root="coverage_root/")
runner_with_params = PythonStandardRunner(config_params)
runner_with_params = PytestStandardRunner(config_params)
runner_with_params.process_labelanalysis_result(
LabelAnalysisRequestResult(label_analysis_result)
)
Expand All @@ -213,13 +213,13 @@ def test_process_label_analysis_result_with_options(self, mocker):
"present_diff_labels": ["test_in_diff"],
"global_level_labels": ["test_global"],
}
mock_execute = mocker.patch.object(PythonStandardRunner, "_execute_pytest")
mock_execute = mocker.patch.object(PytestStandardRunner, "_execute_pytest")
mock_warning = mocker.patch.object(runner_logger, "warning")

runner_config = {
"execute_tests_options": ["-s", "--cov-report=xml", "--cov=something"]
}
runner = PythonStandardRunner(runner_config)
runner = PytestStandardRunner(runner_config)
runner.process_labelanalysis_result(
LabelAnalysisRequestResult(label_analysis_result)
)
Expand Down Expand Up @@ -251,7 +251,7 @@ def test_process_label_analysis_skip_all_tests(self, mocker):
"present_diff_labels": [],
"global_level_labels": [],
}
mock_execute = mocker.patch.object(PythonStandardRunner, "_execute_pytest")
mock_execute = mocker.patch.object(PytestStandardRunner, "_execute_pytest")

self.runner.process_labelanalysis_result(
LabelAnalysisRequestResult(label_analysis_result)
Expand Down
22 changes: 17 additions & 5 deletions tests/runners/test_runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,34 @@

from codecov_cli.runners import _load_runner_from_yaml, get_runner
from codecov_cli.runners.dan_runner import DoAnythingNowRunner
from codecov_cli.runners.python_standard_runner import PythonStandardRunner
from codecov_cli.runners.pytest_standard_runner import PytestStandardRunner
from tests.factory import FakeRunner


class TestRunners(object):
def test_get_standard_runners(self):
assert isinstance(get_runner({}, "python"), PythonStandardRunner)
assert isinstance(get_runner({}, "pytest"), PytestStandardRunner)
assert isinstance(get_runner({}, "dan"), DoAnythingNowRunner)
# TODO: Extend with other standard runners once we create them (e.g. JS)

def test_python_standard_runner_with_options(self):
def test_pytest_standard_runner_with_options_backwards_compatible(self):
config_params = dict(
collect_tests_options=["--option=value", "-option"],
)
runner_instance = get_runner({"runners": {"python": config_params}}, "python")
assert isinstance(runner_instance, PythonStandardRunner)
runner_instance = get_runner({"runners": {"pytest": config_params}}, "pytest")
assert isinstance(runner_instance, PytestStandardRunner)
assert (
runner_instance.params.collect_tests_options
== config_params["collect_tests_options"]
)
assert runner_instance.params.coverage_root == "./"

def test_pytest_standard_runner_with_options_backwards_compatible(self):
config_params = dict(
collect_tests_options=["--option=value", "-option"],
)
runner_instance = get_runner({"runners": {"python": config_params}}, "pytest")
assert isinstance(runner_instance, PytestStandardRunner)
assert (
runner_instance.params.collect_tests_options
== config_params["collect_tests_options"]
Expand Down

0 comments on commit cab36bc

Please sign in to comment.