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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
# 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
import netifaces
from os_xenapi.tests import base
from os_xenapi.utils import common_function
from os_xenapi.utils import himn
from os_xenapi.utils import xenapi_facts
class XenapiFactsTestCase(base.TestCase):
@mock.patch.object(common_function, 'get_domu_vifs_by_eth')
@mock.patch.object(common_function, 'get_host_ipv4s')
@mock.patch.object(common_function, 'get_remote_hostname')
@mock.patch.object(himn, 'get_local_himn_eth')
@mock.patch.object(netifaces, 'ifaddresses')
def test_get_facts(self, mock_ifaddr, mock_eth, mock_hostname, mock_ip,
mock_vifs):
mock_client = mock.Mock()
mock_client.ip = mock.sentinel.dom0_himn_ip
mock_eth.return_value = 'eth3'
mock_ifaddr.return_value = {2: [{'netmask': u'255.255.0.0',
'addr': u'169.254.0.2'}]}
mock_hostname.return_value = 'traya'
fake_ipv4s = [
{
"address": "10.71.64.118",
"broadcast": "10.71.79.255",
"interface": "xenbr0",
"netmask": "255.255.240.0",
"network": "10.71.64.0"
},
{
"address": "169.254.0.1",
"broadcast": "169.254.255.255",
"interface": "xenapi",
"netmask": "255.255.0.0",
"network": "169.254.0.0"
}
]
mock_ip.return_value = fake_ipv4s
fake_vifs_by_eth = {
"eth0": {
"MTU": "1500",
"backend-id": "0",
"backend-kind": "vif",
"bridge": "xapi1",
"bridge-MAC": "fe:ff:ff:ff:ff:ff",
"locking-mode": "unlocked",
"mac": "9a:77:18:20:cf:14",
"network-uuid": "f06300db-6b6c-006c-0ea1-9d1eb1e97350",
"setup-pvs-proxy-rules": "/usr/libexec/xenopsd/rules",
"setup-vif-rules": "/usr/libexec/xenopsd/setup-vif-rules",
"vif-id": "0",
"vif-uuid": "9e1f78d1-956c-cb2d-0327-652d96302f9d",
"xenopsd-backend": "classic"
},
"eth1": {
"MTU": "1500",
"backend-id": "0",
"backend-kind": "vif",
"bridge": "xapi0",
"bridge-MAC": "fe:ff:ff:ff:ff:ff",
"locking-mode": "unlocked",
"mac": "02:e3:69:a6:7b:b8",
"network-uuid": "41968989-1d86-383b-114e-3d1ccae02157",
"setup-pvs-proxy-rules": "/usr/libexec/xenopsd/rules",
"setup-vif-rules": "/usr/libexec/xenopsd/setup-vif-rules",
"vif-id": "1",
"vif-uuid": "80eea22b-a778-afec-0eac-3891cfd5faf9",
"xenopsd-backend": "classic"
}
}
mock_vifs.return_value = fake_vifs_by_eth
ret_facts = xenapi_facts.get_xenapi_facts(mock_client)
expect_facts = {"domu_himn_ip": "169.254.0.2",
"domu_himn_eth": "eth3",
"dom0_hostname": "traya",
"dom0_ipv4s": fake_ipv4s,
"domu_vifs": fake_vifs_by_eth}
self.assertEqual(ret_facts, expect_facts)
mock_eth.assert_called_with(mock.sentinel.dom0_himn_ip)
|