nova-solver-scheduler/nova/tests/scheduler/solvers/constraints/test_isolated_hosts_constra...

51 lines
2.1 KiB
Python

# Copyright (c) 2014 Cisco Systems, Inc.
# 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.
import mock
from nova.scheduler.solvers.constraints import isolated_hosts_constraint
from nova import test
from nova.tests.scheduler import solver_scheduler_fakes as fakes
class TestIsolatedHostsConstraint(test.NoDBTestCase):
def setUp(self):
super(TestIsolatedHostsConstraint, self).setUp()
self.constraint_cls = isolated_hosts_constraint.\
IsolatedHostsConstraint
self._generate_fake_constraint_input()
def _generate_fake_constraint_input(self):
self.fake_filter_properties = {
'instance_uuids': ['fake_uuid_%s' % x for x in range(3)],
'num_instances': 3}
host1 = fakes.FakeSolverSchedulerHostState('host1', 'node1', {})
host2 = fakes.FakeSolverSchedulerHostState('host2', 'node1', {})
self.fake_hosts = [host1, host2]
@mock.patch('nova.scheduler.solvers.constraints.'
'isolated_hosts_constraint.IsolatedHostsConstraint.'
'host_filter_cls')
def test_get_constraint_matrix(self, mock_filter_cls):
expected_cons_mat = [
[True, True, True],
[False, False, False]]
mock_filter = mock_filter_cls.return_value
mock_filter.host_passes.side_effect = [True, False]
cons_mat = self.constraint_cls().get_constraint_matrix(
self.fake_hosts, self.fake_filter_properties)
self.assertEqual(expected_cons_mat, cons_mat)