kumquat-buildroot/support/testing/tests/init/test_openrc.py
Adam Duskett 3204b01f53 package/openrc: add split-user support
Also, introduce a new test in support/testing/tests/init/test_openrc.py that
ensures split-user support works properly.

Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-11-01 19:12:22 +01:00

60 lines
1.5 KiB
Python

from tests.init.base import InitSystemBase as InitSystemBase
class InitSystemOpenrcBase(InitSystemBase):
config = \
"""
BR2_arm=y
BR2_cortex_a9=y
BR2_ARM_ENABLE_VFP=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_INIT_OPENRC=y
BR2_TARGET_GENERIC_GETTY_PORT="ttyAMA0"
# BR2_TARGET_ROOTFS_TAR is not set
"""
def check_init(self):
super(InitSystemOpenrcBase, self).check_init('/sbin/openrc-init')
# Test all services are OK
output, _ = self.emulator.run("rc-status -c")
self.assertEqual(len(output), 0)
class TestInitSystemOpenrcRoFull(InitSystemOpenrcBase):
config = InitSystemOpenrcBase.config + \
"""
BR2_SYSTEM_DHCP="eth0"
# BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW is not set
BR2_TARGET_ROOTFS_SQUASHFS=y
"""
def test_run(self):
self.start_emulator("squashfs")
self.check_init()
class TestInitSystemOpenrcRwFull(InitSystemOpenrcBase):
config = InitSystemOpenrcBase.config + \
"""
BR2_SYSTEM_DHCP="eth0"
BR2_TARGET_ROOTFS_EXT2=y
"""
def test_run(self):
self.start_emulator("ext2")
self.check_init()
class TestInitSystemOpenrcMergedUsrFull(InitSystemOpenrcBase):
config = InitSystemOpenrcBase.config + \
"""
BR2_ROOTFS_MERGED_USR=y
BR2_SYSTEM_DHCP="eth0"
BR2_TARGET_ROOTFS_EXT2=y
"""
def test_run(self):
self.start_emulator("ext2")
self.check_init()