import logging import os import pathlib import sys from collections import defaultdict
import pytest from mozbuild.base import MozbuildObject from mozlint.parser import Parser from mozlint.pathutils import findobject from mozlint.result import ResultSummary from mozlog.structuredlog import StructuredLogger from mozpack import path
here = path.abspath(path.dirname(__file__))
build = MozbuildObject.from_environment(cwd=here, virtualenv_name="python-test")
def pytest_generate_tests(metafunc): """Finds, loads and returns the config for the linter name specified by the
LINTER global variable in the calling module.
This implies that each test file (that uses this fixture) should only be
used to test a single linter. If no LINTER variable is defined, the test
will fail. """ if"config"in metafunc.fixturenames: ifnot hasattr(metafunc.module, "LINTER"):
pytest.fail( "'config' fixture used from a module that didn't set the LINTER variable"
)
name = metafunc.module.LINTER
config_path = path.join(lintdir, "{}.yml".format(name))
parser = Parser(build.topsrcdir)
configs = parser.parse(config_path)
config_names = {config["name"] for config in configs}
marker = metafunc.definition.get_closest_marker("lint_config") if marker:
config_name = marker.kwargs["name"] if config_name notin config_names:
pytest.fail(f"lint config {config_name} not present in {name}.yml")
configs = [
config for config in configs if config["name"] == marker.kwargs["name"]
]
ids = [config["name"] for config in configs]
metafunc.parametrize("config", configs, ids=ids)
@pytest.fixture(scope="module") def root(request): """Return the root directory for the files of the linter under test.
For example, with LINTER=flake8 this would be tools/lint/test/files/flake8. """ ifnot hasattr(request.module, "LINTER"):
pytest.fail( "'root' fixture used from a module that didn't set the LINTER variable"
) return path.join(here, "files", request.module.LINTER)
@pytest.fixture(scope="module") def paths(root): """Return a function that can resolve file paths relative to the linter
under test.
Can be used like `paths('foo.py', 'bar/baz')`. This will return a list of
absolute paths under the `root` files directory. """
def _inner(*paths): ifnot paths: return [root] return [path.normpath(path.join(root, p)) for p in paths]
return _inner
@pytest.fixture(autouse=True) def run_setup(config): """Make sure that if the linter named in the LINTER global variable has a
setup function, it gets called before running the tests. """ if"setup"notin config: return
if config["name"] == "clang-format": # Skip the setup for the clang-format linter, as it requires a Mach context # (which we may not have if pytest is invoked directly). return
@pytest.fixture def lint(config, root, request): """Find and return the 'lint' function for the external linter named in the
LINTER global variable.
This will automatically passin the 'config'and'root' arguments ifnot
specified. """
if hasattr(request.module, "fixed"):
request.module.fixed = 0
try:
func = findobject(config["payload"]) except (ImportError, ValueError):
pytest.fail( "could not resolve a lint function from '{}'".format(config["payload"])
)
results = func(paths, config, root=root, **lintargs) if hasattr(request.module, "fixed") and isinstance(results, dict):
request.module.fixed += results["fixed"]
if isinstance(results, dict):
results = results["results"]
if isinstance(results, (list, tuple)):
results = sorted(results)
ifnot collapse_results: return results
ret = defaultdict(list) for r in results:
ret[r.relpath].append(r) return ret
return wrapper
@pytest.fixture def structuredlog_lint(config, root, logger=None): """Find and return the 'lint' function for the external linter named in the
LINTER global variable. This variant of the lint function isfor linters that
use the 'structuredlog' type.
This will automatically passin the 'config'and'root' arguments ifnot
specified. """ try:
func = findobject(config["payload"]) except (ImportError, ValueError):
pytest.fail( "could not resolve a lint function from '{}'".format(config["payload"])
)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.