1*** Settings *** 2 3Documentation VMI static/dynamic IP config tests. 4 5Resource ../../lib/external_intf/vmi_utils.robot 6 7Suite Setup Suite Setup Execution 8Test Teardown FFDC On Test Case Fail 9Suite Teardown Run Keyword And Ignore Error Suite Teardown Execution 10 11Force Tags vmi_interface_test 12 13*** Variables *** 14 15# users User Name password 16@{ADMIN} admin_user TestPwd123 17@{OPERATOR} operator_user TestPwd123 18@{ReadOnly} readonly_user TestPwd123 19&{USERS} Administrator=${ADMIN} ReadOnly=${ReadOnly} 20 21${test_ipv4} 10.6.6.6 22${test_gateway} 10.6.6.1 23${test_netmask} 255.255.252.0 24 25&{DHCP_ENABLED} DHCPEnabled=${${True}} 26&{DHCP_DISABLED} DHCPEnabled=${${False}} 27 28&{ENABLE_DHCP} DHCPv4=&{DHCP_ENABLED} 29&{DISABLE_DHCP} DHCPv4=&{DHCP_DISABLED} 30${wait_time} 10s 31 32 33*** Test Cases *** 34 35Verify All VMI EthernetInterfaces 36 [Documentation] Verify all VMI ethernet interfaces. 37 [Tags] Verify_All_VMI_EthernetInterfaces 38 39 Verify VMI EthernetInterfaces 40 41 42Verify Existing VMI Network Interface Details 43 [Documentation] Verify existing VMI network interface details. 44 [Tags] Verify_Existing_VMI_Network_Interface_Details 45 46 ${vmi_ip}= Get VMI Network Interface Details 47 ${origin}= Set Variable If ${vmi_ip["DHCPv4"]} == ${False} Static DHCP 48 Should Not Be Equal ${vmi_ip["DHCPv4"]} ${vmi_ip["IPv4StaticAddresses"]} 49 Should Be Equal As Strings ${vmi_ip["Id"]} ${ethernet_interface} 50 Should Be Equal As Strings ${vmi_ip["Description"]} 51 ... Hypervisor's Virtual Management Ethernet Interface 52 Should Be Equal As Strings ${vmi_ip["Name"]} Hypervisor Ethernet Interface 53 Should Be True ${vmi_ip["InterfaceEnabled"]} 54 Run Keyword If ${vmi_ip["IPv4StaticAddresses"]} != @{empty} 55 ... Verify VMI Network Interface Details ${vmi_ip["IPv4_Address"]} 56 ... ${origin} ${vmi_ip["IPv4_Gateway"]} ${vmi_ip["IPv4_SubnetMask"]} 57 58 59Delete Existing Static VMI IP Address 60 [Documentation] Delete existing static VMI IP address. 61 [Tags] Delete_Existing_Static_VMI_IP_Address 62 63 ${curr_origin}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled 64 Run Keyword If ${curr_origin} == ${True} Set VMI IPv4 Origin ${False} ${HTTP_ACCEPTED} 65 66 Delete VMI IPv4 Address 67 68 69Verify User Cannot Delete ReadOnly Property IPv4Addresses 70 [Documentation] Verify user cannot delete readonly property IPv4Addresses. 71 [Tags] Verify_User_Cannot_Delete_ReadOnly_Property_IPv4Addresses 72 73 ${curr_origin}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled 74 Run Keyword If ${curr_origin} == ${True} Set VMI IPv4 Origin ${False} ${HTTP_ACCEPTED} 75 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask} 76 Delete VMI IPv4 Address IPv4Addresses valid_status_code=${HTTP_FORBIDDEN} 77 78 79Assign Valid And Invalid Static IPv4 Address To VMI 80 [Documentation] Assign static IPv4 address to VMI. 81 [Tags] Assign_Valid_And_Invalid_Static_IPv4_Address_To_VMI 82 [Template] Set Static IPv4 Address To VMI And Verify 83 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution 84 85 # ip gateway netmask valid_status_code 86 10.5.20.30 10.5.20.1 255.255.252.0 ${HTTP_ACCEPTED} 87 a.3.118.94 10.5.20.1 255.255.252.0 ${HTTP_BAD_REQUEST} 88 10.5.20 10.5.20.1 255.255.252.0 ${HTTP_BAD_REQUEST} 89 10.5.20.-5 10.5.20.1 255.255.252.0 ${HTTP_BAD_REQUEST} 90 91 92Add Multiple IP Addresses On VMI Interface And Verify 93 [Documentation] Add multiple IP addresses on VMI interface and verify. 94 [Tags] Add_Multiple_IP_Addresses_On_VMI_Interface_And_Verify 95 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution 96 97 ${ip1}= Create dictionary Address=10.5.5.10 SubnetMask=255.255.252.0 Gateway=10.5.5.1 98 ${ip2}= Create dictionary Address=10.5.5.11 SubnetMask=255.255.252.0 Gateway=10.5.5.1 99 ${ip3}= Create dictionary Address=10.5.5.12 SubnetMask=255.255.252.0 Gateway=10.5.5.1 100 ${ips}= Create List ${ip1} ${ip2} ${ip3} 101 102 Redfish.Patch /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface} 103 ... body={'IPv4StaticAddresses':${ips}} valid_status_codes=[${HTTP_BAD_REQUEST}] 104 105 106Modify IP Addresses On VMI Interface And Verify 107 [Documentation] Modify IP addresses on VMI interface and verify. 108 [Tags] Modify_IP_Addresses_On_VMI_Interface_And_Verify 109 [Template] Set Static IPv4 Address To VMI And Verify 110 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution 111 112 # ip gateway netmask valid_status_code 113 10.5.5.10 10.5.5.1 255.255.252.0 ${HTTP_ACCEPTED} 114 10.5.5.11 10.5.5.1 255.255.252.0 ${HTTP_ACCEPTED} 115 116 117Switch Between IP Origins On VMI And Verify Details 118 [Documentation] Switch between IP origins on VMI and verify details. 119 [Tags] Switch_Between_IP_Origins_On_VMI_And_Verify_Details 120 121 Switch VMI IPv4 Origin And Verify Details 122 Switch VMI IPv4 Origin And Verify Details 123 124 125Verify Persistency Of VMI IPv4 Details After Host Reboot 126 [Documentation] Verify persistency of VMI IPv4 details after host reboot. 127 [Tags] Verify_Persistency_Of_VMI_IPv4_Details_After_Host_Reboot 128 129 # Verifying persistency of dynamic address. 130 Set VMI IPv4 Origin ${True} ${HTTP_ACCEPTED} 131 Redfish Power Off stack_mode=skip 132 Redfish Power On 133 ${default}= Set Variable 0.0.0.0 134 Verify VMI Network Interface Details ${default} DHCP ${default} ${default} 135 136 # Verifying persistency of static address. 137 Switch VMI IPv4 Origin And Verify Details 138 Redfish Power Off stack_mode=skip 139 Redfish Power On 140 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask} 141 142 143Delete VMI Static IP Address And Verify 144 [Documentation] Delete VMI static IP address and verify. 145 [Tags] Delete_VMI_Static_IP_Address_And_Verify 146 [Teardown] Test Teardown Execution 147 148 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask} 149 Delete VMI IPv4 Address 150 151 152Verify Successful VMI IP Static Configuration On HOST Boot After Session Delete 153 [Documentation] Verify VMI IP static Configuration On HOST Boot After session deleted. 154 [Tags] Verify_Successful_VMI_IP_Static_Configuration_On_HOST_Boot_After_Session_Delete 155 [Teardown] Run keywords Delete VMI IPv4 Address AND Test Teardown Execution 156 157 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask} 158 159 ${session_info}= Get Redfish Session Info 160 Redfish.Delete ${session_info["location"]} 161 162 # Create a new Redfish session 163 Redfish.Login 164 Redfish Power Off 165 Redfish Power On 166 167 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask} 168 169 170Verify Persistency Of VMI DHCP IP Configuration After Multiple HOST Reboots 171 [Documentation] Verify Persistency Of VMI DHCP IP configuration After Multiple HOST Reboots 172 [Tags] Verify_Persistency_Of_VMI_DHCP_IP_Configuration_After_Multiple_HOST_Reboots 173 [Teardown] Test Teardown Execution 174 175 Set VMI IPv4 Origin ${True} ${HTTP_ACCEPTED} 176 ${vmi_ip_config}= Get VMI Network Interface Details 177 # Verifying persistency of dynamic address after multiple reboots. 178 FOR ${i} IN RANGE ${2} 179 Redfish Power Off 180 Redfish Power On 181 Verify VMI Network Interface Details ${vmi_ip_config["IPv4_Address"]} 182 ... DHCP ${vmi_ip_config["IPv4_Gateway"]} ${vmi_ip_config["IPv4_SubnetMask"]} 183 END 184 185 186Enable DHCP When Static IP Configured And Verify Static IP 187 [Documentation] Enable DHCP when static ip configured and verify static ip 188 [Tags] Enable_DHCP_When_Static_IP_Configured_And_Verify_Static_IP 189 [Setup] Redfish Power On 190 [Teardown] Test Teardown Execution 191 192 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask} 193 Set VMI IPv4 Origin ${True} 194 ${vmi_network_conf}= Get VMI Network Interface Details 195 Should Not Be Equal As Strings ${test_ipv4} ${vmi_network_conf["IPv4_Address"]} 196 197 198Verify VMI Static IP Configuration Persist On BMC Reset Before Host Boot 199 [Documentation] Verify VMI static IP configuration persist on BMC reset. 200 [Tags] Verify_VMI_Static_IP_Configuration_Persist_On_BMC_Reset_Before_Host_Boot 201 [Teardown] Run keywords Delete VMI IPv4 Address AND FFDC On Test Case Fail 202 203 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask} 204 Redfish OBMC Reboot (off) stack_mode=skip 205 Redfish Power On 206 # Verifying the VMI static configuration 207 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask} 208 209 210Add Static IP When Host Poweroff And Verify On Poweron 211 [Documentation] Add Static IP When Host Poweroff And Verify on power on 212 [Tags] Add_Static_IP_When_Host_Poweroff_And_Verify_On_Poweron 213 [Setup] Redfish Power Off 214 [Teardown] Run keywords Delete VMI IPv4 Address AND FFDC On Test Case Fail 215 216 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask} 217 Redfish Power On 218 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask} 219 220 221Add VMI Static IP When Host Poweroff And Verify Static IP On BMC Reset 222 [Documentation] Add Static IP When Host Poweroff And Verify Static IP On BMC Reset. 223 [Tags] Add_VMI_Static_IP_When_Host_Poweroff_And_Verify_Static_IP_On_BMC_Reset 224 [Setup] Redfish Power Off 225 [Teardown] Run keywords Delete VMI IPv4 Address AND FFDC On Test Case Fail 226 227 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask} 228 Redfish OBMC Reboot (off) stack_mode=skip 229 Redfish Power On 230 Verify VMI Network Interface Details ${test_ipv4} Static ${test_gateway} ${test_netmask} 231 232 233Enable DHCP When No Static IP Configured And Verify DHCP IP 234 [Documentation] Enable DHCP when no static ip configured and verify dhcp ip 235 [Tags] Enable_DHCP_When_No_Static_IP_Configured_And_Verify_DHCP_IP 236 [Setup] Run Keyword And Ignore Error Delete VMI IPv4 Address 237 [Teardown] Test Teardown Execution 238 239 ${curr_origin}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled 240 Run Keyword If ${curr_origin} == ${False} Set VMI IPv4 Origin ${True} ${HTTP_ACCEPTED} 241 ${vmi_ip_config}= Get VMI Network Interface Details 242 Verify VMI Network Interface Details ${vmi_ip_config["IPv4_Address"]} 243 ... DHCP ${vmi_ip_config["IPv4_Gateway"]} ${vmi_ip_config["IPv4_SubnetMask"]} 244 245 246Verify User Cannot Delete VMI DHCP IP Address 247 [Documentation] Verify user cannot delete VMI DHCP IP Address 248 [Tags] Verify_User_Cannot_Delete_VMI_DHCP_IP_Address 249 [Setup] Set VMI IPv4 Origin ${True} 250 [Teardown] Test Teardown Execution 251 252 Delete VMI IPv4 Address IPv4Addresses valid_status_code=${HTTP_FORBIDDEN} 253 ${resp}= Redfish.Get 254 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface} 255 Should Not Be Empty ${resp.dict["IPv4Addresses"]} 256 257 258Enable DHCP When Static IP Configured DHCP Server Unavailable And Verify IP 259 [Documentation] Enable DHCP When Static IP Configured And DHCP Server Unavailable And Verify No IP. 260 [Tags] Enable_DHCP_When_Static_IP_Configured_DHCP_Server_Unavailable_And_Verify_IP 261 [Teardown] Test Teardown Execution 262 263 Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} ${test_netmask} 264 Set VMI IPv4 Origin ${True} 265 ${default}= Set Variable 0.0.0.0 266 Verify VMI Network Interface Details ${default} DHCP ${default} ${default} 267 268 269Verify To Configure VMI Static IP Address With Different User Roles 270 [Documentation] Verify to configure vmi static ip address with different user roles. 271 [Tags] Verify_To_Configure_VMI_Static_IP_Address_With_Different_User_Roles 272 [Setup] Create Users With Different Roles users=${USERS} force=${True} 273 [Template] Config VMI Static IP Address Using Different Users 274 [Teardown] Delete BMC Users Using Redfish 275 276 # username password ip_address gateway nemask valid_status_code 277 admin_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_ACCEPTED} 278 readonly_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN} 279 280 281Verify To Configure VMI Static IP Address With Operator User Role 282 [Documentation] Verify to configure vmi static ip address with operator user role. 283 [Tags] Verify_To_Configure_VMI_Static_IP_Address_With_Operator_User_Role 284 [Setup] Create Users With Different Roles users=${USERS} force=${True} 285 [Template] Config VMI Static IP Address Using Different Users 286 [Teardown] Delete BMC Users Using Redfish 287 288 # username password ip_address gateway nemask valid_status_code 289 operator_user TestPwd123 ${test_ipv4} ${test_gateway} ${test_netmask} ${HTTP_FORBIDDEN} 290 291 292Verify To Delete VMI Static IP Address With Different User Roles 293 [Documentation] Verify to delete vmi static IP address with different user roles. 294 [Tags] Verify_To_Delete_VMI_Static_IP_Address_With_Different_User_Roles 295 [Setup] Create Users With Different Roles users=${USERS} force=${True} 296 [Template] Delete VMI Static IP Address Using Different Users 297 [Teardown] Delete BMC Users Using Redfish 298 299 # username password valid_status_code 300 admin_user TestPwd123 ${HTTP_ACCEPTED} 301 readonly_user TestPwd123 ${HTTP_FORBIDDEN} 302 303 304Verify To Delete VMI Static IP Address With Operator User Role 305 [Documentation] Verify to delete vmi static IP address with operator user role. 306 [Tags] Verify_To_Delete_VMI_Static_IP_Address_With_Operator_User_Role 307 [Setup] Create Users With Different Roles users=${USERS} force=${True} 308 [Template] Delete VMI Static IP Address Using Different Users 309 [Teardown] Delete BMC Users Using Redfish 310 311 # username password valid_status_code 312 operator_user TestPwd123 ${HTTP_FORBIDDEN} 313 314 315Verify To Update VMI Static IP Address With Different User Roles 316 [Documentation] Verify to update vmi static IP address with different user roles. 317 [Tags] Verify_To_Update_VMI_Static_IP_Address_With_Different_User_Roles 318 [Setup] Create Users With Different Roles users=${USERS} force=${True} 319 [Template] Config VMI Static IP Address Using Different Users 320 [Teardown] Delete BMC Users Using Redfish 321 322 # username password ip_address gateway netmask valid_status_code 323 admin_user TestPwd123 10.5.10.20 10.5.10.1 255.255.0.0 ${HTTP_ACCEPTED} 324 readonly_user TestPwd123 10.5.20.40 10.5.20.1 255.255.0.0 ${HTTP_FORBIDDEN} 325 326 327Verify To Update VMI Static IP Address With Operator User Role 328 [Documentation] Verify to update vmi static IP address with operator user role. 329 [Tags] Verify_To_Update_VMI_Static_IP_Address_With_Operator_User_Role 330 [Setup] Create Users With Different Roles users=${USERS} force=${True} 331 [Template] Config VMI Static IP Address Using Different Users 332 [Teardown] Delete BMC Users Using Redfish 333 334 # username password ip_address gateway netmask valid_status_code 335 operator_user TestPwd123 10.5.10.30 10.5.10.1 255.255.0.0 ${HTTP_FORBIDDEN} 336 337 338Verify To Read VMI Network Configuration With Different User Roles 339 [Documentation] Verify to read vmi network configuration with different user roles. 340 [Tags] Verify_To_Read_VMI_Network_Configuration_With_Different_User_Roles 341 [Setup] Create Users With Different Roles users=${USERS} force=${True} 342 [Template] Read VMI Static IP Address Using Different Users 343 [Teardown] Delete BMC Users Using Redfish 344 345 # username password valid_status_code 346 admin_user TestPwd123 ${HTTP_OK} 347 readonly_user TestPwd123 ${HTTP_OK} 348 349 350Verify To Read VMI Network Configuration With Operator User Role 351 [Documentation] Verify to read vmi network configuration with operator user role. 352 [Tags] Verify_To_Read_VMI_Network_Configuration_With_Operator_User_Role 353 [Setup] Create Users With Different Roles users=${USERS} force=${True} 354 [Template] Read VMI Static IP Address Using Different Users 355 [Teardown] Delete BMC Users Using Redfish 356 357 # username password valid_status_code 358 operator_user TestPwd123 ${HTTP_FORBIDDEN} 359 360 361Enable DHCP On VMI Network Via Different Users Roles And Verify 362 [Documentation] Enable DHCP On VMI Network Via Different Users Roles And Verify. 363 [Tags] Enable_DHCP_On_VMI_Network_Via_Different_Users_Roles_And_Verify 364 [Setup] Create Users With Different Roles users=${USERS} force=${True} 365 [Template] Update User Role And Set VMI IPv4 Origin 366 [Teardown] Delete BMC Users Using Redfish 367 368 # username password dhcp_enabled valid_status_code 369 admin_user TestPwd123 ${True} ${HTTP_ACCEPTED} 370 readonly_user TestPwd123 ${True} ${HTTP_FORBIDDEN} 371 372 373Enable DHCP On VMI Network Via Operator User Role And Verify 374 [Documentation] Enable DHCP On VMI Network Via Operator User Role And Verify. 375 [Tags] Enable_DHCP_On_VMI_Network_Via_Operator_User_Role_And_Verify 376 [Setup] Create Users With Different Roles users=${USERS} force=${True} 377 [Template] Update User Role And Set VMI IPv4 Origin 378 [Teardown] Delete BMC Users Using Redfish 379 380 # username password dhcp_enabled valid_status_code 381 operator_user TestPwd123 ${True} ${HTTP_FORBIDDEN} 382 383 384Disable DHCP On VMI Network Via Different Users Roles And Verify 385 [Documentation] Disable DHCP On VMI Network Via Different Users Roles And Verify. 386 [Tags] Disable_DHCP_On_VMI_Network_Via_Different_Users_Roles_And_Verify 387 [Setup] Create Users With Different Roles users=${USERS} force=${True} 388 [Template] Update User Role And Set VMI IPv4 Origin 389 [Teardown] Delete BMC Users Using Redfish 390 391 # username password dhcp_enabled valid_status_code 392 admin_user TestPwd123 ${False} ${HTTP_ACCEPTED} 393 readonly_user TestPwd123 ${False} ${HTTP_FORBIDDEN} 394 395 396Disable DHCP On VMI Network Via Operator User Role And Verify 397 [Documentation] Disable DHCP On VMI Network Via Operator User Role And Verify. 398 [Tags] Disable_DHCP_On_VMI_Network_Via_Operator_User_Role_And_Verify 399 [Setup] Create Users With Different Roles users=${USERS} force=${True} 400 [Template] Update User Role And Set VMI IPv4 Origin 401 [Teardown] Delete BMC Users Using Redfish 402 403 # username password dhcp_enabled valid_status_code 404 operator_user TestPwd123 ${False} ${HTTP_FORBIDDEN} 405 406 407Enable And Disable DHCP And Verify 408 [Documentation] verify enable DHCP and disable DHCP. 409 [Tags] Enable_And_Disable_DHCP_And_Verify 410 411 Set VMI IPv4 Origin ${True} 412 ${default}= Set Variable 0.0.0.0 413 Verify VMI Network Interface Details ${default} DHCP ${default} ${default} 414 Set VMI IPv4 Origin ${False} 415 Verify VMI Network Interface Details ${default} Static ${default} ${default} 416 417 418Multiple Times Enable And Disable DHCP And Verify 419 [Documentation] Enable and Disable DHCP in a loop and verify VMI gets an IP address from DHCP 420 ... each time when DHCP is enabled 421 [Tags] Multiple_Times_Enable_And_Disable_DHCP_And_Verify 422 423 ${default}= Set Variable 0.0.0.0 424 FOR ${i} IN RANGE ${2} 425 Set VMI IPv4 Origin ${True} 426 Verify VMI Network Interface Details ${default} DHCP ${default} ${default} 427 Set VMI IPv4 Origin ${False} 428 Verify VMI Network Interface Details ${default} Static ${default} ${default} 429 END 430 431 432Assign Static IPv4 Address With Invalid Netmask To VMI 433 [Documentation] Assign static IPv4 address with invalid netmask and expect error. 434 [Tags] Assign_Static_IPv4_Address_With_Invalid_Netmask_To_VMI 435 [Template] Set Static IPv4 Address To VMI And Verify 436 437 # ip gateway netmask valid_status_code 438 ${test_ipv4} ${test_gateway} 255.256.255.0 ${HTTP_BAD_REQUEST} 439 ${test_ipv4} ${test_gateway} ff.ff.ff.ff ${HTTP_BAD_REQUEST} 440 ${test_ipv4} ${test_gateway} 255.255.253.0 ${HTTP_BAD_REQUEST} 441 442 443Assign Static IPv4 Address With Invalid Gateway To VMI 444 [Documentation] Add static IPv4 address with invalid gateway and expect error. 445 [Tags] Assign_Static_IPv4_Address_With_Invalid_Gateway_To_VMI 446 [Template] Set Static IPv4 Address To VMI And Verify 447 448 # ip gateway netmask valid_status_code 449 ${test_ipv4} @@@.%%.44.11 ${test_netmask} ${HTTP_BAD_REQUEST} 450 ${test_ipv4} 0xa.0xb.0xc.0xd ${test_netmask} ${HTTP_BAD_REQUEST} 451 ${test_ipv4} 10.3.36 ${test_netmask} ${HTTP_BAD_REQUEST} 452 ${test_ipv4} 10.3.36.-10 ${test_netmask} ${HTTP_BAD_REQUEST} 453 454 455*** Keywords *** 456 457Suite Setup Execution 458 [Documentation] Do test setup execution task. 459 460 Redfish.Login 461 Redfish Power On 462 ${active_channel_config}= Get Active Channel Config 463 Set Suite Variable ${active_channel_config} 464 Set Suite Variable ${ethernet_interface} ${active_channel_config['${CHANNEL_NUMBER}']['name']} 465 ${resp}= Redfish.Get 466 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface} 467 ${ip_resp}= Evaluate json.loads(r'''${resp.text}''') json 468 ${length}= Get Length ${ip_resp["IPv4StaticAddresses"]} 469 ${vmi_network_conf}= Run Keyword If ${length} != ${0} Get VMI Network Interface Details 470 Set Suite Variable ${vmi_network_conf} 471 472 473Test Teardown Execution 474 [Documentation] Do test teardown execution task. 475 476 FFDC On Test Case Fail 477 ${curr_mode}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled 478 Run Keyword If ${curr_mode} == ${True} Set VMI IPv4 Origin ${False} 479 Run Keyword If ${vmi_network_conf} != ${None} 480 ... Set Static IPv4 Address To VMI And Verify ${vmi_network_conf["IPv4_Address"]} 481 ... ${vmi_network_conf["IPv4_Gateway"]} ${vmi_network_conf["IPv4_SubnetMask"]} 482 483 484Get Immediate Child Parameter From VMI Network Interface 485 [Documentation] Get immediate child parameter from VMI network interface. 486 [Arguments] ${parameter} ${valid_status_code}=${HTTP_OK} 487 488 # Description of argument(s): 489 # parameter parameter for which value is required. Ex: DHCPEnabled, MACAddress etc. 490 # valid_status_code Expected valid status code from GET request. 491 492 ${resp}= Redfish.Get 493 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface} 494 ... valid_status_codes=[${valid_status_code}] 495 496 ${ip_resp}= Evaluate json.loads(r'''${resp.text}''') json 497 ${value}= Set Variable If '${parameter}' != 'DHCPEnabled' ${ip_resp["${parameter}"]} 498 ... ${ip_resp["DHCPv4"]["${parameter}"]} 499 500 [Return] ${value} 501 502 503Switch VMI IPv4 Origin And Verify Details 504 [Documentation] Switch VMI IPv4 origin and verify details. 505 506 ${dhcp_mode_before}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled 507 ${dhcp_enabled}= Set Variable If ${dhcp_mode_before} == ${False} ${True} ${False} 508 509 ${default}= Set Variable 0.0.0.0 510 ${origin}= Set Variable If ${dhcp_mode_before} == ${False} DHCP Static 511 Set VMI IPv4 Origin ${dhcp_enabled} ${HTTP_ACCEPTED} 512 513 ${dhcp_mode_after}= Get Immediate Child Parameter From VMI Network Interface DHCPEnabled 514 Should Not Be Equal ${dhcp_mode_before} ${dhcp_mode_after} 515 516 Run Keyword If ${dhcp_mode_after} == ${True} 517 ... Verify VMI Network Interface Details ${default} ${origin} ${default} ${default} 518 519 520Delete VMI Static IP Address Using Different Users 521 [Documentation] Update user role and delete vmi static IP address. 522 [Arguments] ${username} ${password} ${valid_status_code} 523 [Teardown] Run Keywords Redfish.Login AND 524 ... Set Static IPv4 Address To VMI And Verify ${test_ipv4} ${test_gateway} 525 ... ${test_netmask} ${HTTP_ACCEPTED} AND Redfish.Logout 526 527 # Description of argument(s): 528 # username The host username. 529 # password The host password. 530 # valid_status_code The expected valid status code. 531 532 # TODO: operator_user role is not yet supported. 533 Skip If '${username}' == 'operator_user' 534 Redfish.Login ${username} ${password} 535 Delete VMI IPv4 Address delete_param=IPv4StaticAddresses valid_status_code=${valid_status_code} 536 537 538Config VMI Static IP Address Using Different Users 539 [Documentation] Update user role and update vmi static ip address. 540 [Arguments] ${username} ${password} ${ip} ${gateway} ${netmask} 541 ... ${valid_status_code} 542 543 # Description of argument(s): 544 # username The host username. 545 # password The host password. 546 # ip IP address to be added (e.g. "10.7.7.7"). 547 # subnet_mask Subnet mask for the IP to be added 548 # (e.g. "255.255.0.0"). 549 # gateway Gateway for the IP to be added (e.g. "10.7.7.1"). 550 # valid_status_code The expected valid status code. 551 552 # TODO: operator_user role is not yet supported. 553 Skip If '${username}' == 'operator_user' 554 Redfish.Login ${username} ${password} 555 Set Static IPv4 Address To VMI And Verify ${ip} ${gateway} ${netmask} ${valid_status_code} 556 557 558Read VMI Static IP Address Using Different Users 559 [Documentation] Update user role and read vmi static ip address. 560 [Arguments] ${username} ${password} ${valid_status_code} 561 562 # Description of argument(s): 563 # username The host username. 564 # password The host password. 565 # valid_status_code The expected valid status code. 566 567 # TODO: operator_user role is not yet supported. 568 Skip If '${username}' == 'operator_user' 569 Redfish.Login ${username} ${password} 570 Redfish.Get 571 ... /redfish/v1/Systems/hypervisor/EthernetInterfaces/${ethernet_interface} 572 ... valid_status_codes=[${valid_status_code}] 573 574 575Delete BMC Users Using Redfish 576 [Documentation] Delete BMC users via redfish. 577 578 Redfish.Login 579 Delete BMC Users Via Redfish users=${USERS} 580 581 582Update User Role And Set VMI IPv4 Origin 583 [Documentation] Update User Role And Set VMI IPv4 Origin. 584 [Arguments] ${username} ${password} ${dhcp_enabled} ${valid_status_code} 585 586 # Description of argument(s): 587 # username The host username. 588 # password The host password. 589 # dhcp_enabled Indicates whether dhcp should be enabled 590 # (${True}, ${False}). 591 # valid_status_code The expected valid status code. 592 593 # TODO: operator_user role is not yet supported. 594 Skip If '${username}' == 'operator_user' 595 Redfish.Login ${username} ${password} 596 Set VMI IPv4 Origin ${dhcp_enabled} ${valid_status_code} 597 598 599Suite Teardown Execution 600 [Documentation] Do suite teardown execution task. 601 602 Run Keyword If ${vmi_network_conf} != ${None} 603 ... Set Static IPv4 Address To VMI And Verify ${vmi_network_conf["IPv4_Address"]} 604 ... ${vmi_network_conf["IPv4_Gateway"]} ${vmi_network_conf["IPv4_SubnetMask"]} 605 Delete All Redfish Sessions 606 Redfish.Logout 607