summaryrefslogtreecommitdiff
path: root/cloudinit/conftest.py
blob: 6a1c63e926685ad68c1bf6bbbb6056591c6075ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from unittest import mock

import pytest


@pytest.yield_fixture(autouse=True)
def disable_subp_usage(request):
    """
    Across all (pytest) tests, ensure that util.subp is not invoked.

    Note that this can only catch invocations where the util module is imported
    and ``util.subp(...)`` is called.  ``from cloudinit.util import subp``
    imports happen before the patching here (or the CiTestCase monkey-patching)
    happens, so are left untouched.

    To allow a particular test method or class to use util.subp you can set the
    parameter passed to this fixture to False using pytest.mark.parametrize::

        @pytest.mark.parametrize("disable_subp_usage", [False], indirect=True)
        def test_whoami(self):
            util.subp(["whoami"])

    This fixture (roughly) mirrors the functionality of
    CiTestCase.allowed_subp.

    TODO:
        * Enable select subp usage (i.e. allowed_subp=[...])
    """
    should_disable = getattr(request, "param", True)
    if should_disable:
        with mock.patch('cloudinit.util.subp', autospec=True) as m_subp:
            m_subp.side_effect = AssertionError("Unexpectedly used util.subp")
            yield
    else:
        yield