summaryrefslogtreecommitdiffstats
path: root/tests/unit/scheduler/fake_hosts.py
blob: b02aca4c43b45829ed43a1446b6538e1655c38ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 2012 Intel Inc, OpenStack Foundation.
# 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.
"""
Fakes For filters tests.
"""


class FakeHostManager(object):
    """
    host1: free_ram_mb=1024-512-512=0, free_disk_gb=1024-512-512=0
    host2: free_ram_mb=2048-512=1536  free_disk_gb=2048-512=1536
    host3: free_ram_mb=4096-1024=3072  free_disk_gb=4096-1024=3072
    host4: free_ram_mb=8192  free_disk_gb=8192
    """

    def __init__(self):
        self.service_states = {
            'host1': {
                'compute': {'host_memory_free': 1073741824},
            },
            'host2': {
                'compute': {'host_memory_free': 2147483648},
            },
            'host3': {
                'compute': {'host_memory_free': 3221225472},
            },
            'host4': {
                'compute': {'host_memory_free': 999999999},
            },
        }


class FakeHostState(object):
    def __init__(self, host, attribute_dict):
        for (key, val) in attribute_dict.iteritems():
            setattr(self, key, val)