Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation This example demonstrates executing commands on a remote machine |
| 3 | ... and getting their output and the return code. |
| 4 | ... |
| 5 | ... Notice how connections are handled as part of the suite setup and |
| 6 | ... teardown. This saves some time when executing several test cases. |
| 7 | |
Rahul Maheshwari | 06174f2 | 2017-03-06 03:17:09 -0600 | [diff] [blame] | 8 | Resource ../lib/rest_client.robot |
| 9 | Resource ../lib/ipmi_client.robot |
| 10 | Resource ../lib/openbmc_ffdc.robot |
George Keishing | a743322 | 2017-03-23 23:47:11 -0500 | [diff] [blame] | 11 | Resource ../lib/state_manager.robot |
Rahul Maheshwari | 06174f2 | 2017-03-06 03:17:09 -0600 | [diff] [blame] | 12 | Library ../data/model.py |
Sweta Potthuri | af741cb | 2017-07-04 09:41:17 -0500 | [diff] [blame] | 13 | Resource ../lib/boot_utils.robot |
Steven Sombar | aaf72c4 | 2017-09-05 12:02:00 -0500 | [diff] [blame] | 14 | Resource ../lib/utils.robot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 15 | |
Sweta Potthuri | 7e5dc59 | 2017-07-03 06:10:02 -0500 | [diff] [blame] | 16 | Suite Setup Setup The Suite |
Rahul Maheshwari | 06174f2 | 2017-03-06 03:17:09 -0600 | [diff] [blame] | 17 | Test Setup Open Connection And Log In |
| 18 | Test Teardown Post Test Case Execution |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 19 | |
| 20 | *** Variables *** |
Sweta Potthuri | af741cb | 2017-07-04 09:41:17 -0500 | [diff] [blame] | 21 | |
| 22 | ${stack_mode} skip |
| 23 | ${model}= ${OPENBMC_MODEL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 24 | |
| 25 | *** Test Cases *** |
| 26 | Verify connection |
| 27 | Execute new Command echo "hello" |
| 28 | Response Should Be Equal "hello" |
| 29 | |
| 30 | Execute ipmi BT capabilities command |
George Keishing | cac24c7 | 2016-09-23 04:44:19 -0500 | [diff] [blame] | 31 | [Tags] Execute_ipmi_BT_capabilities_command |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 32 | Run IPMI command 0x06 0x36 |
| 33 | response Should Be Equal " 01 40 40 0a 01" |
| 34 | |
Sridevi Ramesh | 83f5c59 | 2017-01-20 04:35:13 -0600 | [diff] [blame] | 35 | Execute Set Sensor Boot Count |
| 36 | [Tags] Execute_Set_Sensor_Boot_Count |
| 37 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 38 | ${uri}= Get System component BootCount |
| 39 | ${x}= Get Sensor Number ${uri} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 40 | |
| 41 | Run IPMI command 0x04 0x30 ${x} 0x01 0x00 0x35 0x00 0x00 0x00 0x00 0x00 0x00 |
| 42 | Read the Attribute ${uri} value |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 43 | ${val}= convert to integer 53 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 44 | Response Should Be Equal ${val} |
| 45 | |
Rahul Maheshwari | eb1f6db | 2017-04-27 06:32:53 -0500 | [diff] [blame] | 46 | Verify OCC Power Supply Redundancy |
| 47 | [Documentation] Check if OCC's power supply is set to not redundant. |
| 48 | [Tags] Verify_OCC_Power_Supply_Redundancy |
| 49 | ${uri}= Get System Component PowerSupplyRedundancy |
| 50 | |
| 51 | Read The Attribute ${uri} value |
| 52 | Response Should Be Equal Disabled |
| 53 | |
| 54 | Verify OCC Power Supply Derating Value |
| 55 | [Documentation] Check if OCC's power supply derating value |
| 56 | ... is set correctly to a constant value 10. |
| 57 | [Tags] Verify_OCC_Power_Supply_Derating_Value |
| 58 | |
| 59 | ${uri}= Get System Component PowerSupplyDerating |
| 60 | |
| 61 | Read The Attribute ${uri} value |
| 62 | Response Should Be Equal ${10} |
| 63 | |
Rahul Maheshwari | ca368e5 | 2017-05-04 05:01:49 -0500 | [diff] [blame] | 64 | |
| 65 | Verify Enabling OCC Turbo Setting Via IPMI |
| 66 | [Documentation] Set and verify OCC's turbo allowed on enable. |
| 67 | # The allowed value for turbo allowed: |
| 68 | # True - To enable turbo allowed. |
| 69 | # False - To disable turbo allowed. |
Sweta Potthuri | 7e5dc59 | 2017-07-03 06:10:02 -0500 | [diff] [blame] | 70 | [Setup] Turbo Setting Test Case Setup |
Rahul Maheshwari | ca368e5 | 2017-05-04 05:01:49 -0500 | [diff] [blame] | 71 | [Tags] Verify_Enabling_OCC_Turbo_Setting_Via_IPMI |
Sweta Potthuri | 7e5dc59 | 2017-07-03 06:10:02 -0500 | [diff] [blame] | 72 | [Teardown] Restore System Configuration |
Rahul Maheshwari | ca368e5 | 2017-05-04 05:01:49 -0500 | [diff] [blame] | 73 | |
| 74 | ${uri}= Get System Component TurboAllowed |
| 75 | ${sensor_num}= Get Sensor Number ${uri} |
| 76 | |
| 77 | ${ipmi_cmd}= Catenate SEPARATOR= 0x04 0x30 ${sensor_num} 0x00${SPACE} |
| 78 | ... 0x00 0x01 0x00 0x00 0x00 0x00 0x20 0x00 |
| 79 | Run IPMI Command ${ipmi_cmd} |
| 80 | |
| 81 | Read The Attribute ${uri} value |
| 82 | Response Should Be Equal True |
| 83 | |
| 84 | |
| 85 | Verify Disabling OCC Turbo Setting Via IPMI |
| 86 | [Documentation] Set and verify OCC's turbo allowed on disable. |
| 87 | # The allowed value for turbo allowed: |
| 88 | # True - To enable turbo allowed. |
| 89 | # False - To disable turbo allowed. |
Sweta Potthuri | 7e5dc59 | 2017-07-03 06:10:02 -0500 | [diff] [blame] | 90 | [Setup] Turbo Setting Test Case Setup |
Rahul Maheshwari | ca368e5 | 2017-05-04 05:01:49 -0500 | [diff] [blame] | 91 | [Tags] Verify_Disabling_OCC_Turbo_Setting_Via_IPMI |
Sweta Potthuri | 7e5dc59 | 2017-07-03 06:10:02 -0500 | [diff] [blame] | 92 | [Teardown] Restore System Configuration |
Rahul Maheshwari | ca368e5 | 2017-05-04 05:01:49 -0500 | [diff] [blame] | 93 | |
| 94 | ${uri}= Get System Component TurboAllowed |
| 95 | ${sensor_num}= Get Sensor Number ${uri} |
| 96 | |
| 97 | ${ipmi_cmd}= Catenate SEPARATOR= 0x04 0x30 ${sensor_num} 0x00${SPACE} |
| 98 | ... 0x00 0x00 0x00 0x01 0x00 0x00 0x20 0x00 |
| 99 | Run IPMI Command ${ipmi_cmd} |
| 100 | |
| 101 | Read The Attribute ${uri} value |
| 102 | Response Should Be Equal False |
| 103 | |
| 104 | |
Rahul Maheshwari | a3fdba4 | 2017-05-30 06:44:04 -0500 | [diff] [blame] | 105 | Verify Setting OCC Turbo Via REST |
| 106 | [Documentation] Verify enabling and disabling OCC's turbo allowed |
| 107 | ... via REST. |
| 108 | # The allowed value for turbo allowed: |
| 109 | # True - To enable turbo allowed. |
| 110 | # False - To disable turbo allowed. |
| 111 | |
Sweta Potthuri | 7e5dc59 | 2017-07-03 06:10:02 -0500 | [diff] [blame] | 112 | [Setup] Turbo Setting Test Case Setup |
Rahul Maheshwari | a3fdba4 | 2017-05-30 06:44:04 -0500 | [diff] [blame] | 113 | [Tags] Verify_Setting_OCC_Turbo_Via_REST |
Sweta Potthuri | 7e5dc59 | 2017-07-03 06:10:02 -0500 | [diff] [blame] | 114 | [Teardown] Restore System Configuration |
Rahul Maheshwari | a3fdba4 | 2017-05-30 06:44:04 -0500 | [diff] [blame] | 115 | |
| 116 | Set Turbo Setting Via REST False |
| 117 | ${setting}= Read Turbo Setting Via REST |
| 118 | Should Be Equal ${setting} False |
| 119 | |
| 120 | Set Turbo Setting Via REST True |
| 121 | ${setting}= Read Turbo Setting Via REST |
| 122 | Should Be Equal ${setting} True |
| 123 | |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 124 | io_board Present |
Rahul Maheshwari | f811910 | 2016-10-05 01:15:56 -0500 | [diff] [blame] | 125 | [Tags] io_board_Present |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 126 | ${uri}= Get System component io_board |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 127 | Read The Attribute ${uri} present |
| 128 | Response Should Be Equal True |
| 129 | |
| 130 | io_board Fault |
Rahul Maheshwari | f811910 | 2016-10-05 01:15:56 -0500 | [diff] [blame] | 131 | [Tags] io_board_Fault |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 132 | ${uri}= Get System component io_board |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 133 | Read The Attribute ${uri} fault |
| 134 | Response Should Be Equal False |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 135 | |
| 136 | *** Keywords *** |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 137 | |
| 138 | Setup The Suite |
Steven Sombar | aaf72c4 | 2017-09-05 12:02:00 -0500 | [diff] [blame] | 139 | [Documentation] Initial suite setup. |
George Keishing | f142668 | 2017-07-12 23:17:17 -0500 | [diff] [blame] | 140 | |
Sweta Potthuri | af741cb | 2017-07-04 09:41:17 -0500 | [diff] [blame] | 141 | # Boot Host. |
| 142 | REST Power On |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 143 | |
| 144 | Open Connection And Log In |
George Keishing | ab1bd92 | 2016-12-05 05:29:59 -0600 | [diff] [blame] | 145 | ${resp}= Read Properties ${OPENBMC_BASE_URI}enumerate timeout=30 |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 146 | Set Suite Variable ${SYSTEM_INFO} ${resp} |
| 147 | log Dictionary ${resp} |
| 148 | |
Sweta Potthuri | 7e5dc59 | 2017-07-03 06:10:02 -0500 | [diff] [blame] | 149 | Turbo Setting Test Case Setup |
| 150 | [Documentation] Open Connection and turbo settings |
| 151 | |
| 152 | Open Connection And Log In |
Rahul Maheshwari | ca368e5 | 2017-05-04 05:01:49 -0500 | [diff] [blame] | 153 | ${setting}= Read Turbo Setting Via REST |
| 154 | Set Global Variable ${TURBO_SETTING} ${setting} |
| 155 | |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 156 | Get System component |
| 157 | [Arguments] ${type} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 158 | ${list}= Get Dictionary Keys ${SYSTEM_INFO} |
| 159 | ${resp}= Get Matches ${list} regexp=^.*[0-9a-z_].${type}[0-9]*$ |
| 160 | ${url}= Get From List ${resp} 0 |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 161 | [Return] ${url} |
Rahul Maheshwari | 4a4eb6e | 2016-09-24 01:06:36 -0500 | [diff] [blame] | 162 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 163 | Execute new Command |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 164 | [Arguments] ${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 165 | ${output}= Execute Command ${args} |
| 166 | set test variable ${OUTPUT} "${output}" |
| 167 | |
| 168 | response Should Be Equal |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 169 | [Arguments] ${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 170 | Should Be Equal ${OUTPUT} ${args} |
| 171 | |
| 172 | Response Should Be Empty |
| 173 | Should Be Empty ${OUTPUT} |
| 174 | |
Gunnar Mills | 56b3289 | 2016-11-14 13:56:17 -0600 | [diff] [blame] | 175 | Read the Attribute |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 176 | [Arguments] ${uri} ${parm} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 177 | ${output}= Read Attribute ${uri} ${parm} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 178 | set test variable ${OUTPUT} ${output} |
| 179 | |
| 180 | Get Sensor Number |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 181 | [Arguments] ${name} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 182 | ${x}= get sensor ${OPENBMC_MODEL} ${name} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 183 | [Return] ${x} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 184 | |
| 185 | Get Inventory Sensor Number |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 186 | [Arguments] ${name} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 187 | ${x}= get inventory sensor ${OPENBMC_MODEL} ${name} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 188 | [Return] ${x} |
Rahul Maheshwari | 06174f2 | 2017-03-06 03:17:09 -0600 | [diff] [blame] | 189 | |
| 190 | Post Test Case Execution |
| 191 | [Documentation] Do the post test teardown. |
| 192 | ... 1. Capture FFDC on test failure. |
| 193 | ... 2. Close all open SSH connections. |
| 194 | |
| 195 | FFDC On Test Case Fail |
| 196 | Close All Connections |
Rahul Maheshwari | ca368e5 | 2017-05-04 05:01:49 -0500 | [diff] [blame] | 197 | |
| 198 | Restore System Configuration |
| 199 | [Documentation] Restore System Configuration. |
| 200 | |
| 201 | Open Connection And Log In |
| 202 | Set Turbo Setting Via REST ${TURBO_SETTING} |
| 203 | Close All Connections |