Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: MIT |
| 3 | # |
| 4 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 5 | # 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 | |
| 8 | from oeqa.runtime.case import OERuntimeTestCase |
| 9 | from oeqa.core.decorator.depends import OETestDepends |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 10 | from oeqa.runtime.decorator.package import OEHasPackage |
| 11 | |
| 12 | class LogrotateTest(OERuntimeTestCase): |
| 13 | |
| 14 | @classmethod |
Andrew Geissler | 99467da | 2019-02-25 18:54:23 -0600 | [diff] [blame] | 15 | def setUpClass(cls): |
| 16 | cls.tc.target.run('cp /etc/logrotate.d/wtmp $HOME/wtmp.oeqabak') |
| 17 | |
| 18 | @classmethod |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 19 | def tearDownClass(cls): |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 20 | cls.tc.target.run('mv -f $HOME/wtmp.oeqabak /etc/logrotate.d/wtmp && rm -rf /var/log//logrotate_dir') |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 21 | cls.tc.target.run('rm -rf /var/log/logrotate_testfile && rm -rf /etc/logrotate.d/logrotate_testfile') |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 22 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 23 | @OETestDepends(['ssh.SSHTest.test_ssh']) |
| 24 | @OEHasPackage(['logrotate']) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 25 | 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 Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 32 | status, output = self.target.run('mkdir /var/log//logrotate_dir') |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 33 | msg = ('Could not create logrotate_dir. Output: %s' % output) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 34 | self.assertEqual(status, 0, msg = msg) |
| 35 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 36 | status, output = self.target.run('echo "create \n olddir /var/log//logrotate_dir \n include /etc/logrotate.d/wtmp" > /tmp/logrotate-test.conf') |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 37 | msg = ('Could not write to /tmp/logrotate-test.conf') |
| 38 | self.assertEqual(status, 0, msg = msg) |
| 39 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 40 | # 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 Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 42 | status, _ = self.target.run('find /var/log//logrotate_dir -type f | grep wtmp.1') |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 43 | 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 Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 55 | self.assertEqual(status, 0, msg = msg) |
| 56 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 57 | 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 Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 58 | msg = ('Could not write to /tmp/logrotate_test2.conf') |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 59 | self.assertEqual(status, 0, msg = msg) |
| 60 | |
Andrew Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 61 | status, output = self.target.run('find /var/log//logrotate_dir -type f | grep logrotate_testfile.1') |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 62 | 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 Geissler | 595f630 | 2022-01-24 19:11:47 +0000 | [diff] [blame] | 67 | status, _ = self.target.run('find /var/log//logrotate_dir -type f | grep logrotate_testfile.1') |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 68 | 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 | |