1# Copyright (C) 2022 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
9class FirejailTest(OERuntimeTestCase):
10
11    @OEHasPackage(['firejail'])
12    @OEHasPackage(['libseccomp'])
13    @OETestDepends(['ssh.SSHTest.test_ssh'])
14    def test_firejail_basic(self):
15        status, output = self.target.run('firejail --help')
16        msg = ('Firejail --help command does not work as expected. '
17               'Status and output:%s and %s' % (status, output))
18        self.assertEqual(status, 0, msg = msg)
19