| 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 | 
| Rahul Maheshwari | 982fee4 | 2017-05-03 00:33:15 -0500 | [diff] [blame] | 9 | Test Teardown       Post Test Case Execution | 
 | 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 | 
 | 144 |     # Description of template fields: | 
 | 145 |     # Setting name    Min valid value    Max valid value | 
 | 146 |     retry-count       0                  7 | 
 | 147 |     [Documentation]  Verify valid SOL's retry count via IPMI. | 
 | 148 |     [Tags]  Set_Valid_SOL_Retry_Count | 
 | 149 |  | 
 | 150 |     [Template]  Verify SOL Setting | 
 | 151 |  | 
 | 152 |  | 
 | 153 | Set Valid SOL Retry Interval | 
 | 154 |     # Description of template fields: | 
 | 155 |     # Setting name    Min valid value    Max valid value | 
 | 156 |     retry-interval    0                  255 | 
 | 157 |     [Documentation]  Verify valid SOL's retry interval via IPMI. | 
 | 158 |     [Tags]  Set_Valid_SOL_Retry_Interval | 
 | 159 |  | 
 | 160 |     [Template]  Verify SOL Setting | 
 | 161 |  | 
 | 162 |  | 
 | 163 | Set Valid SOL Character Accumulate Level | 
 | 164 |     # Description of template fields: | 
 | 165 |     # Setting name              Min valid value    Max valid value | 
 | 166 |     character-accumulate-level  1                  255 | 
 | 167 |     [Documentation]  Verify valid SOL's character accumulate level via IPMI. | 
 | 168 |     [Tags]  Set_Valid_SOL_Character_Accumulate_Level | 
 | 169 |  | 
 | 170 |     [Template]  Verify SOL Setting | 
 | 171 |  | 
 | 172 |  | 
 | 173 | Set Valid SOL Character Send Threshold | 
 | 174 |     # Description of template fields: | 
 | 175 |     # Setting name              Min valid value    Max valid value | 
 | 176 |     character-send-threshold    0                  255 | 
 | 177 |     [Documentation]  Verify valid SOL's character send threshold via IPMI. | 
 | 178 |     [Tags]  Set_Valid_SOL_Character_Send_Threshold | 
 | 179 |  | 
 | 180 |     [Template]  Verify SOL Setting | 
 | 181 |  | 
| Rahul Maheshwari | 982fee4 | 2017-05-03 00:33:15 -0500 | [diff] [blame] | 182 | *** Keywords *** | 
 | 183 |  | 
| Rahul Maheshwari | 982fee4 | 2017-05-03 00:33:15 -0500 | [diff] [blame] | 184 | Check IPMI SOL Output Content | 
 | 185 |     [Documentation]  Check if SOL has given content. | 
 | 186 |     [Arguments]  ${data}  ${file_path}=/tmp/sol_${OPENBMC_HOST} | 
 | 187 |     # Description of argument(s): | 
 | 188 |     # data       Content which need to be checked(e.g. Petitboot, ISTEP). | 
 | 189 |     # file_path  The file path on the local machine to check SOL content. | 
 | 190 |     #            By default it check SOL content from /tmp/sol_<BMC_IP>. | 
 | 191 |  | 
 | 192 |     ${rc}  ${output}=  Run and Return RC and Output  cat ${file_path} | 
 | 193 |     Should Be Equal  ${rc}  ${0}  msg=${output} | 
 | 194 |  | 
 | 195 |     Should Contain  ${output}  ${data}  case_insensitive=True | 
| Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 196 |  | 
 | 197 |  | 
 | 198 | Verify SOL Setting | 
 | 199 |     [Documentation]  Verify SOL Setting via IPMI. | 
 | 200 |     [Arguments]  ${setting_name}  ${min_value}  ${max_value} | 
 | 201 |     # Description of Arguments: | 
 | 202 |     # setting_name    Setting to verify (e.g. "retry-count"). | 
 | 203 |     # min_value       min valid value for given setting. | 
 | 204 |     # max_value       max valid value for given setting. | 
 | 205 |  | 
 | 206 |     ${value}= | 
 | 207 |     ...  Evaluate  random.randint(${min_value}, ${max_value})  modules=random | 
 | 208 |  | 
 | 209 |     # Character accumulate level setting is set in multiples of 5. | 
 | 210 |     # Retry interval setting is set in multiples of 10. | 
 | 211 |     # Reference IPMI specification v2.0 | 
 | 212 |  | 
 | 213 |     ${expected_value}=  Run Keyword If | 
 | 214 |     ...  '${setting_name}' == 'character-accumulate-level'  Evaluate  ${value}*5 | 
 | 215 |     ...  ELSE IF  '${setting_name}' == 'retry-interval'  Evaluate  ${value}*10 | 
 | 216 |     ...  ELSE  Set Variable  ${value} | 
 | 217 |  | 
 | 218 |     Set SOL Setting  ${setting_name}  '${value}' | 
 | 219 |  | 
 | 220 |     # Replace "-" with space " " in setting name. | 
 | 221 |     # E.g. "retry-count" to "retry count" | 
 | 222 |     ${setting_name}=  Evaluate  $setting_name.replace('-',' ') | 
 | 223 |  | 
 | 224 |     ${sol_info_dict}=  Get SOL Info | 
 | 225 |  | 
 | 226 |     # Get exact SOL setting name from sol info output. | 
 | 227 |     ${list}=  Get Matches  ${sol_info_dict}  ${setting_name}* | 
 | 228 |     ...  case_insensitive=${True} | 
 | 229 |     ${setting_name_from_dict}=  Get From List  ${list}  0 | 
 | 230 |  | 
 | 231 |     # Get SOL setting value from above setting name. | 
 | 232 |     ${setting_value}=  Get From Dictionary | 
 | 233 |     ...  ${sol_info_dict}  ${setting_name_from_dict} | 
 | 234 |  | 
 | 235 |     Should Be Equal  '${setting_value}'  '${expected_value}' | 
 | 236 |  | 
 | 237 |     # Power on host to check if SOL is working fine with new setting. | 
 | 238 |     ${current_state}=  Get Host State Via External IPMI | 
 | 239 |     Run Keyword If  '${current_state}' == 'on' | 
 | 240 |     ...  Initiate Host PowerOff Via External IPMI | 
 | 241 |     Initiate Host Boot Via External IPMI  wait=${0} | 
 | 242 |  | 
 | 243 |     Activate SOL Via IPMI | 
 | 244 |     Wait Until Keyword Succeeds  10 mins  30 secs | 
 | 245 |     ...  Check IPMI SOL Output Content  Petitboot | 
 | 246 |  | 
| Rahul Maheshwari | 9e0b4d6 | 2017-06-21 06:42:46 -0500 | [diff] [blame] | 247 | Get SOL Setting | 
 | 248 |     [Documentation]  Returns status for given SOL setting. | 
 | 249 |     [Arguments]  ${setting} | 
 | 250 |     # Description of argument(s): | 
 | 251 |     # setting  SOL setting which needs to be read(e.g. "Retry Count"). | 
 | 252 |  | 
 | 253 |     ${sol_info_dict}=  Get SOL Info | 
 | 254 |     ${setting_status}=  Get From Dictionary  ${sol_info_dict}  ${setting} | 
 | 255 |  | 
 | 256 |     [Return]  ${setting_status} | 
 | 257 |  | 
| Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 258 |  | 
 | 259 | Restore Default SOL Configuration | 
 | 260 |     [Documentation]  Restore default SOL configuration. | 
 | 261 |  | 
 | 262 |     Open Connection And Log In | 
 | 263 |  | 
| Rahul Maheshwari | d71cd95 | 2017-06-20 21:30:51 -0500 | [diff] [blame] | 264 |     Set SOL Setting  enabled  true | 
| Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 265 |     Set SOL Setting  retry-count  7 | 
 | 266 |     Set SOL Setting  retry-interval  10 | 
 | 267 |     Set SOL Setting  character-accumulate-level  20 | 
 | 268 |     Set SOL Setting  character-send-threshold  1 | 
| Rahul Maheshwari | 6fe52b9 | 2017-06-16 03:35:26 -0500 | [diff] [blame] | 269 |     Set SOL Setting  privilege-level  user | 
| Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 270 |  | 
 | 271 |     Close All Connections | 
 | 272 |  | 
 | 273 |  | 
 | 274 | Post Test Case Execution | 
 | 275 |     [Documentation]  Do the post test teardown. | 
 | 276 |  | 
 | 277 |     Deactivate SOL Via IPMI | 
| Rahul Maheshwari | 2a17511 | 2017-08-22 05:06:49 -0500 | [diff] [blame] | 278 |     ${sol_log}=  Stop SOL Console Logging | 
 | 279 |     Log   ${sol_log} | 
| Rahul Maheshwari | d629b5c | 2017-05-23 08:06:28 -0500 | [diff] [blame] | 280 |     FFDC On Test Case Fail | 
 | 281 |     Restore Default SOL Configuration |