blob: 2bff08f9da399b24a91aa1609896de50067f77ec [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
2# SPDX-License-Identifier: MIT
3#
4
Brad Bishop6e60e8b2018-02-01 10:27:11 -05005# This test should cover https://bugzilla.yoctoproject.org/tr_show_case.cgi?case_id=289 testcase
6# Note that the image under test must have logrotate installed
7
8from oeqa.runtime.case import OERuntimeTestCase
9from oeqa.core.decorator.depends import OETestDepends
Brad Bishop6e60e8b2018-02-01 10:27:11 -050010from oeqa.runtime.decorator.package import OEHasPackage
11
12class LogrotateTest(OERuntimeTestCase):
13
14 @classmethod
Andrew Geissler99467da2019-02-25 18:54:23 -060015 def setUpClass(cls):
16 cls.tc.target.run('cp /etc/logrotate.d/wtmp $HOME/wtmp.oeqabak')
17
18 @classmethod
Brad Bishop6e60e8b2018-02-01 10:27:11 -050019 def tearDownClass(cls):
Andrew Geissler595f6302022-01-24 19:11:47 +000020 cls.tc.target.run('mv -f $HOME/wtmp.oeqabak /etc/logrotate.d/wtmp && rm -rf /var/log//logrotate_dir')
Andrew Geissler82c905d2020-04-13 13:39:40 -050021 cls.tc.target.run('rm -rf /var/log/logrotate_testfile && rm -rf /etc/logrotate.d/logrotate_testfile')
Brad Bishop6e60e8b2018-02-01 10:27:11 -050022
Brad Bishop6e60e8b2018-02-01 10:27:11 -050023 @OETestDepends(['ssh.SSHTest.test_ssh'])
24 @OEHasPackage(['logrotate'])
Andrew Geissler82c905d2020-04-13 13:39:40 -050025 def test_logrotate_wtmp(self):
26
27 # /var/log/wtmp may not always exist initially, so use touch to ensure it is present
28 status, output = self.target.run('touch /var/log/wtmp')
29 msg = ('Could not create/update /var/log/wtmp with touch')
30 self.assertEqual(status, 0, msg = msg)
31
Andrew Geissler595f6302022-01-24 19:11:47 +000032 status, output = self.target.run('mkdir /var/log//logrotate_dir')
Andrew Geissler82c905d2020-04-13 13:39:40 -050033 msg = ('Could not create logrotate_dir. Output: %s' % output)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050034 self.assertEqual(status, 0, msg = msg)
35
Andrew Geissler595f6302022-01-24 19:11:47 +000036 status, output = self.target.run('echo "create \n olddir /var/log//logrotate_dir \n include /etc/logrotate.d/wtmp" > /tmp/logrotate-test.conf')
Andrew Geissler82c905d2020-04-13 13:39:40 -050037 msg = ('Could not write to /tmp/logrotate-test.conf')
38 self.assertEqual(status, 0, msg = msg)
39
Andrew Geissler82c905d2020-04-13 13:39:40 -050040 # If logrotate fails to rotate the log, view the verbose output of logrotate to see what prevented it
41 _, logrotate_output = self.target.run('logrotate -vf /tmp/logrotate-test.conf')
Andrew Geissler595f6302022-01-24 19:11:47 +000042 status, _ = self.target.run('find /var/log//logrotate_dir -type f | grep wtmp.1')
Andrew Geissler82c905d2020-04-13 13:39:40 -050043 msg = ("logrotate did not successfully rotate the wtmp log. Output from logrotate -vf: \n%s" % (logrotate_output))
44 self.assertEqual(status, 0, msg = msg)
45
46 @OETestDepends(['logrotate.LogrotateTest.test_logrotate_wtmp'])
47 def test_logrotate_newlog(self):
48
49 status, output = self.target.run('echo "oeqa logrotate test file" > /var/log/logrotate_testfile')
50 msg = ('Could not create logrotate test file in /var/log')
51 self.assertEqual(status, 0, msg = msg)
52
53 status, output = self.target.run('echo "/var/log/logrotate_testfile {\n missingok \n monthly \n rotate 1" > /etc/logrotate.d/logrotate_testfile')
54 msg = ('Could not write to /etc/logrotate.d/logrotate_testfile')
Brad Bishop6e60e8b2018-02-01 10:27:11 -050055 self.assertEqual(status, 0, msg = msg)
56
Andrew Geissler595f6302022-01-24 19:11:47 +000057 status, output = self.target.run('echo "create \n olddir /var/log//logrotate_dir \n include /etc/logrotate.d/logrotate_testfile" > /tmp/logrotate-test2.conf')
Andrew Geissler82c905d2020-04-13 13:39:40 -050058 msg = ('Could not write to /tmp/logrotate_test2.conf')
Brad Bishop6e60e8b2018-02-01 10:27:11 -050059 self.assertEqual(status, 0, msg = msg)
60
Andrew Geissler595f6302022-01-24 19:11:47 +000061 status, output = self.target.run('find /var/log//logrotate_dir -type f | grep logrotate_testfile.1')
Andrew Geissler82c905d2020-04-13 13:39:40 -050062 msg = ('A rotated log for logrotate_testfile is already present in logrotate_dir')
63 self.assertEqual(status, 1, msg = msg)
64
65 # If logrotate fails to rotate the log, view the verbose output of logrotate instead of just listing the files in olddir
66 _, logrotate_output = self.target.run('logrotate -vf /tmp/logrotate-test2.conf')
Andrew Geissler595f6302022-01-24 19:11:47 +000067 status, _ = self.target.run('find /var/log//logrotate_dir -type f | grep logrotate_testfile.1')
Andrew Geissler82c905d2020-04-13 13:39:40 -050068 msg = ('logrotate did not successfully rotate the logrotate_test log. Output from logrotate -vf: \n%s' % (logrotate_output))
69 self.assertEqual(status, 0, msg = msg)
70
71