nova-solver-scheduler/nova/tests/scheduler/solvers/constraints/test_aggregate_ram.py

64 lines
2.6 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 import context
from nova.scheduler.solvers.constraints import aggregate_ram
from nova import test
from nova.tests.scheduler import solver_scheduler_fakes as fakes
class TestAggregateRamConstraint(test.NoDBTestCase):
def setUp(self):
super(TestAggregateRamConstraint, self).setUp()
self.constraint_cls = aggregate_ram.AggregateRamConstraint
self.context = context.RequestContext('fake', 'fake')
self._generate_fake_constraint_input()
def _generate_fake_constraint_input(self):
self.fake_filter_properties = {
'context': self.context,
'instance_type': {'memory_mb': 1024},
'instance_uuids': ['fake_uuid_%s' % x for x in range(2)],
'num_instances': 2}
host1 = fakes.FakeSolverSchedulerHostState('host1', 'node1',
{'free_ram_mb': 512, 'total_usable_ram_mb': 1024})
host2 = fakes.FakeSolverSchedulerHostState('host2', 'node1',
{'free_ram_mb': 512, 'total_usable_ram_mb': 1024})
host3 = fakes.FakeSolverSchedulerHostState('host3', 'node1',
{'free_ram_mb': 512, 'total_usable_ram_mb': 1024})
self.fake_hosts = [host1, host2, host3]
@mock.patch('nova.db.aggregate_metadata_get_by_host')
def test_get_constraint_matrix(self, agg_mock):
self.flags(ram_allocation_ratio=1.0)
def _agg_mock_side_effect(*args, **kwargs):
if args[1] == 'host1':
return {'ram_allocation_ratio': set(['1.0', '2.0'])}
if args[1] == 'host2':
return {'ram_allocation_ratio': set(['3.0'])}
if args[1] == 'host3':
return {'ram_allocation_ratio': set()}
agg_mock.side_effect = _agg_mock_side_effect
expected_cons_mat = [
[False, False],
[True, True],
[False, False]]
cons_mat = self.constraint_cls().get_constraint_matrix(
self.fake_hosts, self.fake_filter_properties)