mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 09:16:36 +01:00
OE-core commit fcc59cbcdb1550489d372edf9f465efa7165245f /
poky commit 748ddc39e5 added a new test, but
in the wrong location.
I took the patch from Alex's branch but renamed it from meta/lib/oeqa/runtime/skeleton.py to meta/lib/oeqa/skeletoninit.py before sending. This was
unintentional, it should have been under meta/lib/oeqa/runtime.
(From OE-Core rev: f12c346ef48cb44be2e356e4cf4f28d015c3f507)
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
29 lines
1.5 KiB
Python
29 lines
1.5 KiB
Python
# This test should cover https://bugzilla.yoctoproject.org/tr_show_case.cgi?case_id=284 testcase
|
|
# Note that the image under test must have meta-skeleton layer in bblayers and IMAGE_INSTALL_append = " service" in local.conf
|
|
|
|
import unittest
|
|
from oeqa.oetest import oeRuntimeTest
|
|
from oeqa.utils.decorators import *
|
|
|
|
def setUpModule():
|
|
if not oeRuntimeTest.hasPackage("service"):
|
|
skipModule("No service package in image")
|
|
|
|
|
|
class SkeletonBasicTest(oeRuntimeTest):
|
|
|
|
@skipUnlessPassed('test_ssh')
|
|
@unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager"), "Not appropiate for systemd image")
|
|
def test_skeleton_availability(self):
|
|
(status, output) = self.target.run('ls /etc/init.d/skeleton')
|
|
self.assertEqual(status, 0, msg = "skeleton init script not found. Output:\n%s " % output)
|
|
(status, output) = self.target.run('ls /usr/sbin/skeleton-test')
|
|
self.assertEqual(status, 0, msg = "skeleton-test not found. Output:\n%s" % output)
|
|
|
|
@skipUnlessPassed('test_skeleton_availability')
|
|
@unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager"), "Not appropiate for systemd image")
|
|
def test_skeleton_script(self):
|
|
output1 = self.target.run("/etc/init.d/skeleton start")[1]
|
|
(status, output2) = self.target.run(oeRuntimeTest.pscmd + ' | grep [s]keleton-test')
|
|
self.assertEqual(status, 0, msg = "Skeleton script could not be started:\n%s\n%s" % (output1, output2))
|