| |
| |
| """Collection of pytest fixtures used in conda.notices tests.""" |
|
|
| from pathlib import Path |
| from unittest import mock |
|
|
| import pytest |
|
|
| from ...base.constants import DEFAULTS_CHANNEL_NAME, NOTICES_CACHE_SUBDIR |
| from ...base.context import reset_context |
| from ...cli.conda_argparse import generate_parser |
|
|
|
|
| @pytest.fixture(scope="function") |
| def notices_cache_dir(tmpdir): |
| """ |
| Fixture that creates the notices cache dir while also mocking |
| out a call to user_cache_dir. |
| """ |
| with mock.patch("conda.notices.cache.user_cache_dir") as user_cache_dir: |
| user_cache_dir.return_value = tmpdir |
| cache_dir = Path(tmpdir).joinpath(NOTICES_CACHE_SUBDIR) |
| cache_dir.mkdir(parents=True, exist_ok=True) |
|
|
| yield cache_dir |
|
|
|
|
| @pytest.fixture(scope="function") |
| def notices_mock_fetch_get_session(): |
| with mock.patch("conda.notices.fetch.get_session") as mock_get_session: |
| mock_get_session.return_value = mock.MagicMock() |
| yield mock_get_session |
|
|
|
|
| @pytest.fixture(scope="function") |
| def conda_notices_args_n_parser(): |
| parser = generate_parser() |
| args = parser.parse_args(["notices", f"--channel={DEFAULTS_CHANNEL_NAME}"]) |
| reset_context((), args) |
|
|
| return args, parser |
|
|