diff options
author | Armin Kuster <akuster808@gmail.com> | 2022-06-16 09:50:03 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2022-06-23 18:47:59 -0700 |
commit | 71061edbe1718d55af0b5c00cc5acb49374e21b6 (patch) | |
tree | 74a052b67e2ab7d1c46d1ae5ccdaccaa7dd1f97e | |
parent | 36d057705774acefb7296e7883264f8178894d55 (diff) | |
download | meta-security-71061edbe1718d55af0b5c00cc5acb49374e21b6.tar.gz |
oeqa: add aide test
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | lib/oeqa/runtime/cases/aide.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/lib/oeqa/runtime/cases/aide.py b/lib/oeqa/runtime/cases/aide.py new file mode 100644 index 0000000..4c7633c --- /dev/null +++ b/lib/oeqa/runtime/cases/aide.py | |||
@@ -0,0 +1,26 @@ | |||
1 | # Copyright (C) 2022 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 AideTest(OERuntimeTestCase): | ||
11 | |||
12 | @OEHasPackage(['aide']) | ||
13 | @OETestDepends(['ssh.SSHTest.test_ssh']) | ||
14 | def test_aide_help(self): | ||
15 | status, output = self.target.run('aide --help') | ||
16 | msg = ('Aide help 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(['aide.AideTest.test_aide_help']) | ||
21 | def test_aide_dbinit(self): | ||
22 | status, output = self.target.run('aide --init') | ||
23 | match = re.search('Number of entries:', output) | ||
24 | if not match: | ||
25 | msg = ('Aide db init failed: output is:\n%s' % output) | ||
26 | self.assertEqual(status, 0, msg = msg) | ||