diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2013-08-09 16:26:40 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-13 23:06:00 +0100 |
commit | 1990a6c507240fff0c8a65e28b065096bf4031e5 (patch) | |
tree | 8e73fe82580d8e77657d6273319c5e4517c89165 /meta/lib/oeqa/runtime | |
parent | 0ba78c1162bb125850a0ee504ca6fbe5bf21247f (diff) | |
download | ast2050-yocto-poky-1990a6c507240fff0c8a65e28b065096bf4031e5.zip ast2050-yocto-poky-1990a6c507240fff0c8a65e28b065096bf4031e5.tar.gz |
lib/oeqa/runtime: rework syslog test
Add separate tests for restarting syslog and using logger, and
skip the configuration test for systemd images which always fail
because syslog's systemd service doesn't read a config by default
(see YB#4860).
(From OE-Core rev: c75f3e2385dde44ee96e33f4e5d064894dfb7d52)
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r-- | meta/lib/oeqa/runtime/syslog.py | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/meta/lib/oeqa/runtime/syslog.py b/meta/lib/oeqa/runtime/syslog.py index cec4f97..5ff2962 100644 --- a/meta/lib/oeqa/runtime/syslog.py +++ b/meta/lib/oeqa/runtime/syslog.py @@ -14,24 +14,33 @@ class SyslogTest(oeRuntimeTest): self.assertEqual(status, 1, msg="status and output: %s and %s" % (status,output)) @skipUnlessPassed("test_syslog_help") - def test_syslogd_running(self): + 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): - def setUp(self): - self.target.run('echo "LOGFILE=/var/log/test" >> /etc/syslog-startup.conf') + @skipUnlessPassed("test_syslog_running") + def test_syslog_logger(self): + (status,output) = self.target.run('logger foobar && grep foobar /var/log/messages') + self.assertEqual(status, 0, msg="Test log string not found in /var/log/messages. Output: %s " % output) - @skipUnlessPassed("test_syslogd_running") - def test_syslogd_configurable(self): + @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') + + @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) - - def tearDown(self): self.target.run("sed -i 's#LOGFILE=/var/log/test##' /etc/syslog-startup.conf") + self.target.run('/etc/init.d/syslog restart') |