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): |
Andrew Geissler | 615f2f1 | 2022-07-15 14:00:58 -0500 | [diff] [blame] | 22 | status, output = self.target.run('checksec --format=xml --proc=1') |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 23 | msg = ('checksec xml failed. Output: %s' % output) |
| 24 | self.assertEqual(status, 0, msg = msg) |
| 25 | |
| 26 | @OETestDepends(['checksec.CheckSecTest.test_checksec_xml']) |
Brad Bishop | 49fa52d | 2019-10-16 14:23:15 -0400 | [diff] [blame] | 27 | @OEHasPackage(['binutils']) |
Brad Bishop | 15ae250 | 2019-06-18 21:44:24 -0400 | [diff] [blame] | 28 | def test_checksec_fortify(self): |
| 29 | status, output = self.target.run('checksec --fortify-proc 1') |
| 30 | match = re.search('FORTIFY_SOURCE support:', output) |
| 31 | if not match: |
| 32 | msg = ('checksec : fortify-proc failed. ' |
| 33 | 'Status and output:%s and %s' % (status, output)) |
| 34 | self.assertEqual(status, 1, msg = msg) |