Modify TestCase constructor attributes
[functest.git] / functest / tests / unit / features / test_security_scan.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2017 Orange and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 # pylint: disable=missing-docstring
11
12 import logging
13 import unittest
14
15 from functest.opnfv_tests.features import security_scan
16 from functest.utils import constants
17
18
19 class SecurityScanTesting(unittest.TestCase):
20
21     logging.disable(logging.CRITICAL)
22
23     _case_name = "security_scan"
24     _project_name = "security_scan"
25
26     def setUp(self):
27         self.sscan = security_scan.SecurityScan(
28             case_name=self._case_name, project_name=self._project_name)
29
30     def test_init(self):
31         self.assertEqual(self.sscan.project_name, self._project_name)
32         self.assertEqual(self.sscan.case_name, self._case_name)
33         self.assertEqual(
34             self.sscan.repo,
35             constants.CONST.__getattribute__("dir_repo_securityscan"))
36         self.assertEqual(
37             self.sscan.cmd, (
38                 '. {0}/stackrc && cd {1} && '
39                 'python security_scan.py --config config.ini && '
40                 'cd -'.format(
41                     constants.CONST.__getattribute__("dir_functest_conf"),
42                     self.sscan.repo)))
43
44
45 if __name__ == "__main__":
46     unittest.main(verbosity=2)