Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 1 | *** Settings *** |
George Keishing | 4583a08 | 2019-02-25 10:28:42 -0600 | [diff] [blame] | 2 | Documentation This suite tests Redfish Host power operations. |
| 3 | |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 4 | Resource ../../lib/boot_utils.robot |
George Keishing | 36c39aa | 2019-03-01 04:33:58 -0600 | [diff] [blame] | 5 | Resource ../../lib/common_utils.robot |
George Keishing | d8c8b31 | 2019-04-09 11:34:58 -0500 | [diff] [blame] | 6 | Resource ../../lib/open_power_utils.robot |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 7 | |
George Keishing | 36c39aa | 2019-03-01 04:33:58 -0600 | [diff] [blame] | 8 | Test Setup Test Setup Execution |
| 9 | Test Teardown Test Teardown Execution |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 10 | |
| 11 | *** Test Cases *** |
| 12 | |
George Keishing | 4583a08 | 2019-02-25 10:28:42 -0600 | [diff] [blame] | 13 | Verify Redfish Host GracefulShutdown |
| 14 | [Documentation] Verify Redfish host graceful shutdown operation. |
| 15 | [Tags] Verify_Redfish_Host_GracefulShutdown |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 16 | |
| 17 | Redfish Power Off |
| 18 | |
George Keishing | 9833f96 | 2019-10-07 12:37:57 -0500 | [diff] [blame] | 19 | |
Lei YU | 46b1a8e | 2020-01-16 14:21:53 +0800 | [diff] [blame] | 20 | Verify Redfish BMC PowerOn With OCC State |
| 21 | [Documentation] Verify Redfish host power on operation. |
| 22 | [Tags] Verify_Redfish_BMC_PowerOn_With_OCC_State |
| 23 | |
| 24 | Redfish Power On |
| 25 | |
| 26 | # TODO: Replace OCC state check with redfish property when available. |
| 27 | Verify OCC State |
| 28 | |
| 29 | |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 30 | Verify Redfish BMC PowerOn |
George Keishing | 4583a08 | 2019-02-25 10:28:42 -0600 | [diff] [blame] | 31 | [Documentation] Verify Redfish host power on operation. |
| 32 | [Tags] Verify_Redfish_Host_PowerOn |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 33 | |
| 34 | Redfish Power On |
| 35 | |
George Keishing | d8c8b31 | 2019-04-09 11:34:58 -0500 | [diff] [blame] | 36 | # TODO: Replace OCC state check with redfish property when available. |
| 37 | Verify OCC State |
| 38 | |
George Keishing | 6dbadc5 | 2020-07-15 09:24:41 -0500 | [diff] [blame] | 39 | ${power_uri_list}= redfish_utils.Get Members URI /redfish/v1/Chassis/ PowerControl |
| 40 | Log List ${power_uri_list} |
| 41 | |
| 42 | # Power entries could be seen across different redfish path, remove the URI |
| 43 | # where the attribute is non-existent. |
| 44 | # Example: |
| 45 | # ['/redfish/v1/Chassis/chassis/Power', |
| 46 | # '/redfish/v1/Chassis/motherboard/Power'] |
| 47 | FOR ${idx} IN @{power_uri_list} |
| 48 | ${power_control}= redfish_utils.Get Attribute ${idx} PowerControl |
| 49 | Log Dictionary ${power_control[0]} |
| 50 | |
| 51 | # Ensure the path does have the attribute else set to EMPTY as default to skip. |
| 52 | ${value}= Get Variable Value ${power_control[0]['PowerConsumedWatts']} ${EMPTY} |
| 53 | Run Keyword If "${value}" == "${EMPTY}" |
| 54 | ... Remove Values From List ${power_uri_list} ${idx} |
| 55 | |
| 56 | # Check the next available element in the list. |
| 57 | Continue For Loop If "${value}" == "${EMPTY}" |
| 58 | |
| 59 | Valid Dict power_control[${0}] ['PowerConsumedWatts'] |
| 60 | |
| 61 | END |
| 62 | |
George Keishing | e68cbfb | 2020-08-12 11:11:58 -0500 | [diff] [blame] | 63 | # Double check, the validation has at least one valid path. |
George Keishing | 6dbadc5 | 2020-07-15 09:24:41 -0500 | [diff] [blame] | 64 | Should Not Be Empty ${power_uri_list} |
George Keishing | e68cbfb | 2020-08-12 11:11:58 -0500 | [diff] [blame] | 65 | ... msg=Should contain at least one element in the list. |
George Keishing | 9833f96 | 2019-10-07 12:37:57 -0500 | [diff] [blame] | 66 | |
| 67 | |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 68 | Verify Redfish BMC GracefulRestart |
George Keishing | 4583a08 | 2019-02-25 10:28:42 -0600 | [diff] [blame] | 69 | [Documentation] Verify Redfish host graceful restart operation. |
| 70 | [Tags] Verify_Redfish_Host_GracefulRestart |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 71 | |
George Keishing | e523fc0 | 2020-03-23 12:28:01 -0500 | [diff] [blame] | 72 | RF SYS GracefulRestart |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 73 | |
George Keishing | 9833f96 | 2019-10-07 12:37:57 -0500 | [diff] [blame] | 74 | |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 75 | Verify Redfish BMC PowerOff |
George Keishing | 4583a08 | 2019-02-25 10:28:42 -0600 | [diff] [blame] | 76 | [Documentation] Verify Redfish host power off operation. |
| 77 | [Tags] Verify_Redfish_Host_PowerOff |
Sridevi Ramesh | d737eb9 | 2019-02-13 05:03:21 -0600 | [diff] [blame] | 78 | |
| 79 | Redfish Hard Power Off |
George Keishing | 36c39aa | 2019-03-01 04:33:58 -0600 | [diff] [blame] | 80 | |
| 81 | *** Keywords *** |
| 82 | |
| 83 | Test Setup Execution |
| 84 | [Documentation] Do test case setup tasks. |
| 85 | |
George Keishing | 9833f96 | 2019-10-07 12:37:57 -0500 | [diff] [blame] | 86 | Printn |
George Keishing | 36c39aa | 2019-03-01 04:33:58 -0600 | [diff] [blame] | 87 | Start SOL Console Logging |
George Keishing | 2997a28 | 2020-06-16 00:42:08 -0500 | [diff] [blame] | 88 | Redfish.Login |
George Keishing | 36c39aa | 2019-03-01 04:33:58 -0600 | [diff] [blame] | 89 | |
| 90 | |
| 91 | Test Teardown Execution |
| 92 | [Documentation] Collect FFDC and SOL log. |
| 93 | |
| 94 | FFDC On Test Case Fail |
| 95 | ${sol_log}= Stop SOL Console Logging |
| 96 | Log ${sol_log} |
George Keishing | 99a6205 | 2020-06-12 13:32:13 -0500 | [diff] [blame] | 97 | |
| 98 | Run Keyword If ${REDFISH_SUPPORTED} |
| 99 | ... Redfish Set Auto Reboot RetryAttempts |
| 100 | ... ELSE |
| 101 | ... Set Auto Reboot ${1} |
George Keishing | 2997a28 | 2020-06-16 00:42:08 -0500 | [diff] [blame] | 102 | Redfish.Logout |