xref: /openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/intercept.py (revision 92b42cb35d755f8cfe6c17d403711a536e0f0721)
1#
2# Copyright OpenEmbedded Contributors
3#
4# SPDX-License-Identifier: MIT
5#
6
7from oeqa.selftest.case import OESelftestTestCase
8from oeqa.utils.commands import bitbake
9
10class GitCheck(OESelftestTestCase):
11    def test_git_intercept(self):
12        """
13        Git binaries with CVE-2022-24765 fixed will refuse to operate on a
14        repository which is owned by a different user. This breaks our
15        do_install task as that runs inside pseudo, so the git repository is
16        owned by the build user but git is running as (fake)root.
17
18        We have an intercept which disables pseudo, so verify that it works.
19        """
20        bitbake("git-submodule-test -c test_git_as_user")
21        bitbake("git-submodule-test -c test_git_as_root")
22