3 ##############################################################################
4 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
12 # Unittest for yardstick.common.openstack_utils
14 from __future__ import absolute_import
18 from yardstick.common import openstack_utils
21 class GetCredentialsTestCase(unittest.TestCase):
23 @mock.patch('yardstick.common.openstack_utils.os')
24 def test_get_credentials(self, _):
25 with mock.patch.dict('os.environ', {'OS_IDENTITY_API_VERSION': '2'},
27 openstack_utils.get_credentials()
30 class GetHeatApiVersionTestCase(unittest.TestCase):
32 def test_get_heat_api_version_check_result(self):
33 API = 'HEAT_API_VERSION'
36 with mock.patch.dict('os.environ', {API: '2'}, clear=True):
37 api_version = openstack_utils.get_heat_api_version()
38 self.assertEqual(api_version, expected_result)
45 if __name__ == '__main__':