blob: 53e6c1d7bb46bf704333d05780828c7e27ca6b78 [file] [log] [blame]
Brad Bishop15ae2502019-06-18 21:44:24 -04001# Copyright (C) 2019 Armin Kuster <akuster808@gmail.com>
2#
3import re
4
5from oeqa.runtime.case import OERuntimeTestCase
6from oeqa.core.decorator.depends import OETestDepends
7from oeqa.runtime.decorator.package import OEHasPackage
8
9
10class 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 Geissler615f2f12022-07-15 14:00:58 -050022 status, output = self.target.run('checksec --format=xml --proc=1')
Brad Bishop15ae2502019-06-18 21:44:24 -040023 msg = ('checksec xml failed. Output: %s' % output)
24 self.assertEqual(status, 0, msg = msg)
25
26 @OETestDepends(['checksec.CheckSecTest.test_checksec_xml'])
Brad Bishop49fa52d2019-10-16 14:23:15 -040027 @OEHasPackage(['binutils'])
Brad Bishop15ae2502019-06-18 21:44:24 -040028 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)