mirror of
https://git.yoctoproject.org/poky
synced 2026-02-16 05:33:03 +01:00
testcase test_systemd_failed occasionally failed with below error: Failed to start Rotate log files. logrotate.service: Failed with result 'exit-code'. logrotate.service: Main process exited, code=exited, status=1/FAILURE error: stat of /var/log/logrotate_test failed: No such file or directory error: logrotate_test:1 lines must begin with a keyword or a filename (possibly in double quotes) above failure caused since testcase test_logrotate_wtmp add /etc/logrotate.d/logrotate_test, which need /var/log/logrotate_test, but there is no such file. so when logrotate.service is triggerd by logrotate.timer after testcase test_logrotate_wtmp is runned, the testcase test_systemd_failed will fail. these 3 lines are useless, so remove them to fix above problem. (From OE-Core rev: 22f5f7f86a4d47624c476be00e5121009c48cb7b) Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
72 lines
3.6 KiB
Python
72 lines
3.6 KiB
Python
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
# This test should cover https://bugzilla.yoctoproject.org/tr_show_case.cgi?case_id=289 testcase
|
|
# Note that the image under test must have logrotate installed
|
|
|
|
from oeqa.runtime.case import OERuntimeTestCase
|
|
from oeqa.core.decorator.depends import OETestDepends
|
|
from oeqa.runtime.decorator.package import OEHasPackage
|
|
|
|
class LogrotateTest(OERuntimeTestCase):
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.tc.target.run('cp /etc/logrotate.d/wtmp $HOME/wtmp.oeqabak')
|
|
|
|
@classmethod
|
|
def tearDownClass(cls):
|
|
cls.tc.target.run('mv -f $HOME/wtmp.oeqabak /etc/logrotate.d/wtmp && rm -rf $HOME/logrotate_dir')
|
|
cls.tc.target.run('rm -rf /var/log/logrotate_testfile && rm -rf /etc/logrotate.d/logrotate_testfile')
|
|
|
|
@OETestDepends(['ssh.SSHTest.test_ssh'])
|
|
@OEHasPackage(['logrotate'])
|
|
def test_logrotate_wtmp(self):
|
|
|
|
# /var/log/wtmp may not always exist initially, so use touch to ensure it is present
|
|
status, output = self.target.run('touch /var/log/wtmp')
|
|
msg = ('Could not create/update /var/log/wtmp with touch')
|
|
self.assertEqual(status, 0, msg = msg)
|
|
|
|
status, output = self.target.run('mkdir $HOME/logrotate_dir')
|
|
msg = ('Could not create logrotate_dir. Output: %s' % output)
|
|
self.assertEqual(status, 0, msg = msg)
|
|
|
|
status, output = self.target.run('echo "create \n olddir $HOME/logrotate_dir \n include /etc/logrotate.d/wtmp" > /tmp/logrotate-test.conf')
|
|
msg = ('Could not write to /tmp/logrotate-test.conf')
|
|
self.assertEqual(status, 0, msg = msg)
|
|
|
|
# If logrotate fails to rotate the log, view the verbose output of logrotate to see what prevented it
|
|
_, logrotate_output = self.target.run('logrotate -vf /tmp/logrotate-test.conf')
|
|
status, _ = self.target.run('find $HOME/logrotate_dir -type f | grep wtmp.1')
|
|
msg = ("logrotate did not successfully rotate the wtmp log. Output from logrotate -vf: \n%s" % (logrotate_output))
|
|
self.assertEqual(status, 0, msg = msg)
|
|
|
|
@OETestDepends(['logrotate.LogrotateTest.test_logrotate_wtmp'])
|
|
def test_logrotate_newlog(self):
|
|
|
|
status, output = self.target.run('echo "oeqa logrotate test file" > /var/log/logrotate_testfile')
|
|
msg = ('Could not create logrotate test file in /var/log')
|
|
self.assertEqual(status, 0, msg = msg)
|
|
|
|
status, output = self.target.run('echo "/var/log/logrotate_testfile {\n missingok \n monthly \n rotate 1" > /etc/logrotate.d/logrotate_testfile')
|
|
msg = ('Could not write to /etc/logrotate.d/logrotate_testfile')
|
|
self.assertEqual(status, 0, msg = msg)
|
|
|
|
status, output = self.target.run('echo "create \n olddir $HOME/logrotate_dir \n include /etc/logrotate.d/logrotate_testfile" > /tmp/logrotate-test2.conf')
|
|
msg = ('Could not write to /tmp/logrotate_test2.conf')
|
|
self.assertEqual(status, 0, msg = msg)
|
|
|
|
status, output = self.target.run('find $HOME/logrotate_dir -type f | grep logrotate_testfile.1')
|
|
msg = ('A rotated log for logrotate_testfile is already present in logrotate_dir')
|
|
self.assertEqual(status, 1, msg = msg)
|
|
|
|
# If logrotate fails to rotate the log, view the verbose output of logrotate instead of just listing the files in olddir
|
|
_, logrotate_output = self.target.run('logrotate -vf /tmp/logrotate-test2.conf')
|
|
status, _ = self.target.run('find $HOME/logrotate_dir -type f | grep logrotate_testfile.1')
|
|
msg = ('logrotate did not successfully rotate the logrotate_test log. Output from logrotate -vf: \n%s' % (logrotate_output))
|
|
self.assertEqual(status, 0, msg = msg)
|
|
|
|
|