Skip to content

plugin

ensembl.utils.plugin

Ensembl's pytest plugin with useful unit testing hooks and fixtures.

fixture_assert_files()

Returns a function that asserts if two text files are equal, or prints their differences.

Source code in src/ensembl/utils/plugin.py
 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
@pytest.fixture(name="assert_files")
def fixture_assert_files() -> Callable[[StrPath, StrPath], None]:
    """Returns a function that asserts if two text files are equal, or prints their differences."""

    def _assert_files(result_path: StrPath, expected_path: StrPath) -> None:
        """Asserts if two files are equal, or prints their differences.

        Args:
            result_path: Path to results (test-made) file.
            expected_path: Path to expected file.

        """
        with open(result_path, "r") as result_fh:
            results = result_fh.readlines()
        with open(expected_path, "r") as expected_fh:
            expected = expected_fh.readlines()
        files_diff = list(
            unified_diff(
                results,
                expected,
                fromfile=f"Test-made file {Path(result_path).name}",
                tofile=f"Expected file {Path(expected_path).name}",
            )
        )
        assert_message = f"Test-made and expected files differ\n{' '.join(files_diff)}"
        assert len(files_diff) == 0, assert_message

    return _assert_files

fixture_db_factory(request, data_dir)

Yields a unit test database factory.

Parameters:

Name Type Description Default
request FixtureRequest

Fixture that provides information of the requesting test function.

required
data_dir Path

Fixture that provides the path to the test data folder matching the test's name.

required
Source code in src/ensembl/utils/plugin.py
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
@pytest.fixture(name="db_factory", scope="module")
def fixture_db_factory(request: FixtureRequest, data_dir: Path) -> Generator[Callable, None, None]:
    """Yields a unit test database factory.

    Args:
        request: Fixture that provides information of the requesting test function.
        data_dir: Fixture that provides the path to the test data folder matching the test's name.

    """
    created: dict[str, UnitTestDB] = {}
    server_url = request.config.getoption("server")

    def _db_factory(src: StrPath | None, name: str | None = None) -> UnitTestDB:
        """Returns a unit test database.

        Args:
            src: Directory path where the test database schema and content files are located, if any.
            name: Name to give to the new database. See `UnitTestDB` for more information.

        """
        if src is not None:
            src_path = Path(src)
            if not src_path.is_absolute():
                src_path = data_dir / src_path
            db_key = name if name else src_path.name
            dump_dir: Path | None = src_path if src_path.exists() else None
        else:
            db_key = name if name else "dbkey"
            dump_dir = None
        return created.setdefault(db_key, UnitTestDB(server_url, dump_dir=dump_dir, name=name))

    yield _db_factory
    # Drop all unit test databases unless the user has requested to keep them
    if not request.config.getoption("keep_dbs"):
        for test_db in created.values():
            test_db.drop()

local_data_dir(request)

Returns the path to the test data folder matching the test's name.

Parameters:

Name Type Description Default
request FixtureRequest

Fixture that provides information of the requesting test function.

required
Source code in src/ensembl/utils/plugin.py
75
76
77
78
79
80
81
82
83
@pytest.fixture(name="data_dir", scope="module")
def local_data_dir(request: FixtureRequest) -> Path:
    """Returns the path to the test data folder matching the test's name.

    Args:
        request: Fixture that provides information of the requesting test function.

    """
    return Path(request.module.__file__).with_suffix("")

pytest_addoption(parser)

Registers argparse-style options for Ensembl's unit testing.

Pytest initialisation hook <https://docs.pytest.org/en/latest/reference.html#_pytest.hookspec.pytest_addoption>_.

Parameters:

Name Type Description Default
parser Parser

Parser for command line arguments and ini-file values.

required
Source code in src/ensembl/utils/plugin.py
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
def pytest_addoption(parser: Parser) -> None:
    """Registers argparse-style options for Ensembl's unit testing.

    `Pytest initialisation hook
    <https://docs.pytest.org/en/latest/reference.html#_pytest.hookspec.pytest_addoption>`_.

    Args:
        parser: Parser for command line arguments and ini-file values.

    """
    # Add the Ensembl unitary test parameters to pytest parser
    group = parser.getgroup("Ensembl unit testing")
    group.addoption(
        "--server",
        action="store",
        metavar="URL",
        dest="server",
        required=False,
        default=os.getenv("DB_HOST", "sqlite:///"),
        help="Server URL where to create the test database(s)",
    )
    group.addoption(
        "--keep-dbs",
        action="store_true",
        dest="keep_dbs",
        required=False,
        help="Do not remove the test databases (default: False)",
    )

pytest_report_header(config)

Presents extra information in the report header.

Parameters:

Name Type Description Default
config Config

Access to configuration values, pluginmanager and plugin hooks.

required
Source code in src/ensembl/utils/plugin.py
62
63
64
65
66
67
68
69
70
71
72
def pytest_report_header(config: Config) -> str:
    """Presents extra information in the report header.

    Args:
        config: Access to configuration values, pluginmanager and plugin hooks.

    """
    # Show server information, masking the password value
    server = config.getoption("server")
    server = re.sub(r"(//[^/]+:).*(@)", r"\1xxxxxx\2", server)
    return f"server: {server}"

test_dbs(request, db_factory)

Returns a dictionary of unit test databases with the database name as key.

Requires a list of dictionaries, each with keys src (mandatory) and name (optional), passed via request.param. See db_factory() for details about each key's value. This fixture is a wrapper of db_factory() intended to be used via indirect parametrization, for example::

@pytest.mark.parametrize(
    "test_dbs", [[{"src": "master"}, {"src": "master", "name": "master2"}]], indirect=True
)
def test_method(..., test_dbs: dict[str, UnitTestDB], ...):

Parameters:

Name Type Description Default
request FixtureRequest

Fixture that provides information of the requesting test function.

required
db_factory Callable

Fixture that provides a unit test database factory.

required
Source code in src/ensembl/utils/plugin.py
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
@pytest.fixture(scope="module")
def test_dbs(request: FixtureRequest, db_factory: Callable) -> dict[str, UnitTestDB]:
    """Returns a dictionary of unit test databases with the database name as key.

    Requires a list of dictionaries, each with keys `src` (mandatory) and `name` (optional), passed via
    `request.param`. See `db_factory()` for details about each key's value. This fixture is a wrapper of
    `db_factory()` intended to be used via indirect parametrization, for example::

        @pytest.mark.parametrize(
            "test_dbs", [[{"src": "master"}, {"src": "master", "name": "master2"}]], indirect=True
        )
        def test_method(..., test_dbs: dict[str, UnitTestDB], ...):


    Args:
        request: Fixture that provides information of the requesting test function.
        db_factory: Fixture that provides a unit test database factory.

    """
    databases = {}
    for argument in request.param:
        src = Path(argument["src"])
        name = argument.get("name", None)
        key = name if name else src.name
        databases[key] = db_factory(src=src, name=name)
    return databases