blob: 294ba4a4a0672b2513c3e510334e4e5fae468549 [file] [log] [blame]
Andrew Geissler82c905d2020-04-13 13:39:40 -05001#
2# SPDX-License-Identifier: MIT
3#
4
5import uuid
6
7from oeqa.selftest.case import OESelftestTestCase
Patrick Williams45852732022-04-02 08:58:32 -05008from oeqa.utils.commands import bitbake
Andrew Geissler82c905d2020-04-13 13:39:40 -05009
10class SysrootTests(OESelftestTestCase):
11 def test_sysroot_cleanup(self):
12 """
13 Build sysroot test which depends on virtual/sysroot-test for one machine,
14 switch machine, switch provider of virtual/sysroot-test and check that the
15 sysroot is correctly cleaned up. The files in the two providers overlap
16 so can cause errors if the sysroot code doesn't function correctly.
17 Yes, sysroot-test should be machine specific really to avoid this, however
18 the sysroot cleanup should also work [YOCTO #13702].
19 """
20
21 uuid1 = uuid.uuid4()
22 uuid2 = uuid.uuid4()
23
24 self.write_config("""
25PREFERRED_PROVIDER_virtual/sysroot-test = "sysroot-test-arch1"
26MACHINE = "qemux86"
Patrick Williams213cb262021-08-07 19:21:33 -050027TESTSTRING:pn-sysroot-test-arch1 = "%s"
28TESTSTRING:pn-sysroot-test-arch2 = "%s"
Andrew Geissler82c905d2020-04-13 13:39:40 -050029""" % (uuid1, uuid2))
30 bitbake("sysroot-test")
31 self.write_config("""
32PREFERRED_PROVIDER_virtual/sysroot-test = "sysroot-test-arch2"
33MACHINE = "qemux86copy"
Patrick Williams213cb262021-08-07 19:21:33 -050034TESTSTRING:pn-sysroot-test-arch1 = "%s"
35TESTSTRING:pn-sysroot-test-arch2 = "%s"
Andrew Geissler82c905d2020-04-13 13:39:40 -050036""" % (uuid1, uuid2))
37 bitbake("sysroot-test")
Andrew Geissler615f2f12022-07-15 14:00:58 -050038
39 def test_sysroot_max_shebang(self):
40 """
41 Summary: Check max shebang triggers. To confirm [YOCTO #11053] is closed.
42 Expected: Fail when a shebang bigger than the max shebang-size is reached.
43 Author: Paulo Neves <ptsneves@gmail.com>
44 """
45 expected = "maximum shebang size exceeded, the maximum size is 128. [shebang-size]"
46 res = bitbake("sysroot-shebang-test-native -c populate_sysroot", ignore_status=True)
47 self.assertTrue(expected in res.output, msg=res.output)
48 self.assertTrue(res.status != 0)
49
50 def test_sysroot_la(self):
51 """
52 Summary: Check that workdir paths are not contained in .la files.
53 Expected: Fail when a workdir path is found in the file content.
54 Author: Paulo Neves <ptsneves@gmail.com>
55 """
56 expected = "la-test.la failed sanity test (workdir) in path"
57
58 res = bitbake("sysroot-la-test -c populate_sysroot", ignore_status=True)
59 self.assertTrue(expected in res.output, msg=res.output)
60 self.assertTrue('[la]' in res.output, msg=res.output)
61 self.assertTrue(res.status != 0)
62
63 res = bitbake("sysroot-la-test-native -c populate_sysroot", ignore_status=True)
64 self.assertTrue(expected in res.output, msg=res.output)
65 self.assertTrue('[la]' in res.output, msg=res.output)
66 self.assertTrue(res.status != 0)
67
68 def test_sysroot_pkgconfig(self):
69 """
70 Summary: Check that tmpdir paths are not contained in .pc files.
71 Expected: Fail when a tmpdir path is found in the file content.
72 Author: Paulo Neves <ptsneves@gmail.com>
73 """
74 expected = "test.pc failed sanity test (tmpdir) in path"
75
76 res = bitbake("sysroot-pc-test -c populate_sysroot", ignore_status=True)
77 self.assertTrue('[pkgconfig]' in res.output, msg=res.output)
78 self.assertTrue(expected in res.output, msg=res.output)
79 self.assertTrue(res.status != 0)
80
81 res = bitbake("sysroot-pc-test-native -c populate_sysroot", ignore_status=True)
82 self.assertTrue(expected in res.output, msg=res.output)
83 self.assertTrue('[pkgconfig]' in res.output, msg=res.output)
84 self.assertTrue(res.status != 0)