summaryrefslogtreecommitdiffstats
path: root/lib/oeqa/runtime
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2019-05-19 13:54:21 -0700
committerArmin Kuster <akuster808@gmail.com>2019-05-21 08:18:36 -0700
commit56d6256c83b47ad921a10d22b2d64453dab9821a (patch)
tree0d92aa3ad70c1e299ac660048bd107f6d749daed /lib/oeqa/runtime
parent28629fe8a4f7b4b42f7f91714cf0d21a96813e94 (diff)
downloadmeta-security-56d6256c83b47ad921a10d22b2d64453dab9821a.tar.gz
checksec: add runtime test
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'lib/oeqa/runtime')
-rw-r--r--lib/oeqa/runtime/cases/checksec.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/lib/oeqa/runtime/cases/checksec.py b/lib/oeqa/runtime/cases/checksec.py
new file mode 100644
index 0000000..ff6d2f3
--- /dev/null
+++ b/lib/oeqa/runtime/cases/checksec.py
@@ -0,0 +1,33 @@
1# 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):
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)