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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
|
# Copyright 2014, 2018 IBM Corp.
#
# 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 unittest
from pypowervm.tests.test_utils import pvmhttp
import pypowervm.wrappers.base_partition as bp
import pypowervm.wrappers.managed_system as ms
import pypowervm.wrappers.mtms as mtmwrap
_MS_HTTPRESP_FILE = "managedsystem.txt"
_MC_HTTPRESP_FILE = "managementconsole.txt"
_MS_NAME = 'HV4'
class TestMSEntryWrapper(unittest.TestCase):
def setUp(self):
super(TestMSEntryWrapper, self).setUp()
self.ms_http = pvmhttp.load_pvm_resp(_MS_HTTPRESP_FILE)
self.assertNotEqual(self.ms_http, None,
"Could not load %s " %
_MS_HTTPRESP_FILE)
entries = self.ms_http.response.feed.findentries(
ms._SYSTEM_NAME, _MS_NAME)
self.assertNotEqual(entries, None,
"Could not find %s in %s" %
(_MS_NAME, _MS_HTTPRESP_FILE))
self.myentry = entries[0]
self.wrapper = ms.System.wrap(self.myentry)
# Set a hardcoded value for MemoryUsedByHypervisor
fw_mem = self.myentry.element.find(
'AssociatedSystemMemoryConfiguration/MemoryUsedByHypervisor')
fw_mem.text = '1536'
mc_http = pvmhttp.load_pvm_resp(_MC_HTTPRESP_FILE)
self.assertNotEqual(mc_http, None,
"Could not load %s" %
_MC_HTTPRESP_FILE)
self.test_ioslot_unassigned = self.wrapper.asio_config.io_slots[0]
self.test_ioslot_assigned = self.wrapper.asio_config.io_slots[1]
""" Create a bad wrapper to use when
retrieving properties which don't exist """
self.bad_wrapper = ms.System.wrap(mc_http.response.feed.entries[0])
def verify_equal(self, method_name, returned_value, expected_value):
self.assertEqual(returned_value, expected_value,
"%s returned %s instead of %s"
% (method_name, returned_value, expected_value))
def call_simple_getter(self,
method_name,
expected_value,
expected_bad_value):
# Use __getattribute__ to dynamically call the method
value = self.wrapper.__getattribute__(method_name)
if callable(value):
value = value()
self.verify_equal(method_name, value, expected_value)
bad_value = self.bad_wrapper.__getattribute__(method_name)
if callable(bad_value):
bad_value = bad_value()
self.verify_equal(method_name, bad_value, expected_bad_value)
def test_get_val_str(self):
expected_value = _MS_NAME
value = self.wrapper._get_val_str(ms._SYSTEM_NAME)
self.verify_equal("_get_val_str", value, expected_value)
expected_value = None
value = self.wrapper._get_val_str('BogusName')
self.verify_equal(
"_get_val_str for BogusName ", value, expected_value)
def test_get_model(self):
self.assertEqual(self.wrapper.mtms.model, "E4A")
def test_get_type(self):
self.assertEqual(self.wrapper.mtms.machine_type, "8203")
def test_get_serial(self):
self.assertEqual(self.wrapper.mtms.serial, "ACE0001")
def test_get_mtms_str(self):
self.assertEqual(self.wrapper.mtms.mtms_str, '8203-E4A*ACE0001')
def test_highest_compat_mode(self):
self.assertEqual(self.wrapper.highest_compat_mode(), 7)
def test_proc_compat_modes(self):
expected = ('default', 'POWER5', 'POWER6', 'POWER6_Enhanced',
'POWER6_Plus_Enhanced', 'POWER7')
self.assertEqual(self.wrapper.proc_compat_modes, expected)
def test_get_proc_units(self):
self.call_simple_getter("proc_units", 500.0, 0)
def test_get_min_proc_units(self):
self.call_simple_getter("min_proc_units", 0.05, 0)
def test_get_proc_units_configurable(self):
self.call_simple_getter("proc_units_configurable", 500.0, 0)
def test_get_proc_units_avail(self):
self.call_simple_getter("proc_units_avail", 500.0, 0)
def test_get_memory_total(self):
self.call_simple_getter("memory_total", 5767168, 0)
def test_get_memory_free(self):
self.call_simple_getter("memory_free", 5242752, 0)
def test_get_host_ip_address(self):
self.call_simple_getter("host_ip_address", '127.0.0.1', None)
def test_get_firmware_memory(self):
self.call_simple_getter("firmware_memory", 1536, 0)
def test_page_table_ratio(self):
self.call_simple_getter("page_table_ratio", 7, 0)
def test_default_ppt_ratio(self):
self.call_simple_getter("default_ppt_ratio", 4, 6)
def test_get_system_name(self):
self.wrapper.set_parm_value(ms._SYSTEM_NAME, 'XYZ')
name = self.wrapper.system_name
self.verify_equal("system_name", name, 'XYZ')
self.wrapper.set_parm_value(ms._SYSTEM_NAME, 'ABC')
name = self.wrapper.system_name
self.verify_equal("system_name", name, 'ABC')
def test_max_procs_per_aix_linux_lpar(self):
self.call_simple_getter("max_procs_per_aix_linux_lpar", 32, 0)
# Test setter
self.wrapper.max_procs_per_aix_linux_lpar = 64
self.call_simple_getter("max_procs_per_aix_linux_lpar", 64, 0)
# Test fallback condition. Should retrieve max_sys_procs_limit
self.wrapper.max_procs_per_aix_linux_lpar = 0
self.call_simple_getter("max_procs_per_aix_linux_lpar",
self.wrapper.max_sys_procs_limit, 0)
def test_max_vcpus_per_aix_linux_lpar(self):
self.call_simple_getter("max_vcpus_per_aix_linux_lpar", 30, 0)
# Test setter
self.wrapper.max_vcpus_per_aix_linux_lpar = 60
self.call_simple_getter("max_vcpus_per_aix_linux_lpar", 60, 0)
# Test fallback condition. Should retrieve max_sys_vcpus_limit
self.wrapper.max_vcpus_per_aix_linux_lpar = 0
self.call_simple_getter("max_vcpus_per_aix_linux_lpar",
self.wrapper.max_sys_vcpus_limit, 0)
def test_vios_links(self):
self.call_simple_getter(
"vios_links",
('https://9.1.2.3:12443/rest/api/uom/ManagedSystem/caae9209-25e5-'
'35cd-a71a-ed55c03f294d/VirtualIOServer/32F3530F-ECA0-4EAA-A37E-'
'4B792C21AF70',), ())
def test_asio_wwpns(self):
self.assertEqual(self.wrapper.asio_config.avail_wwpns, 65536)
def test_asio_wwpn_prefix(self):
self.assertEqual(self.wrapper.asio_config.wwpn_prefix,
'12379814471884843981')
def test_ioslot_bus_grp_required(self):
self.assertFalse(self.test_ioslot_unassigned.bus_grp_required)
self.assertTrue(self.test_ioslot_assigned.bus_grp_required)
def test_ioslot_description(self):
self.assertEqual('I/O Processor',
self.test_ioslot_unassigned.description)
self.assertEqual('I/O Processor',
self.test_ioslot_assigned.description)
def test_ioslot_feat_codes(self):
self.assertEqual(0, self.test_ioslot_unassigned.feat_codes)
self.assertIsNone(self.test_ioslot_assigned.feat_codes)
def test_ioslot_assignment(self):
self.assertIsNone(self.test_ioslot_unassigned.part_id)
self.assertIsNone(self.test_ioslot_unassigned.part_uuid)
self.assertIsNone(self.test_ioslot_unassigned.part_name)
self.assertIsNone(self.test_ioslot_unassigned.part_type)
self.assertEqual(2, self.test_ioslot_assigned.part_id)
self.assertEqual("02899D96-9D20-490F-8B1B-4D3DEE1210ED",
self.test_ioslot_assigned.part_uuid)
self.assertEqual("vios1", self.test_ioslot_assigned.part_name)
self.assertEqual(bp.LPARType.VIOS, self.test_ioslot_assigned.part_type)
def test_ioslot_pci_class(self):
self.assertEqual(0x200, self.test_ioslot_unassigned.pci_class)
self.assertEqual(0x200, self.test_ioslot_assigned.pci_class)
def test_ioslot_pci_dev_id(self):
self.assertEqual(0x1234, self.test_ioslot_unassigned.pci_dev_id)
self.assertEqual(0x1234, self.test_ioslot_assigned.pci_dev_id)
def test_ioslot_pci_subsys_dev_id(self):
self.assertEqual(0x04b2, self.test_ioslot_unassigned.pci_subsys_dev_id)
self.assertIsNone(self.test_ioslot_assigned.pci_subsys_dev_id)
def test_ioslot_pci_rev_id(self):
self.assertEqual(0, self.test_ioslot_unassigned.pci_rev_id)
self.assertEqual(0, self.test_ioslot_assigned.pci_rev_id)
def test_ioslot_pci_vendor_id(self):
self.assertEqual(0x1014, self.test_ioslot_unassigned.pci_vendor_id)
self.assertEqual(0x1014, self.test_ioslot_assigned.pci_vendor_id)
def test_ioslot_pci_subsys_vendor_id(self):
self.assertEqual(0x1014,
self.test_ioslot_unassigned.pci_subsys_vendor_id)
self.assertIsNone(self.test_ioslot_assigned.pci_subsys_vendor_id)
def test_ioslot_drc_index(self):
self.assertEqual(0x21010011, self.test_ioslot_unassigned.drc_index)
self.assertEqual(0x21020011, self.test_ioslot_assigned.drc_index)
def test_ioslot_drc_name(self):
self.assertEqual('U5294.001.CEC1234-P01-C011',
self.test_ioslot_unassigned.drc_name)
self.assertEqual('U5294.001.CEC1234-P01-C012',
self.test_ioslot_assigned.drc_name)
def test_get_capabilities(self):
good_cap = {'active_lpar_mobility_capable': True,
'inactive_lpar_mobility_capable': True,
'ibmi_lpar_mobility_capable': True,
'custom_mac_addr_capable': True,
'ibmi_restrictedio_capable': True,
'ibmi_nativeio_capable': False,
'simplified_remote_restart_capable': False,
'aix_capable': False,
'ibmi_capable': True,
'linux_capable': False,
'shared_processor_pool_capable': True,
'active_memory_expansion_capable': True,
'dynamic_srr_capable': True,
'vnic_capable': True,
'vnic_failover_capable': True,
'disable_secure_boot_capable': False,
'physical_page_table_ratio_capable': True,
'ioslot_owner_assignment_capable': True,
'affinity_check_capable': True}
bad_cap = {'active_lpar_mobility_capable': False,
'inactive_lpar_mobility_capable': False,
'ibmi_lpar_mobility_capable': False,
'custom_mac_addr_capable': True,
'ibmi_restrictedio_capable': False,
'ibmi_nativeio_capable': False,
'simplified_remote_restart_capable': False,
'aix_capable': True,
'ibmi_capable': False,
'linux_capable': True,
'shared_processor_pool_capable': False,
'active_memory_expansion_capable': False,
'dynamic_srr_capable': False,
'vnic_capable': False,
'vnic_failover_capable': False,
'disable_secure_boot_capable': False,
'physical_page_table_ratio_capable': False,
'ioslot_owner_assignment_capable': False,
'affinity_check_capable': False}
self.call_simple_getter("get_capabilities", good_cap,
bad_cap)
def test_session_is_master(self):
self.assertTrue(self.wrapper.session_is_master)
def test_migration_data(self):
expected_data = {'active_lpar_mobility_capable': True,
'inactive_lpar_mobility_capable': True,
'ibmi_lpar_mobility_capable': True,
'custom_mac_addr_capable': True,
'ibmi_restrictedio_capable': True,
'ibmi_nativeio_capable': False,
'simplified_remote_restart_capable': False,
'aix_capable': False,
'ibmi_capable': True,
'linux_capable': False,
'shared_processor_pool_capable': True,
'active_memory_expansion_capable': True,
'physical_page_table_ratio_capable': True,
'max_migration_ops_supported': 9,
'active_migrations_supported': 0,
'inactive_migrations_supported': 5,
'preferred_active_migrations_supported': 0,
'preferred_inactive_migrations_supported': 5,
'active_migrations_in_progress': 0,
'inactive_migrations_in_progress': 0,
'proc_compat': 'default,POWER5,POWER6,POWER6_Enhanced'
',POWER6_Plus_Enhanced,POWER7',
'dynamic_srr_capable': True,
'vnic_capable': True,
'vnic_failover_capable': True,
'disable_secure_boot_capable': False,
'ioslot_owner_assignment_capable': True,
'affinity_check_capable': True}
result_data = self.wrapper.migration_data
self.assertEqual(result_data, expected_data,
"migration_data returned %s instead of %s" %
(result_data, expected_data))
class TestMTMS(unittest.TestCase):
def test_mtms(self):
mtms = mtmwrap.MTMS.bld(None, '1234-567*ABCDEF0')
self.assertEqual(mtms.machine_type, '1234')
self.assertEqual(mtms.model, '567')
self.assertEqual(mtms.serial, 'ABCDEF0')
self.assertEqual(mtms.mtms_str, '1234-567*ABCDEF0')
# Setters
mtms.machine_type = '4321'
self.assertEqual(mtms.machine_type, '4321')
mtms.model = '765'
self.assertEqual(mtms.model, '765')
mtms.serial = '0FEDCBA'
self.assertEqual(mtms.serial, '0FEDCBA')
self.assertEqual(mtms.mtms_str, '4321-765*0FEDCBA')
if __name__ == "__main__":
unittest.main()
|