blob: 406b316f2481af73448be4d9371f198ed804c221 [file] [log] [blame] [edit]
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE
# Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt
from __future__ import annotations
from collections.abc import Callable, Sequence
import pytest
from astroid.nodes.scoped_nodes import Module
from pylint.lint import augmented_sys_path, discover_package_path
from pylint.pyreverse.inspector import Project, project_from_files
from pylint.testutils.pyreverse import PyreverseConfig
from pylint.typing import GetProjectCallable
@pytest.fixture()
def default_args() -> Sequence[str]:
"""Provides default command-line arguments for tests."""
return ["data"]
@pytest.fixture()
def default_config() -> PyreverseConfig:
"""Provides default configuration for tests."""
return PyreverseConfig()
@pytest.fixture()
def colorized_dot_config() -> PyreverseConfig:
return PyreverseConfig(
output_format="dot",
colorized=True,
)
@pytest.fixture()
def no_standalone_dot_config() -> PyreverseConfig:
return PyreverseConfig(
output_format="dot",
no_standalone=True,
)
@pytest.fixture()
def puml_config() -> PyreverseConfig:
return PyreverseConfig(
output_format="puml",
)
@pytest.fixture()
def colorized_puml_config() -> PyreverseConfig:
return PyreverseConfig(
output_format="puml",
colorized=True,
)
@pytest.fixture()
def mmd_config() -> PyreverseConfig:
return PyreverseConfig(
output_format="mmd",
colorized=False,
)
@pytest.fixture()
def html_config() -> PyreverseConfig:
return PyreverseConfig(
output_format="html",
colorized=False,
)
@pytest.fixture()
def depth_limited_config(default_max_depth: int) -> PyreverseConfig:
return PyreverseConfig(
max_depth=default_max_depth,
)
@pytest.fixture(scope="session")
def get_project() -> GetProjectCallable:
def _get_project(module: str, name: str | None = "No Name") -> Project:
"""Return an astroid project representation."""
def _astroid_wrapper(
func: Callable[[str], Module], modname: str, _verbose: bool = False
) -> Module:
return func(modname)
with augmented_sys_path([discover_package_path(module, [])]):
project = project_from_files([module], _astroid_wrapper, project_name=name)
return project
return _get_project