Adds a local unit tests base and replaces the one used by the unit tests, in order to reduce dependencies and simplify the unit tests, as they can be simpler for this project.
58 lines
2.0 KiB
Python
58 lines
2.0 KiB
Python
# Copyright 2014 Cloudbase Solutions SRL
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
"""
|
|
Unit tests for the Hyper-V utils factory.
|
|
"""
|
|
|
|
import mock
|
|
from oslo_config import cfg
|
|
|
|
from hyperv.nova import hostutils
|
|
from hyperv.nova import utilsfactory
|
|
from hyperv.nova import vmutils
|
|
from hyperv.nova import vmutilsv2
|
|
from hyperv.tests import test
|
|
|
|
CONF = cfg.CONF
|
|
|
|
|
|
class TestHyperVUtilsFactory(test.NoDBTestCase):
|
|
def test_get_vmutils_force_v1_and_min_version(self):
|
|
self._test_returned_class(None, True, True)
|
|
|
|
def test_get_vmutils_v2(self):
|
|
self._test_returned_class(vmutilsv2.VMUtilsV2, False, True)
|
|
|
|
def test_get_vmutils_v2_r2(self):
|
|
self._test_returned_class(vmutils.VMUtils, False, False)
|
|
|
|
def test_get_vmutils_force_v1_and_not_min_version(self):
|
|
self._test_returned_class(vmutils.VMUtils, True, False)
|
|
|
|
def _test_returned_class(self, expected_class, force_v1, os_supports_v2):
|
|
CONF.set_override('force_hyperv_utils_v1', force_v1, 'hyperv')
|
|
with mock.patch.object(
|
|
hostutils.HostUtils,
|
|
'check_min_windows_version') as mock_check_min_windows_version:
|
|
mock_check_min_windows_version.return_value = os_supports_v2
|
|
|
|
if os_supports_v2 and force_v1:
|
|
self.assertRaises(vmutils.HyperVException,
|
|
utilsfactory.get_vmutils)
|
|
else:
|
|
actual_class = type(utilsfactory.get_vmutils())
|
|
self.assertEqual(actual_class, expected_class)
|