summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2019-03-29 20:04:42 -0700
committerArmin Kuster <akuster808@gmail.com>2019-03-31 10:37:09 -0700
commitf1f54b94ad886365330f2a92e12793d7a67c34d4 (patch)
tree1ae77726495e84cc4e62beb0d9308c722c739be4
parentb551fdef0e805ad9ba43369d3861230cf5215928 (diff)
downloadmeta-security-f1f54b94ad886365330f2a92e12793d7a67c34d4.tar.gz
samhain: add basic runtime test
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--lib/oeqa/runtime/cases/samhain.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/oeqa/runtime/cases/samhain.py b/lib/oeqa/runtime/cases/samhain.py
new file mode 100644
index 0000000..e4bae7b
--- /dev/null
+++ b/lib/oeqa/runtime/cases/samhain.py
@@ -0,0 +1,20 @@
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 SamhainTest(OERuntimeTestCase):
11
12 @OEHasPackage(['samhain-standalone'])
13 @OETestDepends(['ssh.SSHTest.test_ssh'])
14 def test_samhain_standalone_help(self):
15 status, output = self.target.run('samhain --help')
16 match = re.search('Please report bugs to support@la-samhna.de.', output)
17 if not match:
18 msg = ('samhain-standalone command does not work as expected. '
19 'Status and output:%s and %s' % (status, output))
20 self.assertEqual(status, 1, msg = msg)