Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 1 | # Copyright (C) 2019 Armin Kuster <akuster808@gmail.com> |
| 2 | # |
| 3 | import re |
| 4 | |
| 5 | from oeqa.runtime.case import OERuntimeTestCase |
| 6 | from oeqa.core.decorator.depends import OETestDepends |
| 7 | from oeqa.runtime.decorator.package import OEHasPackage |
| 8 | |
| 9 | |
| 10 | class ApparmorTest(OERuntimeTestCase): |
| 11 | |
| 12 | @OEHasPackage(['apparmor']) |
| 13 | @OETestDepends(['ssh.SSHTest.test_ssh']) |
| 14 | def test_apparmor_help(self): |
| 15 | status, output = self.target.run('aa-status --help') |
| 16 | msg = ('apparmor command does not work as expected. ' |
| 17 | 'Status and output:%s and %s' % (status, output)) |
| 18 | self.assertEqual(status, 0, msg = msg) |
| 19 | |
| 20 | @OETestDepends(['apparmor.ApparmorTest.test_apparmor_help']) |
| 21 | def test_apparmor_aa_status(self): |
| 22 | status, output = self.target.run('aa-status') |
| 23 | match = re.search('apparmor module is loaded.', output) |
| 24 | if not match: |
| 25 | msg = ('aa-status failed. ' |
| 26 | 'Status and output:%s and %s' % (status, output)) |
| 27 | self.assertEqual(status, 0, msg = msg) |
Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 28 | |
| 29 | @OETestDepends(['apparmor.ApparmorTest.test_apparmor_aa_status']) |
| 30 | def test_apparmor_aa_complain(self): |
| 31 | status, output = self.target.run('aa-complain /etc/apparmor.d/*') |
| 32 | match = re.search('apparmor module is loaded.', output) |
| 33 | if not match: |
| 34 | msg = ('aa-complain failed. ' |
| 35 | 'Status and output:%s and %s' % (status, output)) |
| 36 | self.assertEqual(status, 0, msg = msg) |
| 37 | |
| 38 | @OETestDepends(['apparmor.ApparmorTest.test_apparmor_aa_complain']) |
| 39 | def test_apparmor_aa_enforce(self): |
| 40 | status, output = self.target.run('aa-enforce /etc/apparmor.d/*') |
| 41 | match = re.search('apparmor module is loaded.', output) |
| 42 | if not match: |
| 43 | msg = ('aa-enforce failed. ' |
| 44 | 'Status and output:%s and %s' % (status, output)) |
| 45 | self.assertEqual(status, 0, msg = msg) |
| 46 | |