summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2019-03-29 17:08:09 -0700
committerArmin Kuster <akuster808@gmail.com>2019-03-31 10:37:09 -0700
commita0a466037594f7ea2ace79c8cdeee9d2aee57cf8 (patch)
tree92f15a84bb3f8b98802ebdf924061ef87c1abf61
parent7d014432c7a3e9b3b8cb8f17562071375f915e8e (diff)
downloadmeta-security-a0a466037594f7ea2ace79c8cdeee9d2aee57cf8.tar.gz
suricata: add runtime testing
Today there are no failures so set the trigger to zero. [v2] fix match string and conditional Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--lib/oeqa/runtime/cases/suricata.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/oeqa/runtime/cases/suricata.py b/lib/oeqa/runtime/cases/suricata.py
new file mode 100644
index 0000000..17fc8c5
--- /dev/null
+++ b/lib/oeqa/runtime/cases/suricata.py
@@ -0,0 +1,27 @@
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 SuricataTest(OERuntimeTestCase):
11
12 @OEHasPackage(['suricata'])
13 @OETestDepends(['ssh.SSHTest.test_ssh'])
14 def test_suricata_help(self):
15 status, output = self.target.run('suricata --help')
16 msg = ('suricata command does not work as expected. '
17 'Status and output:%s and %s' % (status, output))
18 self.assertEqual(status, 1, msg = msg)
19
20 @OETestDepends(['suricata.SuricataTest.test_suricata_help'])
21 def test_suricata_unittest(self):
22 status, output = self.target.run('suricata -u')
23 match = re.search('FAILED: 0 ', output)
24 if not match:
25 msg = ('suricata unittest had an unexpected failure. '
26 'Status and output:%s and %s' % (status, output))
27 self.assertEqual(status, 0, msg = msg)