Rahul Maheshwari | 982fee4 | 2017-05-03 00:33:15 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation This suite tests IPMI SOL in OpenBMC. |
| 3 | |
| 4 | Resource ../../lib/ipmi_client.robot |
| 5 | Resource ../../lib/openbmc_ffdc.robot |
Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 6 | Library ../../lib/ipmi_utils.py |
Rahul Maheshwari | 982fee4 | 2017-05-03 00:33:15 -0500 | [diff] [blame] | 7 | |
Rahul Maheshwari | 2a17511 | 2017-08-22 05:06:49 -0500 | [diff] [blame] | 8 | Test Setup Start SOL Console Logging |
George Keishing | 0ea976a | 2017-12-08 01:09:40 -0600 | [diff] [blame] | 9 | Test Teardown Test Teardown Execution |
Rahul Maheshwari | 982fee4 | 2017-05-03 00:33:15 -0500 | [diff] [blame] | 10 | |
| 11 | *** Variables *** |
| 12 | |
| 13 | *** Test Cases *** |
| 14 | |
Rahul Maheshwari | d71cd95 | 2017-06-20 21:30:51 -0500 | [diff] [blame] | 15 | Set SOL Enabled |
| 16 | [Documentation] Verify enabling SOL via IPMI. |
| 17 | [Tags] Set_SOL_Enabled |
| 18 | |
| 19 | ${msg}= Run Keyword Run IPMI Standard Command |
| 20 | ... sol set enabled true |
| 21 | |
| 22 | # Verify SOL status from ipmitool sol info command. |
| 23 | ${sol_info_dict}= Get SOL Info |
| 24 | ${sol_enable_status}= Get From Dictionary |
| 25 | ... ${sol_info_dict} Enabled |
| 26 | |
| 27 | Should Be Equal '${sol_enable_status}' 'true' |
| 28 | |
| 29 | |
| 30 | Set SOL Disabled |
| 31 | [Documentation] Verify disabling SOL via IPMI. |
| 32 | [Tags] Set_SOL_Disabled |
| 33 | |
| 34 | ${msg}= Run Keyword Run IPMI Standard Command |
| 35 | ... sol set enabled false |
| 36 | |
| 37 | # Verify SOL status from ipmitool sol info command. |
| 38 | ${sol_info_dict}= Get SOL Info |
| 39 | ${sol_enable_status}= Get From Dictionary |
| 40 | ... ${sol_info_dict} Enabled |
| 41 | Should Be Equal '${sol_enable_status}' 'false' |
| 42 | |
| 43 | # Verify error while activating SOL with SOL disabled. |
| 44 | ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command |
| 45 | ... sol activate |
| 46 | Should Contain ${msg} SOL payload disabled ignore_case=True |
| 47 | |
| 48 | |
Rahul Maheshwari | 6fe52b9 | 2017-06-16 03:35:26 -0500 | [diff] [blame] | 49 | Set Valid SOL Privilege Level |
| 50 | [Documentation] Verify valid SOL's privilege level via IPMI. |
| 51 | [Tags] Set_Valid_SOL_Privilege_Level |
| 52 | |
| 53 | ${privilege_level_list}= Create List user operator admin oem |
| 54 | : FOR ${item} IN @{privilege_level_list} |
Rahul Maheshwari | 9e0b4d6 | 2017-06-21 06:42:46 -0500 | [diff] [blame] | 55 | \ Set SOL Setting privilege-level ${item} |
| 56 | \ ${output}= Get SOL Setting Privilege Level |
Rahul Maheshwari | 6fe52b9 | 2017-06-16 03:35:26 -0500 | [diff] [blame] | 57 | \ Should Contain ${output} ${item} ignore_case=True |
| 58 | |
| 59 | |
| 60 | Set Invalid SOL Privilege Level |
| 61 | [Documentation] Verify invalid SOL's retry count via IPMI. |
| 62 | [Tags] Set_Invalid_SOL_Privilege_Level |
| 63 | |
| 64 | ${value}= Generate Random String ${8} |
| 65 | ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command |
| 66 | ... sol set privilege-level ${value} |
| 67 | Should Contain ${msg} Invalid value ignore_case=True |
| 68 | |
| 69 | |
Rahul Maheshwari | a88de44 | 2017-06-16 01:05:16 -0500 | [diff] [blame] | 70 | Set Invalid SOL Retry Count |
| 71 | [Documentation] Verify invalid SOL's retry count via IPMI. |
| 72 | [Tags] Set_Invalid_SOL_Retry_Count |
| 73 | |
Gunnar Mills | 28e403b | 2017-10-25 16:16:38 -0500 | [diff] [blame] | 74 | # Any integer above 7 is invalid for SOL retry count. |
Rahul Maheshwari | a88de44 | 2017-06-16 01:05:16 -0500 | [diff] [blame] | 75 | ${value}= Evaluate random.randint(8, 10000) modules=random |
| 76 | |
| 77 | ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command |
| 78 | ... sol set retry-count ${value} |
| 79 | Should Contain ${msg} Invalid value ignore_case=True |
| 80 | |
| 81 | |
| 82 | Set Invalid SOL Retry Interval |
| 83 | [Documentation] Verify invalid SOL's retry interval via IPMI. |
| 84 | [Tags] Set_Invalid_SOL_Retry_Interval |
| 85 | |
Gunnar Mills | 28e403b | 2017-10-25 16:16:38 -0500 | [diff] [blame] | 86 | # Any integer above 255 is invalid for SOL retry interval. |
Rahul Maheshwari | a88de44 | 2017-06-16 01:05:16 -0500 | [diff] [blame] | 87 | ${value}= Evaluate random.randint(256, 10000) modules=random |
| 88 | |
| 89 | ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command |
| 90 | ... sol set retry-interval ${value} |
| 91 | Should Contain ${msg} Invalid value ignore_case=True |
| 92 | |
| 93 | |
| 94 | Set Invalid SOL Character Accumulate Level |
| 95 | [Documentation] Verify invalid SOL's character accumulate level via IPMI. |
| 96 | [Tags] Set_Invalid_SOL_Character_Accumulate_Level |
| 97 | |
| 98 | # Any integer above 255 is invalid for SOL character accumulate level. |
| 99 | ${value}= Evaluate random.randint(256, 10000) modules=random |
| 100 | |
| 101 | ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command |
| 102 | ... sol set character-accumulate-level ${value} |
| 103 | Should Contain ${msg} Invalid value ignore_case=True |
| 104 | |
| 105 | |
| 106 | Set Invalid SOL Character Send Threshold |
| 107 | [Documentation] Verify invalid SOL's character send threshold via IPMI. |
| 108 | [Tags] Set_Invalid_SOL_Character_Send_Threshold |
| 109 | |
Gunnar Mills | 28e403b | 2017-10-25 16:16:38 -0500 | [diff] [blame] | 110 | # Any integer above 255 is invalid for SOL character send threshold. |
Rahul Maheshwari | a88de44 | 2017-06-16 01:05:16 -0500 | [diff] [blame] | 111 | ${value}= Evaluate random.randint(256, 10000) modules=random |
| 112 | |
| 113 | ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command |
| 114 | ... sol set character-send-threshold ${value} |
| 115 | Should Contain ${msg} Invalid value ignore_case=True |
| 116 | |
| 117 | |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 118 | Verify SOL During Boot |
| 119 | [Documentation] Verify SOL during boot. |
| 120 | [Tags] Verify_SOL_During_Boot |
| 121 | |
| 122 | ${current_state}= Get Host State Via External IPMI |
| 123 | Run Keyword If '${current_state}' == 'on' |
| 124 | ... Initiate Host PowerOff Via External IPMI |
| 125 | Initiate Host Boot Via External IPMI wait=${0} |
| 126 | |
| 127 | Activate SOL Via IPMI |
George Keishing | de9804a | 2017-09-28 04:03:11 -0500 | [diff] [blame] | 128 | Wait Until Keyword Succeeds 3 mins 30 secs |
| 129 | ... Check IPMI SOL Output Content Welcome to Hostboot hostboot |
| 130 | |
| 131 | Wait Until Keyword Succeeds 3 mins 30 secs |
| 132 | ... Check IPMI SOL Output Content ISTEP |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 133 | |
| 134 | Verify Deactivate Non Existing SOL |
| 135 | [Documentation] Verify deactivate non existing SOL session. |
| 136 | [Tags] Verify_Deactivate_Non_Existing_SOL |
| 137 | |
| 138 | ${resp}= Deactivate SOL Via IPMI |
| 139 | Should Contain ${resp} SOL payload already de-activated |
| 140 | ... case_insensitive=True |
| 141 | |
| 142 | |
| 143 | Set Valid SOL Retry Count |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 144 | [Documentation] Verify valid SOL's retry count via IPMI. |
| 145 | [Tags] Set_Valid_SOL_Retry_Count |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 146 | [Template] Verify SOL Setting |
| 147 | |
George Keishing | 5abfe60 | 2018-07-05 11:54:37 -0500 | [diff] [blame] | 148 | # Setting name Min valid value Max valid value |
| 149 | retry-count 0 7 |
| 150 | |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 151 | |
| 152 | Set Valid SOL Retry Interval |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 153 | [Documentation] Verify valid SOL's retry interval via IPMI. |
| 154 | [Tags] Set_Valid_SOL_Retry_Interval |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 155 | [Template] Verify SOL Setting |
| 156 | |
George Keishing | 5abfe60 | 2018-07-05 11:54:37 -0500 | [diff] [blame] | 157 | # Setting name Min valid value Max valid value |
| 158 | retry-interval 0 255 |
| 159 | |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 160 | |
| 161 | Set Valid SOL Character Accumulate Level |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 162 | [Documentation] Verify valid SOL's character accumulate level via IPMI. |
| 163 | [Tags] Set_Valid_SOL_Character_Accumulate_Level |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 164 | [Template] Verify SOL Setting |
| 165 | |
George Keishing | 5abfe60 | 2018-07-05 11:54:37 -0500 | [diff] [blame] | 166 | # Setting name Min valid value Max valid value |
| 167 | character-accumulate-level 1 255 |
| 168 | |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 169 | |
| 170 | Set Valid SOL Character Send Threshold |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 171 | [Documentation] Verify valid SOL's character send threshold via IPMI. |
| 172 | [Tags] Set_Valid_SOL_Character_Send_Threshold |
George Keishing | 1ca77aa | 2017-08-21 23:55:51 -0500 | [diff] [blame] | 173 | [Template] Verify SOL Setting |
| 174 | |
George Keishing | 5abfe60 | 2018-07-05 11:54:37 -0500 | [diff] [blame] | 175 | # Setting name Min valid value Max valid value |
| 176 | character-send-threshold 0 255 |
| 177 | |
Rahul Maheshwari | 982fee4 | 2017-05-03 00:33:15 -0500 | [diff] [blame] | 178 | *** Keywords *** |
| 179 | |
Rahul Maheshwari | 982fee4 | 2017-05-03 00:33:15 -0500 | [diff] [blame] | 180 | Check IPMI SOL Output Content |
| 181 | [Documentation] Check if SOL has given content. |
| 182 | [Arguments] ${data} ${file_path}=/tmp/sol_${OPENBMC_HOST} |
| 183 | # Description of argument(s): |
| 184 | # data Content which need to be checked(e.g. Petitboot, ISTEP). |
| 185 | # file_path The file path on the local machine to check SOL content. |
| 186 | # By default it check SOL content from /tmp/sol_<BMC_IP>. |
| 187 | |
| 188 | ${rc} ${output}= Run and Return RC and Output cat ${file_path} |
| 189 | Should Be Equal ${rc} ${0} msg=${output} |
| 190 | |
| 191 | Should Contain ${output} ${data} case_insensitive=True |
Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 192 | |
| 193 | |
| 194 | Verify SOL Setting |
| 195 | [Documentation] Verify SOL Setting via IPMI. |
| 196 | [Arguments] ${setting_name} ${min_value} ${max_value} |
| 197 | # Description of Arguments: |
| 198 | # setting_name Setting to verify (e.g. "retry-count"). |
| 199 | # min_value min valid value for given setting. |
| 200 | # max_value max valid value for given setting. |
| 201 | |
| 202 | ${value}= |
| 203 | ... Evaluate random.randint(${min_value}, ${max_value}) modules=random |
| 204 | |
| 205 | # Character accumulate level setting is set in multiples of 5. |
| 206 | # Retry interval setting is set in multiples of 10. |
| 207 | # Reference IPMI specification v2.0 |
| 208 | |
| 209 | ${expected_value}= Run Keyword If |
| 210 | ... '${setting_name}' == 'character-accumulate-level' Evaluate ${value}*5 |
| 211 | ... ELSE IF '${setting_name}' == 'retry-interval' Evaluate ${value}*10 |
| 212 | ... ELSE Set Variable ${value} |
| 213 | |
| 214 | Set SOL Setting ${setting_name} '${value}' |
| 215 | |
| 216 | # Replace "-" with space " " in setting name. |
| 217 | # E.g. "retry-count" to "retry count" |
| 218 | ${setting_name}= Evaluate $setting_name.replace('-',' ') |
| 219 | |
| 220 | ${sol_info_dict}= Get SOL Info |
| 221 | |
| 222 | # Get exact SOL setting name from sol info output. |
| 223 | ${list}= Get Matches ${sol_info_dict} ${setting_name}* |
| 224 | ... case_insensitive=${True} |
| 225 | ${setting_name_from_dict}= Get From List ${list} 0 |
| 226 | |
| 227 | # Get SOL setting value from above setting name. |
| 228 | ${setting_value}= Get From Dictionary |
| 229 | ... ${sol_info_dict} ${setting_name_from_dict} |
| 230 | |
| 231 | Should Be Equal '${setting_value}' '${expected_value}' |
| 232 | |
| 233 | # Power on host to check if SOL is working fine with new setting. |
| 234 | ${current_state}= Get Host State Via External IPMI |
| 235 | Run Keyword If '${current_state}' == 'on' |
| 236 | ... Initiate Host PowerOff Via External IPMI |
| 237 | Initiate Host Boot Via External IPMI wait=${0} |
| 238 | |
| 239 | Activate SOL Via IPMI |
| 240 | Wait Until Keyword Succeeds 10 mins 30 secs |
George Keishing | 0ea976a | 2017-12-08 01:09:40 -0600 | [diff] [blame] | 241 | ... Check IPMI SOL Output Content Welcome to Hostboot hostboot |
| 242 | |
| 243 | Wait Until Keyword Succeeds 3 mins 30 secs |
| 244 | ... Check IPMI SOL Output Content ISTEP |
Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 245 | |
Rahul Maheshwari | 9e0b4d6 | 2017-06-21 06:42:46 -0500 | [diff] [blame] | 246 | Get SOL Setting |
| 247 | [Documentation] Returns status for given SOL setting. |
| 248 | [Arguments] ${setting} |
| 249 | # Description of argument(s): |
| 250 | # setting SOL setting which needs to be read(e.g. "Retry Count"). |
| 251 | |
| 252 | ${sol_info_dict}= Get SOL Info |
| 253 | ${setting_status}= Get From Dictionary ${sol_info_dict} ${setting} |
| 254 | |
| 255 | [Return] ${setting_status} |
| 256 | |
Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 257 | |
| 258 | Restore Default SOL Configuration |
| 259 | [Documentation] Restore default SOL configuration. |
| 260 | |
Rahul Maheshwari | d71cd95 | 2017-06-20 21:30:51 -0500 | [diff] [blame] | 261 | Set SOL Setting enabled true |
Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 262 | Set SOL Setting retry-count 7 |
| 263 | Set SOL Setting retry-interval 10 |
| 264 | Set SOL Setting character-accumulate-level 20 |
| 265 | Set SOL Setting character-send-threshold 1 |
Rahul Maheshwari | 6fe52b9 | 2017-06-16 03:35:26 -0500 | [diff] [blame] | 266 | Set SOL Setting privilege-level user |
Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 267 | |
Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 268 | |
George Keishing | 0ea976a | 2017-12-08 01:09:40 -0600 | [diff] [blame] | 269 | Test Teardown Execution |
Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 270 | [Documentation] Do the post test teardown. |
| 271 | |
| 272 | Deactivate SOL Via IPMI |
Rahul Maheshwari | 2a17511 | 2017-08-22 05:06:49 -0500 | [diff] [blame] | 273 | ${sol_log}= Stop SOL Console Logging |
| 274 | Log ${sol_log} |
Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 275 | FFDC On Test Case Fail |
| 276 | Restore Default SOL Configuration |