123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408 |
- import infra.basetest
- import re
- from tests.init.base import InitSystemBase as InitSystemBase
- # In the following tests, the read-only cases use the default settings,
- # which historically used both a factory to populate a tmpfs on /var,
- # and pre-populated /var at buildtime. Since these are the default
- # settings, and they proved to generate a system that ultimately boots,
- # we still want to keep testing that. See later, below, for the
- # specialised test cases.
- class InitSystemSystemdBase(InitSystemBase):
- config = \
- """
- BR2_arm=y
- BR2_cortex_a9=y
- BR2_ARM_ENABLE_VFP=y
- BR2_TOOLCHAIN_EXTERNAL=y
- BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
- BR2_INIT_SYSTEMD=y
- BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0"
- # BR2_TARGET_ROOTFS_TAR is not set
- BR2_PER_PACKAGE_DIRECTORIES=y
- """
- def check_systemd(self, fs):
- if "BR2_LINUX_KERNEL=y" in self.config:
- self.start_emulator(fs, "zImage", "vexpress-v2p-ca9")
- else:
- self.start_emulator(fs)
- self.check_init("/lib/systemd/systemd")
- # Test all units are OK
- output, _ = self.emulator.run("systemctl --no-pager --failed --no-legend")
- self.assertEqual(len(output), 0)
- # Test we can reach the DBus daemon
- self.assertRunOk("busctl --no-pager")
- # Test we can read at least one line from the journal
- output, _ = self.emulator.run("journalctl --no-pager --lines 1 --quiet")
- self.assertEqual(len(output), 1)
- # Check the network is up
- self.check_network("eth0")
- class TestInitSystemSystemdRoNetworkd(InitSystemSystemdBase):
- config = InitSystemSystemdBase.config + \
- """
- BR2_SYSTEM_DHCP="eth0"
- # BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
- BR2_TARGET_ROOTFS_SQUASHFS=y
- """
- def test_run(self):
- self.check_systemd("squashfs")
- class TestInitSystemSystemdRwNetworkd(InitSystemSystemdBase):
- config = InitSystemSystemdBase.config + \
- """
- BR2_SYSTEM_DHCP="eth0"
- BR2_TARGET_ROOTFS_EXT2=y
- """
- def test_run(self):
- self.check_systemd("ext2")
- class TestInitSystemSystemdRoIfupdown(InitSystemSystemdBase):
- config = InitSystemSystemdBase.config + \
- """
- BR2_SYSTEM_DHCP="eth0"
- # BR2_PACKAGE_SYSTEMD_NETWORKD is not set
- # BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
- BR2_TARGET_ROOTFS_SQUASHFS=y
- """
- def test_run(self):
- self.check_systemd("squashfs")
- class TestInitSystemSystemdRoIfupdownDbusbroker(TestInitSystemSystemdRoIfupdown):
- config = TestInitSystemSystemdRoIfupdown.config + \
- """
- BR2_PACKAGE_DBUS_BROKER=y
- """
- def test_run(self):
- # Parent class' test_run() method does exactly that, no more:
- self.check_systemd("squashfs")
- # Check that the dbus-broker daemon is running as non-root
- cmd = "find /proc/$(pidof dbus-broker) -maxdepth 1 -name exe -user dbus"
- out, _ = self.emulator.run(cmd)
- self.assertEqual(len(out), 1)
- class TestInitSystemSystemdRoIfupdownDbusbrokerDbus(TestInitSystemSystemdRoIfupdownDbusbroker):
- config = TestInitSystemSystemdRoIfupdownDbusbroker.config + \
- """
- BR2_PACKAGE_DBUS=y
- """
- class TestInitSystemSystemdRwIfupdown(InitSystemSystemdBase):
- config = InitSystemSystemdBase.config + \
- """
- BR2_SYSTEM_DHCP="eth0"
- # BR2_PACKAGE_SYSTEMD_NETWORKD is not set
- BR2_TARGET_ROOTFS_EXT2=y
- """
- def test_run(self):
- self.check_systemd("ext2")
- class TestInitSystemSystemdRwIfupdownDbusbroker(TestInitSystemSystemdRwIfupdown):
- config = TestInitSystemSystemdRwIfupdown.config + \
- """
- BR2_PACKAGE_DBUS_BROKER=y
- """
- def test_run(self):
- # Parent class' test_run() method does exactly that, no more:
- self.check_systemd("ext2")
- # Check that the dbus-broker daemon is running as non-root
- cmd = "find /proc/$(pidof dbus-broker) -maxdepth 1 -name exe -user dbus"
- out, _ = self.emulator.run(cmd)
- self.assertEqual(len(out), 1)
- class TestInitSystemSystemdRwIfupdownDbusbrokerDbus(TestInitSystemSystemdRwIfupdownDbusbroker):
- config = TestInitSystemSystemdRwIfupdownDbusbroker.config + \
- """
- BR2_PACKAGE_DBUS=y
- """
- class TestInitSystemSystemdRoFull(InitSystemSystemdBase):
- config = InitSystemSystemdBase.config + \
- """
- BR2_SYSTEM_DHCP="eth0"
- # BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
- BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE=y
- BR2_PACKAGE_SYSTEMD_BACKLIGHT=y
- BR2_PACKAGE_SYSTEMD_BINFMT=y
- BR2_PACKAGE_SYSTEMD_COREDUMP=y
- BR2_PACKAGE_SYSTEMD_FIRSTBOOT=y
- BR2_PACKAGE_SYSTEMD_HIBERNATE=y
- BR2_PACKAGE_SYSTEMD_IMPORTD=y
- BR2_PACKAGE_SYSTEMD_LOCALED=y
- BR2_PACKAGE_SYSTEMD_LOGIND=y
- BR2_PACKAGE_SYSTEMD_MACHINED=y
- BR2_PACKAGE_SYSTEMD_POLKIT=y
- BR2_PACKAGE_SYSTEMD_QUOTACHECK=y
- BR2_PACKAGE_SYSTEMD_RANDOMSEED=y
- BR2_PACKAGE_SYSTEMD_RFKILL=y
- BR2_PACKAGE_SYSTEMD_SMACK_SUPPORT=y
- BR2_PACKAGE_SYSTEMD_SYSUSERS=y
- BR2_PACKAGE_SYSTEMD_VCONSOLE=y
- BR2_TARGET_ROOTFS_SQUASHFS=y
- """
- def test_run(self):
- self.check_systemd("squashfs")
- class TestInitSystemSystemdRwFull(InitSystemSystemdBase):
- config = InitSystemSystemdBase.config + \
- """
- BR2_SYSTEM_DHCP="eth0"
- BR2_PACKAGE_SYSTEMD_JOURNAL_REMOTE=y
- BR2_PACKAGE_SYSTEMD_BACKLIGHT=y
- BR2_PACKAGE_SYSTEMD_BINFMT=y
- BR2_PACKAGE_SYSTEMD_COREDUMP=y
- BR2_PACKAGE_SYSTEMD_FIRSTBOOT=y
- BR2_PACKAGE_SYSTEMD_HIBERNATE=y
- BR2_PACKAGE_SYSTEMD_IMPORTD=y
- BR2_PACKAGE_SYSTEMD_LOCALED=y
- BR2_PACKAGE_SYSTEMD_LOGIND=y
- BR2_PACKAGE_SYSTEMD_MACHINED=y
- BR2_PACKAGE_SYSTEMD_POLKIT=y
- BR2_PACKAGE_SYSTEMD_QUOTACHECK=y
- BR2_PACKAGE_SYSTEMD_RANDOMSEED=y
- BR2_PACKAGE_SYSTEMD_RFKILL=y
- BR2_PACKAGE_SYSTEMD_SMACK_SUPPORT=y
- BR2_PACKAGE_SYSTEMD_SYSUSERS=y
- BR2_PACKAGE_SYSTEMD_VCONSOLE=y
- BR2_TARGET_ROOTFS_EXT2=y
- """
- def test_run(self):
- self.check_systemd("ext2")
- # The following tests are all about read-only rootfs, and exercise either
- # using an un-populated factory for /var, or an overlaysfs ontop of a
- # pre-populated /var. They all specialise the TestInitSystemSystemdRo*
- # test cases above.
- # Helper class for factory-based tests
- class InitSystemSystemdBaseFactory():
- config = \
- """
- # BR2_INIT_SYSTEMD_POPULATE_TMPFILES is not set
- BR2_ROOTFS_OVERLAY="{}"
- """.format(infra.filepath("tests/init/systemd-factory"))
- def test_run(self):
- super().test_run()
- # This one must be executed on the target, to check that
- # the factory feature works as expected
- out, exit_code = self.emulator.run("cat /var/foo/bar")
- self.assertEqual(exit_code, 0)
- self.assertEqual(out[0], "foobar")
- # /var/foo/bar is from the /var factory
- _, exit_code = self.emulator.run("test -e /usr/share/factory/var/foo/bar")
- self.assertEqual(exit_code, 0)
- # We can write in /var/foo/bar
- _, exit_code = self.emulator.run("echo barfoo >/var/foo/bar")
- self.assertEqual(exit_code, 0)
- # ... and it contains the new content
- out, exit_code = self.emulator.run("cat /var/foo/bar")
- self.assertEqual(exit_code, 0)
- self.assertEqual(out[0], "barfoo")
- # ... but the factory is umodified
- out, exit_code = self.emulator.run("cat /usr/share/factory/var/foo/bar")
- self.assertEqual(exit_code, 0)
- self.assertEqual(out[0], "foobar")
- class TestInitSystemSystemdRoNetworkdFactory(
- InitSystemSystemdBaseFactory,
- TestInitSystemSystemdRoNetworkd,
- ):
- config = InitSystemSystemdBaseFactory.config + \
- TestInitSystemSystemdRoNetworkd.config
- class TestInitSystemSystemdRoIfupdownFactory(
- InitSystemSystemdBaseFactory,
- TestInitSystemSystemdRoIfupdown,
- ):
- config = InitSystemSystemdBaseFactory.config + \
- TestInitSystemSystemdRoIfupdown.config
- class TestInitSystemSystemdRoIfupdownDbusbrokerFactory(
- InitSystemSystemdBaseFactory,
- TestInitSystemSystemdRoIfupdownDbusbroker,
- ):
- config = InitSystemSystemdBaseFactory.config + \
- TestInitSystemSystemdRoIfupdownDbusbroker.config
- class TestInitSystemSystemdRoIfupdownDbusbrokerDbusFactory(
- InitSystemSystemdBaseFactory,
- TestInitSystemSystemdRoIfupdownDbusbrokerDbus,
- ):
- config = InitSystemSystemdBaseFactory.config + \
- TestInitSystemSystemdRoIfupdownDbusbrokerDbus.config
- class TestInitSystemSystemdRoFullFactory(
- InitSystemSystemdBaseFactory,
- TestInitSystemSystemdRoFull,
- ):
- config = InitSystemSystemdBaseFactory.config + \
- TestInitSystemSystemdRoFull.config
- # Helper class for overlayfs-based tests
- class InitSystemSystemdBaseOverlayfs():
- config = \
- """
- # BR2_INIT_SYSTEMD_VAR_FACTORY is not set
- BR2_INIT_SYSTEMD_VAR_OVERLAYFS=y
- BR2_ROOTFS_OVERLAY="{}"
- BR2_LINUX_KERNEL=y
- BR2_LINUX_KERNEL_CUSTOM_VERSION=y
- BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.10.7"
- BR2_LINUX_KERNEL_DEFCONFIG="vexpress"
- BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="{}"
- BR2_LINUX_KERNEL_DTS_SUPPORT=y
- BR2_LINUX_KERNEL_INTREE_DTS_NAME="vexpress-v2p-ca9"
- """.format(infra.filepath("tests/init/systemd-factory"),
- infra.filepath("conf/overlayfs-kernel-fragment.config"))
- def test_run(self):
- super().test_run()
- # This one must be executed on the target, to check that
- # the tmpfiles pre-populate works as expected
- out, exit_code = self.emulator.run("cat /var/foo/bar")
- self.assertEqual(exit_code, 0)
- self.assertEqual(out[0], "foobar")
- # /var/foo/bar is from the pre-populated /var, so it should
- # not be present in the upper of the overlay
- _, exit_code = self.emulator.run("test -e /run/buildroot/mounts/var/upper/foo/bar")
- self.assertNotEqual(exit_code, 0)
- # We can write in /var/foo/bar
- _, exit_code = self.emulator.run("echo barfoo >/var/foo/bar")
- self.assertEqual(exit_code, 0)
- # ... and it contains the new content
- out, exit_code = self.emulator.run("cat /var/foo/bar")
- self.assertEqual(exit_code, 0)
- self.assertEqual(out[0], "barfoo")
- # ... and it to appears in the upper
- _, exit_code = self.emulator.run("test -e /run/buildroot/mounts/var/upper/foo/bar")
- self.assertEqual(exit_code, 0)
- # ... with the new content
- out, exit_code = self.emulator.run("cat /run/buildroot/mounts/var/upper/foo/bar")
- self.assertEqual(exit_code, 0)
- self.assertEqual(out[0], "barfoo")
- # ... while the lower still has the oldcontent
- out, exit_code = self.emulator.run("cat /run/buildroot/mounts/var/lower/foo/bar")
- self.assertEqual(exit_code, 0)
- self.assertEqual(out[0], "foobar")
- class TestInitSystemSystemdRoNetworkdOverlayfs(
- InitSystemSystemdBaseOverlayfs,
- TestInitSystemSystemdRoNetworkd,
- ):
- config = InitSystemSystemdBaseOverlayfs.config + \
- TestInitSystemSystemdRoNetworkd.config
- class TestInitSystemSystemdRoIfupdownOverlayfs(
- InitSystemSystemdBaseOverlayfs,
- TestInitSystemSystemdRoIfupdown,
- ):
- config = InitSystemSystemdBaseOverlayfs.config + \
- TestInitSystemSystemdRoIfupdown.config
- class TestInitSystemSystemdRoIfupdownDbusbrokerOverlayfs(
- InitSystemSystemdBaseOverlayfs,
- TestInitSystemSystemdRoIfupdownDbusbroker,
- ):
- config = InitSystemSystemdBaseOverlayfs.config + \
- TestInitSystemSystemdRoIfupdownDbusbroker.config
- class TestInitSystemSystemdRoIfupdownDbusbrokerDbusOverlayfs(
- InitSystemSystemdBaseOverlayfs,
- TestInitSystemSystemdRoIfupdownDbusbrokerDbus,
- ):
- config = InitSystemSystemdBaseOverlayfs.config + \
- TestInitSystemSystemdRoIfupdownDbusbrokerDbus.config
- class TestInitSystemSystemdRoFullOverlayfs(
- InitSystemSystemdBaseOverlayfs,
- TestInitSystemSystemdRoFull,
- ):
- config = InitSystemSystemdBaseOverlayfs.config + \
- TestInitSystemSystemdRoFull.config
- class InitSystemSystemdBaseOverlayfsVarBacking(InitSystemBase):
- @classmethod
- def gen_config(cls, overlaydir: str) -> str:
- return re.sub(
- r'^\s*BR2_ROOTFS_OVERLAY="(.*)"$',
- 'BR2_ROOTFS_OVERLAY="\\1 {}"'.format(infra.filepath(overlaydir)),
- TestInitSystemSystemdRoFullOverlayfs.config,
- flags=re.MULTILINE,
- )
- def check_var_mounted(self):
- self.assertRunOk("grep '^other-var-backing-store /run/buildroot/mounts/var tmpfs' /proc/mounts")
- class TestInitSystemSystemdRoFullOverlayfsVarBackingMountUnit(
- TestInitSystemSystemdRoFullOverlayfs,
- InitSystemSystemdBaseOverlayfsVarBacking,
- ):
- config = InitSystemSystemdBaseOverlayfsVarBacking.gen_config(
- 'tests/init/systemd-overlay-mount-unit',
- )
- def test_run(self):
- super().test_run()
- self.check_var_mounted()
- class TestInitSystemSystemdRoFullOverlayfsVarBackingFstab(
- TestInitSystemSystemdRoFullOverlayfs,
- InitSystemSystemdBaseOverlayfsVarBacking,
- ):
- config = InitSystemSystemdBaseOverlayfsVarBacking.gen_config(
- 'tests/init/systemd-overlay-fstab',
- )
- def test_run(self):
- super().test_run()
- self.check_var_mounted()
|