aboutsummaryrefslogtreecommitdiff
blob: cf7ef09060c2823b75c953325ddc6ce2609c9b3f (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import shutil
from unittest import mock

import pytest
from pkgcore.const import EBD_PATH
from pkgcore.ebuild import eapi
from pkgcore.ebuild.eapi import EAPI, eapi6, get_eapi


def test_get_eapi():
    # unknown EAPI
    unknown_eapi = get_eapi("unknown")
    assert unknown_eapi in EAPI.unknown_eapis.values()
    # check that unknown EAPI is now registered as an unknown
    assert unknown_eapi == get_eapi("unknown")

    # known EAPI
    eapi = get_eapi("6")
    assert eapi6 == eapi


class TestEAPI:
    def test_register(self, tmp_path):
        # re-register known EAPI
        with pytest.raises(ValueError):
            EAPI.register(magic="0")

        mock_ebd_temp = str(shutil.copytree(EBD_PATH, tmp_path / "ebd"))
        with mock.patch(
            "pkgcore.ebuild.eapi.bash_version"
        ) as bash_version, mock.patch.dict(eapi.EAPI.known_eapis), mock.patch(
            "pkgcore.ebuild.eapi.const.EBD_PATH", mock_ebd_temp
        ):
            # inadequate bash version
            bash_version.return_value = "3.1"
            with pytest.raises(SystemExit) as excinfo:
                new_eapi = EAPI.register(magic="new", optionals={"bash_compat": "3.2"})
            assert (
                "EAPI 'new' requires >=bash-3.2, system version: 3.1"
                == excinfo.value.args[0]
            )

            # adequate system bash versions
            bash_version.return_value = "3.2"
            test_eapi = EAPI.register(magic="test", optionals={"bash_compat": "3.2"})
            assert test_eapi._magic == "test"
            bash_version.return_value = "4.2"
            test_eapi = EAPI.register(magic="test1", optionals={"bash_compat": "4.1"})
            assert test_eapi._magic == "test1"

    def test_is_supported(self, tmp_path, caplog):
        assert eapi6.is_supported

        mock_ebd_temp = str(shutil.copytree(EBD_PATH, tmp_path / "ebd"))
        with mock.patch.dict(eapi.EAPI.known_eapis), mock.patch(
            "pkgcore.ebuild.eapi.const.EBD_PATH", mock_ebd_temp
        ):
            # partially supported EAPI is flagged as such
            test_eapi = EAPI.register("test", optionals={"is_supported": False})
            assert test_eapi.is_supported
            assert caplog.text.endswith("EAPI 'test' isn't fully supported\n")

            # unsupported/unknown EAPI is flagged as such
            unknown_eapi = get_eapi("blah")
            assert not unknown_eapi.is_supported

    def test_inherits(self):
        for eapi_str, eapi_obj in EAPI.known_eapis.items():
            objs = (get_eapi(str(x)) for x in range(int(eapi_str), -1, -1))
            assert list(map(str, eapi_obj.inherits)) == list(map(str, objs))

    def test_ebd_env(self):
        for eapi_str, eapi_obj in EAPI.known_eapis.items():
            assert eapi_obj.ebd_env["EAPI"] == eapi_str