Merge "Remove check_success_rate"
[functest.git] / functest / tests / unit / openstack / tempest / test_tempest.py
1 #!/usr/bin/env python
2
3 # All rights reserved. This program and the accompanying materials
4 # are made available under the terms of the Apache License, Version 2.0
5 # which accompanies this distribution, and is available at
6 # http://www.apache.org/licenses/LICENSE-2.0
7
8 import logging
9 import unittest
10
11 import mock
12
13 from functest.core import testcase
14 from functest.opnfv_tests.openstack.tempest import tempest
15 from functest.opnfv_tests.openstack.tempest import conf_utils
16 from functest.utils.constants import CONST
17
18
19 class OSTempestTesting(unittest.TestCase):
20
21     logging.disable(logging.CRITICAL)
22
23     def setUp(self):
24         with mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
25                         'conf_utils.get_verifier_id',
26                         return_value='test_deploy_id'), \
27             mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
28                        'conf_utils.get_verifier_deployment_id',
29                        return_value='test_deploy_id'), \
30             mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
31                        'conf_utils.get_verifier_repo_dir',
32                        return_value='test_verifier_repo_dir'), \
33             mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
34                        'conf_utils.get_verifier_deployment_dir',
35                        return_value='test_verifier_deploy_dir'):
36             self.tempestcommon = tempest.TempestCommon()
37             self.tempestsmoke_serial = tempest.TempestSmokeSerial()
38             self.tempestsmoke_parallel = tempest.TempestSmokeParallel()
39             self.tempestfull_parallel = tempest.TempestFullParallel()
40             with mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
41                             'conf_utils.install_verifier_ext'):
42                 self.tempestmultisite = tempest.TempestMultisite()
43             self.tempestcustom = tempest.TempestCustom()
44             self.tempestdefcore = tempest.TempestDefcore()
45
46     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.logger.debug')
47     def test_generate_test_list_defcore_mode(self, mock_logger_debug):
48         self.tempestcommon.MODE = 'defcore'
49         with mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
50                         'shutil.copyfile') as m:
51             self.tempestcommon.generate_test_list('test_verifier_repo_dir')
52             self.assertTrue(m.called)
53
54     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.logger.error')
55     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.logger.debug')
56     def test_generate_test_list_custom_mode_missing_file(self,
57                                                          mock_logger_debug,
58                                                          mock_logger_error):
59         self.tempestcommon.MODE = 'custom'
60         with mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
61                         'os.path.isfile', return_value=False), \
62                 self.assertRaises(Exception) as context:
63             msg = "Tempest test list file %s NOT found."
64             self.tempestcommon.generate_test_list('test_verifier_repo_dir')
65             self.assertTrue((msg % conf_utils.TEMPEST_CUSTOM) in context)
66
67     def test_generate_test_list_custom_mode_default(self):
68         self.tempestcommon.MODE = 'custom'
69         with mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
70                         'shutil.copyfile') as m, \
71             mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
72                        'os.path.isfile', return_value=True):
73             self.tempestcommon.generate_test_list('test_verifier_repo_dir')
74             self.assertTrue(m.called)
75
76     def _test_generate_test_list_mode_default(self, mode):
77         self.tempestcommon.MODE = mode
78         if self.tempestcommon.MODE == 'smoke':
79             testr_mode = "smoke"
80         elif self.tempestcommon.MODE == 'feature_multisite':
81             testr_mode = "'[Kk]ingbird'"
82         elif self.tempestcommon.MODE == 'full':
83             testr_mode = ""
84         else:
85             testr_mode = 'tempest.api.' + self.tempestcommon.MODE
86         conf_utils.TEMPEST_RAW_LIST = 'raw_list'
87         verifier_repo_dir = 'test_verifier_repo_dir'
88         with mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
89                         'ft_utils.execute_command') as m:
90             cmd = ("cd {0};"
91                    "testr list-tests {1} > {2};"
92                    "cd -;".format(verifier_repo_dir,
93                                   testr_mode,
94                                   conf_utils.TEMPEST_RAW_LIST))
95             self.tempestcommon.generate_test_list('test_verifier_repo_dir')
96             m.assert_any_call(cmd)
97
98     def test_generate_test_list_smoke_mode(self):
99         self._test_generate_test_list_mode_default('smoke')
100
101     def test_generate_test_list_feature_multisite_mode(self):
102         self._test_generate_test_list_mode_default('feature_multisite')
103
104     def test_generate_test_list_full_mode(self):
105         self._test_generate_test_list_mode_default('full')
106
107     def test_parse_verifier_result_missing_verification_uuid(self):
108         self.tempestcommon.VERIFICATION_ID = None
109         with self.assertRaises(Exception):
110             self.tempestcommon.parse_verifier_result()
111
112     def test_apply_tempest_blacklist_no_blacklist(self):
113         with mock.patch('__builtin__.open', mock.mock_open()) as m, \
114             mock.patch.object(self.tempestcommon, 'read_file',
115                               return_value=['test1', 'test2']):
116             conf_utils.TEMPEST_BLACKLIST = Exception
117             CONST.INSTALLER_TYPE = 'installer_type'
118             CONST.DEPLOY_SCENARIO = 'deploy_scenario'
119             self.tempestcommon.apply_tempest_blacklist()
120             obj = m()
121             obj.write.assert_any_call('test1\n')
122             obj.write.assert_any_call('test2\n')
123
124     def test_apply_tempest_blacklist_default(self):
125         item_dict = {'scenarios': ['deploy_scenario'],
126                      'installers': ['installer_type'],
127                      'tests': ['test2']}
128         with mock.patch('__builtin__.open', mock.mock_open()) as m, \
129             mock.patch.object(self.tempestcommon, 'read_file',
130                               return_value=['test1', 'test2']), \
131             mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
132                        'yaml.safe_load', return_value=item_dict):
133             CONST.INSTALLER_TYPE = 'installer_type'
134             CONST.DEPLOY_SCENARIO = 'deploy_scenario'
135             self.tempestcommon.apply_tempest_blacklist()
136             obj = m()
137             obj.write.assert_any_call('test1\n')
138             self.assertFalse(obj.write.assert_any_call('test2\n'))
139
140     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.logger.info')
141     def test_run_verifier_tests_default(self, mock_logger_info):
142         with mock.patch('__builtin__.open', mock.mock_open()), \
143             mock.patch('__builtin__.iter', return_value=['\} tempest\.']), \
144             mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
145                        'subprocess.Popen'):
146             conf_utils.TEMPEST_LIST = 'test_tempest_list'
147             cmd_line = ("rally verify start  --load-list "
148                         "test_tempest_list --detailed")
149             self.tempestcommon.run_verifier_tests()
150             mock_logger_info. \
151                 assert_any_call("Starting Tempest test suite: '%s'."
152                                 % cmd_line)
153
154     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
155                 'os.path.exists', return_value=False)
156     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.os.makedirs',
157                 side_effect=Exception)
158     def test_run_makedirs_ko(self, *args):
159         self.assertEqual(self.tempestcommon.run(),
160                          testcase.TestCase.EX_RUN_ERROR)
161
162     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
163                 'os.path.exists', return_value=False)
164     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.os.makedirs')
165     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
166                 'conf_utils.create_tempest_resources', side_effect=Exception)
167     def test_run_create_tempest_resources_ko(self, *args):
168         self.assertEqual(self.tempestcommon.run(),
169                          testcase.TestCase.EX_RUN_ERROR)
170
171     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
172                 'os.path.exists', return_value=False)
173     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.os.makedirs')
174     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
175                 'conf_utils.create_tempest_resources', return_value={})
176     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
177                 'conf_utils.configure_tempest', side_effect=Exception)
178     def test_run_configure_tempest_ko(self, *args):
179         self.assertEqual(self.tempestcommon.run(),
180                          testcase.TestCase.EX_RUN_ERROR)
181
182     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
183                 'os.path.exists', return_value=False)
184     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.os.makedirs')
185     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
186                 'conf_utils.create_tempest_resources', return_value={})
187     @mock.patch('functest.opnfv_tests.openstack.tempest.tempest.'
188                 'conf_utils.configure_tempest')
189     def _test_run(self, status, *args):
190         self.assertEqual(self.tempestcommon.run(), status)
191
192     def test_run_missing_generate_test_list(self):
193         with mock.patch.object(self.tempestcommon, 'generate_test_list',
194                                side_effect=Exception):
195             self._test_run(testcase.TestCase.EX_RUN_ERROR)
196
197     def test_run_apply_tempest_blacklist_ko(self):
198         with mock.patch.object(self.tempestcommon, 'generate_test_list'), \
199                     mock.patch.object(self.tempestcommon,
200                                       'apply_tempest_blacklist',
201                                       side_effect=Exception()):
202             self._test_run(testcase.TestCase.EX_RUN_ERROR)
203
204     def test_run_verifier_tests_ko(self, *args):
205         with mock.patch.object(self.tempestcommon, 'generate_test_list'), \
206                 mock.patch.object(self.tempestcommon,
207                                   'apply_tempest_blacklist'), \
208                 mock.patch.object(self.tempestcommon, 'run_verifier_tests',
209                                   side_effect=Exception()), \
210                 mock.patch.object(self.tempestcommon, 'parse_verifier_result',
211                                   side_effect=Exception):
212             self._test_run(testcase.TestCase.EX_RUN_ERROR)
213
214     def test_run_parse_verifier_result_ko(self, *args):
215         with mock.patch.object(self.tempestcommon, 'generate_test_list'), \
216                 mock.patch.object(self.tempestcommon,
217                                   'apply_tempest_blacklist'), \
218                 mock.patch.object(self.tempestcommon, 'run_verifier_tests'), \
219                 mock.patch.object(self.tempestcommon, 'parse_verifier_result',
220                                   side_effect=Exception):
221             self._test_run(testcase.TestCase.EX_RUN_ERROR)
222
223     def test_run(self, *args):
224         with mock.patch.object(self.tempestcommon, 'generate_test_list'), \
225                 mock.patch.object(self.tempestcommon,
226                                   'apply_tempest_blacklist'), \
227                 mock.patch.object(self.tempestcommon, 'run_verifier_tests'), \
228                 mock.patch.object(self.tempestcommon, 'parse_verifier_result'):
229             self._test_run(testcase.TestCase.EX_OK)
230
231
232 if __name__ == "__main__":
233     unittest.main(verbosity=2)