Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -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 CheckSecTest(OERuntimeTestCase): |
| 11 | |
| 12 | @OEHasPackage(['checksec']) |
| 13 | @OETestDepends(['ssh.SSHTest.test_ssh']) |
| 14 | def test_checksec_help(self): |
| 15 | status, output = self.target.run('checksec --help ') |
| 16 | msg = ('checksec 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(['checksec.CheckSecTest.test_checksec_help']) |
| 21 | def test_checksec_xml(self): |
| 22 | status, output = self.target.run('checksec --format xml --proc-all') |
| 23 | msg = ('checksec xml failed. Output: %s' % output) |
| 24 | self.assertEqual(status, 0, msg = msg) |
| 25 | |
| 26 | @OETestDepends(['checksec.CheckSecTest.test_checksec_xml']) |
| 27 | def test_checksec_fortify(self): |
| 28 | status, output = self.target.run('checksec --fortify-proc 1') |
| 29 | match = re.search('FORTIFY_SOURCE support:', output) |
| 30 | if not match: |
| 31 | msg = ('checksec : fortify-proc failed. ' |
| 32 | 'Status and output:%s and %s' % (status, output)) |
| 33 | self.assertEqual(status, 1, msg = msg) |