mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
(From OE-Core rev: 95b83084487d0712362ade8ac487999c3274bb96) Signed-off-by: Lucian Musat <georgex.l.musat@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
49 lines
2.3 KiB
Python
49 lines
2.3 KiB
Python
import unittest
|
|
from oeqa.oetest import oeRuntimeTest, skipModule
|
|
from oeqa.utils.decorators import *
|
|
|
|
def setUpModule():
|
|
if not oeRuntimeTest.hasPackage("syslog"):
|
|
skipModule("No syslog package in image")
|
|
|
|
class SyslogTest(oeRuntimeTest):
|
|
|
|
@skipUnlessPassed("test_ssh")
|
|
def test_syslog_help(self):
|
|
(status,output) = self.target.run('/sbin/syslogd --help')
|
|
self.assertEqual(status, 0, msg="status and output: %s and %s" % (status,output))
|
|
|
|
@testcase(201)
|
|
@skipUnlessPassed("test_syslog_help")
|
|
def test_syslog_running(self):
|
|
(status,output) = self.target.run(oeRuntimeTest.pscmd + ' | grep -i [s]yslogd')
|
|
self.assertEqual(status, 0, msg="no syslogd process, ps output: %s" % self.target.run(oeRuntimeTest.pscmd)[1])
|
|
|
|
|
|
class SyslogTestConfig(oeRuntimeTest):
|
|
|
|
@skipUnlessPassed("test_syslog_running")
|
|
def test_syslog_logger(self):
|
|
(status,output) = self.target.run('logger foobar && test -e /var/log/messages && grep foobar /var/log/messages || logread | grep foobar')
|
|
self.assertEqual(status, 0, msg="Test log string not found in /var/log/messages. Output: %s " % output)
|
|
|
|
@skipUnlessPassed("test_syslog_running")
|
|
def test_syslog_restart(self):
|
|
if "systemd" != oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager"):
|
|
(status,output) = self.target.run('/etc/init.d/syslog restart')
|
|
else:
|
|
(status,output) = self.target.run('systemctl restart syslog.service')
|
|
|
|
@testcase(202)
|
|
@skipUnlessPassed("test_syslog_restart")
|
|
@skipUnlessPassed("test_syslog_logger")
|
|
@unittest.skipIf("systemd" == oeRuntimeTest.tc.d.getVar("VIRTUAL-RUNTIME_init_manager"), "Not appropiate for systemd image")
|
|
def test_syslog_startup_config(self):
|
|
self.target.run('echo "LOGFILE=/var/log/test" >> /etc/syslog-startup.conf')
|
|
(status,output) = self.target.run('/etc/init.d/syslog restart')
|
|
self.assertEqual(status, 0, msg="Could not restart syslog service. Status and output: %s and %s" % (status,output))
|
|
(status,output) = self.target.run('logger foobar && grep foobar /var/log/test')
|
|
self.assertEqual(status, 0, msg="Test log string not found. Output: %s " % output)
|
|
self.target.run("sed -i 's#LOGFILE=/var/log/test##' /etc/syslog-startup.conf")
|
|
self.target.run('/etc/init.d/syslog restart')
|