Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Resource ../lib/resource.txt |
| 3 | Resource ../lib/rest_client.robot |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 4 | Resource ../lib/connection_client.robot |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 5 | Library DateTime |
| 6 | Library Process |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 7 | Library OperatingSystem |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 8 | Library gen_print.py |
| 9 | Library gen_robot_print.py |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 10 | |
| 11 | *** Variables *** |
| 12 | ${SYSTEM_SHUTDOWN_TIME} ${5} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 13 | ${dbuscmdBase} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 14 | ... dbus-send --system --print-reply --dest=${OPENBMC_BASE_DBUS}.settings.Host |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 15 | ${dbuscmdGet} |
George Keishing | 9485af9 | 2017-01-04 10:21:43 -0600 | [diff] [blame] | 16 | ... ${SETTINGS_URI}host0 org.freedesktop.DBus.Properties.Get |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 17 | # Enable when ready with openbmc/openbmc-test-automation#203 |
| 18 | #${dbuscmdString}= string:"xyz.openbmc_project.settings.Host" string: |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 19 | ${dbuscmdString}= string:"org.openbmc.settings.Host" string: |
| 20 | |
| 21 | # Assign default value to QUIET for programs which may not define it. |
| 22 | ${QUIET} ${0} |
Sivas SRR | ea85d1f | 2016-11-13 22:44:28 -0600 | [diff] [blame] | 23 | ${bmc_mem_free_cmd}= free | tr -s ' ' | sed '/^Mem/!d' | cut -d" " -f4 |
| 24 | ${bmc_mem_total_cmd}= free | tr -s ' ' | sed '/^Mem/!d' | cut -d" " -f2 |
| 25 | ${bmc_cpu_usage_cmd}= top -n 1 | grep CPU: | cut -c 7-9 |
Sridevi Ramesh | 1699d37 | 2016-12-06 00:20:22 -0600 | [diff] [blame] | 26 | ${HOST_SETTING} ${SETTINGS_URI}host0 |
Sivas SRR | 352bc16 | 2017-02-13 22:12:29 -0600 | [diff] [blame] | 27 | # /run/initramfs/ro associate filesystem should be 100% full always |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 28 | ${bmc_file_system_usage_cmd}= |
Sivas SRR | 352bc16 | 2017-02-13 22:12:29 -0600 | [diff] [blame] | 29 | ... df -h | grep -v /run/initramfs/ro | cut -c 52-54 | grep 100 | wc -l |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 30 | |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 31 | ${BOOT_TIME} ${0} |
| 32 | ${BOOT_COUNT} ${0} |
Sivas SRR | 8254db6 | 2017-02-07 09:39:46 -0600 | [diff] [blame] | 33 | ${devicetree_base} /sys/firmware/devicetree/base/model |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 34 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 35 | *** Keywords *** |
Sridevi Ramesh | 1699d37 | 2016-12-06 00:20:22 -0600 | [diff] [blame] | 36 | |
Sivas SRR | 8254db6 | 2017-02-07 09:39:46 -0600 | [diff] [blame] | 37 | Get BMC System Model |
| 38 | [Documentation] Get the BMC model from the device tree. |
| 39 | |
George Keishing | 90ab177 | 2017-02-24 05:40:55 -0600 | [diff] [blame] | 40 | ${bmc_model} ${stderr}= Execute Command |
| 41 | ... cat ${devicetree_base} | cut -d " " -f 1 return_stderr=True |
Sivas SRR | 8254db6 | 2017-02-07 09:39:46 -0600 | [diff] [blame] | 42 | Should Be Empty ${stderr} |
| 43 | Should Not Be Empty ${bmc_model} |
| 44 | [Return] ${bmc_model} |
| 45 | |
| 46 | Verify BMC System Model |
| 47 | [Documentation] Verify the BMC model with ${OPENBMC_MODEL}. |
| 48 | [Arguments] ${bmc_model} |
| 49 | |
| 50 | ${tmp_bmc_model}= Fetch From Right ${OPENBMC_MODEL} / |
| 51 | ${tmp_bmc_model}= Fetch From Left ${tmp_bmc_model} . |
| 52 | ${ret}= Run Keyword And Return Status Should Contain ${bmc_model} |
| 53 | ... ${tmp_bmc_model} ignore_case=True |
| 54 | [Return] ${ret} |
| 55 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 56 | Wait For Host To Ping |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 57 | [Arguments] ${host} ${timeout}=${OPENBMC_REBOOT_TIMEOUT}min |
| 58 | ... ${interval}=5 sec |
| 59 | |
| 60 | # host The DNS name or IP of the host to ping. |
| 61 | # timeout The amount of time after which attempts to ping cease. |
| 62 | # interval The amount of time in between attempts to ping. |
| 63 | |
| 64 | Wait Until Keyword Succeeds ${timeout} ${interval} Ping Host ${host} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 65 | |
| 66 | Ping Host |
| 67 | [Arguments] ${host} |
George Keishing | 8a84f95 | 2016-08-25 04:54:53 -0500 | [diff] [blame] | 68 | Should Not Be Empty ${host} msg=No host provided |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 69 | ${RC} ${output}= Run and return RC and Output ping -c 4 ${host} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 70 | Log RC: ${RC}\nOutput:\n${output} |
| 71 | Should be equal ${RC} ${0} |
| 72 | |
| 73 | Get Boot Progress |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 74 | [Arguments] ${quiet}=${QUIET} |
| 75 | |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 76 | ${state}= Read Attribute ${OPENBMC_BASE_URI}sensors/host/BootProgress |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 77 | ... value quiet=${quiet} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 78 | [Return] ${state} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 79 | |
| 80 | Is Power On |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 81 | ${state}= Get Power State |
| 82 | Should be equal ${state} ${1} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 83 | |
| 84 | Is Power Off |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 85 | ${state}= Get Power State |
| 86 | Should be equal ${state} ${0} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 87 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 88 | Initiate Power On |
| 89 | [Documentation] Initiates the power on and waits until the Is Power On |
| 90 | ... keyword returns that the power state has switched to on. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 91 | [Arguments] ${wait}=${1} |
| 92 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 93 | @{arglist}= Create List |
| 94 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 95 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/chassis0/ powerOn |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 96 | ... data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 97 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 98 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 99 | # Does caller want to wait for power on status? |
| 100 | Run Keyword If '${wait}' == '${0}' Return From Keyword |
| 101 | Wait Until Keyword Succeeds 3 min 10 sec Is Power On |
Rahul Maheshwari | f684ba7 | 2016-10-25 07:24:41 -0500 | [diff] [blame] | 102 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 103 | Initiate Power Off |
| 104 | [Documentation] Initiates the power off and waits until the Is Power Off |
| 105 | ... keyword returns that the power state has switched to off. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 106 | @{arglist}= Create List |
| 107 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 108 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/chassis0/ powerOff |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 109 | ... data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 110 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 111 | Wait Until Keyword Succeeds 1 min 10 sec Is Power Off |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 112 | |
Michael Walsh | 8184377 | 2017-03-02 14:44:44 -0600 | [diff] [blame] | 113 | Initiate OS Host Power Off |
| 114 | [Documentation] Initiate an OS reboot. |
| 115 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
| 116 | ... ${os_password}=${OS_PASSWORD} |
| 117 | |
| 118 | # Description of arguments: |
| 119 | # os_host The DNS name or IP of the OS. |
| 120 | # os_username The username to be used to sign in to the OS. |
| 121 | # os_password The password to be used to sign in to the OS. |
| 122 | |
| 123 | Open connection ${os_host} |
| 124 | Login ${os_username} ${os_password} |
| 125 | ${cmd_buf} Catenate shutdown |
| 126 | Start Command ${cmd_buf} |
| 127 | Close Connection |
| 128 | |
| 129 | Initiate OS Host Reboot |
| 130 | [Documentation] Initiate an OS reboot. |
| 131 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
| 132 | ... ${os_password}=${OS_PASSWORD} |
| 133 | |
| 134 | # Description of arguments: |
| 135 | # os_host The DNS name or IP of the OS. |
| 136 | # os_username The username to be used to sign in to the OS. |
| 137 | # os_password The password to be used to sign in to the OS. |
| 138 | |
| 139 | Open connection ${os_host} |
| 140 | Login ${os_username} ${os_password} |
| 141 | ${cmd_buf} Catenate reboot |
| 142 | Start Command ${cmd_buf} |
| 143 | Close Connection |
| 144 | |
| 145 | Initiate Auto Reboot |
| 146 | [Documentation] Initiate an auto reboot. |
| 147 | |
| 148 | # Set the auto reboot policy. |
| 149 | Set Auto Reboot yes |
| 150 | |
| 151 | Open connection ${openbmc_host} |
| 152 | Login ${openbmc_username} ${openbmc_password} |
| 153 | |
| 154 | # Set the watchdog timer. Note: 5000 = milliseconds which is 5 seconds. |
| 155 | ${cmd_buf}= Catenate /usr/sbin/mapper call /org/openbmc/watchdog/host0 |
| 156 | ... org.openbmc.Watchdog set i 5000 |
| 157 | ${output} ${stderr} ${rc}= Execute Command ${cmd_buf} |
| 158 | ... return_stderr=True return_rc=True |
| 159 | Should Be Empty ${stderr} |
| 160 | Should be equal ${rc} ${0} |
| 161 | |
| 162 | # Start the watchdog. |
| 163 | ${cmd_buf}= Catenate /usr/sbin/mapper call /org/openbmc/watchdog/host0 |
| 164 | ... org.openbmc.Watchdog start |
| 165 | ${output} ${stderr} ${rc}= Execute Command ${cmd_buf} |
| 166 | ... return_stderr=True return_rc=True |
| 167 | Should Be Empty ${stderr} |
| 168 | Should be equal ${rc} ${0} |
| 169 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 170 | Trigger Warm Reset |
| 171 | log to console "Triggering warm reset" |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 172 | ${data}= create dictionary data=@{EMPTY} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 173 | ${resp}= openbmc post request |
| 174 | ... ${OPENBMC_BASE_URI}control/bmc0/action/warmReset data=${data} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 175 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 176 | ${session_active}= Check If warmReset is Initiated |
| 177 | Run Keyword If '${session_active}' == '${True}' |
| 178 | ... Fail msg=warm reset didn't occur |
| 179 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 180 | Sleep ${SYSTEM_SHUTDOWN_TIME}min |
Rahul Maheshwari | 5f253c4 | 2017-01-30 05:19:51 -0600 | [diff] [blame] | 181 | Check If BMC Is Up |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 182 | |
| 183 | Check OS |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 184 | [Documentation] Attempts to ping the host OS and then checks that the host |
| 185 | ... OS is up by running an SSH command. |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 186 | |
| 187 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 188 | ... ${os_password}=${OS_PASSWORD} ${quiet}=${QUIET} |
| 189 | ... ${print_string}=${EMPTY} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 190 | [Teardown] Close Connection |
| 191 | |
| 192 | # os_host The DNS name/IP of the OS host associated with our BMC. |
| 193 | # os_username The username to be used to sign on to the OS host. |
| 194 | # os_password The password to be used to sign on to the OS host. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 195 | # quiet Indicates whether this keyword should write to console. |
| 196 | # print_string A string to be printed before checking the OS. |
| 197 | |
| 198 | rprint ${print_string} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 199 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 200 | # Attempt to ping the OS. Store the return code to check later. |
| 201 | ${ping_rc}= Run Keyword and Return Status Ping Host ${os_host} |
| 202 | |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 203 | Open connection ${os_host} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 204 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 205 | ${status} ${msg}= Run Keyword And Ignore Error Login ${os_username} |
| 206 | ... ${os_password} |
| 207 | ${err_msg1}= Sprint Error ${msg} |
| 208 | ${err_msg}= Catenate SEPARATOR= \n ${err_msg1} |
| 209 | Run Keyword If '${status}' == 'FAIL' Fail msg=${err_msg} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 210 | ${output} ${stderr} ${rc}= Execute Command uptime return_stderr=True |
| 211 | ... return_rc=True |
| 212 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 213 | ${temp_msg}= Catenate Could not execute a command on the operating |
| 214 | ... system.\n |
| 215 | ${err_msg1}= Sprint Error ${temp_msg} |
| 216 | ${err_msg}= Catenate SEPARATOR= \n ${err_msg1} |
| 217 | |
| 218 | # If the return code returned by "Execute Command" is non-zero, this |
| 219 | # keyword will fail. |
| 220 | Should Be Equal ${rc} ${0} msg=${err_msg} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 221 | # We will likewise fail if there is any stderr data. |
| 222 | Should Be Empty ${stderr} |
| 223 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 224 | ${temp_msg}= Set Variable Could not ping the operating system.\n |
| 225 | ${err_msg1}= Sprint Error ${temp_msg} |
| 226 | ${err_msg}= Catenate SEPARATOR= \n ${err_msg1} |
| 227 | # We will likewise fail if the OS did not ping, as we could SSH but not |
| 228 | # ping |
| 229 | Should Be Equal As Strings ${ping_rc} ${TRUE} msg=${err_msg} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 230 | |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 231 | Wait for OS |
| 232 | [Documentation] Waits for the host OS to come up via calls to "Check OS". |
| 233 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
| 234 | ... ${os_password}=${OS_PASSWORD} ${timeout}=${OS_WAIT_TIMEOUT} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 235 | ... ${quiet}=${0} |
| 236 | [Teardown] rprintn |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 237 | |
| 238 | # os_host The DNS name or IP of the OS host associated with our |
| 239 | # BMC. |
| 240 | # os_username The username to be used to sign on to the OS host. |
| 241 | # os_password The password to be used to sign on to the OS host. |
| 242 | # timeout The timeout in seconds indicating how long you're |
| 243 | # willing to wait for the OS to respond. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 244 | # quiet Indicates whether this keyword should write to console. |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 245 | |
| 246 | # The interval to be used between calls to "Check OS". |
| 247 | ${interval}= Set Variable 5 |
| 248 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 249 | ${message}= Catenate Checking every ${interval} seconds for up to |
| 250 | ... ${timeout} seconds for the operating system to communicate. |
| 251 | rqprint_timen ${message} |
| 252 | |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 253 | Wait Until Keyword Succeeds ${timeout} sec ${interval} Check OS |
| 254 | ... ${os_host} ${os_username} ${os_password} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 255 | ... print_string=\# |
| 256 | |
| 257 | rqprintn |
| 258 | |
| 259 | rqprint_timen The operating system is now communicating. |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 260 | |
Rahul Maheshwari | 2c72504 | 2017-01-29 22:55:28 -0600 | [diff] [blame] | 261 | Get BMC State Deprecated |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 262 | [Documentation] Returns the state of the BMC as a string. (i.e: BMC_READY) |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 263 | [Arguments] ${quiet}=${QUIET} |
| 264 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 265 | @{arglist}= Create List |
| 266 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 267 | ${resp}= Call Method ${OPENBMC_BASE_URI}managers/System/ getSystemState |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 268 | ... data=${args} quiet=${quiet} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 269 | Should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 270 | ${content}= to json ${resp.content} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 271 | [Return] ${content["data"]} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 272 | |
| 273 | Get Power State |
| 274 | [Documentation] Returns the power state as an integer. Either 0 or 1. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 275 | [Arguments] ${quiet}=${QUIET} |
| 276 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 277 | @{arglist}= Create List |
| 278 | ${args}= Create Dictionary data=@{arglist} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 279 | |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 280 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/chassis0/ getPowerState |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 281 | ... data=${args} quiet=${quiet} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 282 | Should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 283 | ${content}= to json ${resp.content} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 284 | [Return] ${content["data"]} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 285 | |
| 286 | Clear BMC Record Log |
| 287 | [Documentation] Clears all the event logs on the BMC. This would be |
| 288 | ... equivalent to ipmitool sel clear. |
| 289 | @{arglist}= Create List |
| 290 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 291 | ${resp}= Call Method |
| 292 | ... ${OPENBMC_BASE_URI}records/events/ clear data=${args} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 293 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 294 | |
| 295 | Copy PNOR to BMC |
| 296 | Import Library SCPLibrary WITH NAME scp |
| 297 | Open Connection for SCP |
| 298 | Log Copying ${PNOR_IMAGE_PATH} to /tmp |
| 299 | scp.Put File ${PNOR_IMAGE_PATH} /tmp |
| 300 | |
| 301 | Flash PNOR |
| 302 | [Documentation] Calls flash bios update method to flash PNOR image |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 303 | [Arguments] ${pnor_image} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 304 | @{arglist}= Create List ${pnor_image} |
| 305 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 306 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/flash/bios/ update |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 307 | ... data=${args} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 308 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 309 | Wait Until Keyword Succeeds 2 min 10 sec Is PNOR Flashing |
| 310 | |
| 311 | Get Flash BIOS Status |
| 312 | [Documentation] Returns the status of the flash BIOS API as a string. For |
| 313 | ... example 'Flashing', 'Flash Done', etc |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 314 | ${data}= Read Properties ${OPENBMC_BASE_URI}control/flash/bios |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 315 | [Return] ${data['status']} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 316 | |
| 317 | Is PNOR Flashing |
| 318 | [Documentation] Get BIOS 'Flashing' status. This indicates that PNOR |
| 319 | ... flashing has started. |
| 320 | ${status}= Get Flash BIOS Status |
| 321 | should be equal as strings ${status} Flashing |
| 322 | |
| 323 | Is PNOR Flash Done |
| 324 | [Documentation] Get BIOS 'Flash Done' status. This indicates that the |
| 325 | ... PNOR flashing has completed. |
Leah McNutt | 9ba3227 | 2016-11-17 15:48:39 +0000 | [diff] [blame] | 326 | ${status}= Get Flash BIOS Status |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 327 | should be equal as strings ${status} Flash Done |
| 328 | |
| 329 | Is System State Host Booted |
| 330 | [Documentation] Checks whether system state is HOST_BOOTED. |
Rahul Maheshwari | 2c72504 | 2017-01-29 22:55:28 -0600 | [diff] [blame] | 331 | ${state}= Get BMC State Deprecated |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 332 | should be equal as strings ${state} HOST_BOOTED |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 333 | |
Rahul Maheshwari | 2c72504 | 2017-01-29 22:55:28 -0600 | [diff] [blame] | 334 | Is OS Starting |
| 335 | [Documentation] Check if boot progress is OS starting. |
| 336 | ${boot_progress}= Get Boot Progress |
| 337 | Should Be Equal ${boot_progress} FW Progress, Starting OS |
| 338 | |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 339 | Verify Ping and REST Authentication |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 340 | ${l_ping}= Run Keyword And Return Status |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 341 | ... Ping Host ${OPENBMC_HOST} |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 342 | Run Keyword If '${l_ping}' == '${False}' |
| 343 | ... Fail msg=Ping Failed |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 344 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 345 | ${l_rest}= Run Keyword And Return Status |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 346 | ... Initialize OpenBMC |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 347 | Run Keyword If '${l_rest}' == '${False}' |
| 348 | ... Fail msg=REST Authentication Failed |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 349 | |
| 350 | # Just to make sure the SSH is working for SCP |
| 351 | Open Connection And Log In |
| 352 | ${system} ${stderr}= Execute Command hostname return_stderr=True |
| 353 | Should Be Empty ${stderr} |
| 354 | |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 355 | Check If BMC is Up |
| 356 | [Documentation] Wait for Host to be online. Checks every X seconds |
| 357 | ... interval for Y minutes and fails if timed out. |
| 358 | ... Default MAX timedout is 10 min, interval 10 seconds. |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 359 | [Arguments] ${max_timeout}=${OPENBMC_REBOOT_TIMEOUT} min |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 360 | ... ${interval}=10 sec |
| 361 | |
| 362 | Wait Until Keyword Succeeds |
| 363 | ... ${max_timeout} ${interval} Verify Ping and REST Authentication |
| 364 | |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 365 | |
| 366 | Check If warmReset is Initiated |
| 367 | [Documentation] Ping would be still alive, so try SSH to connect |
| 368 | ... if fails the ports are down indicating reboot |
| 369 | ... is in progress |
George Keishing | 3c05d35 | 2016-12-13 06:54:50 -0600 | [diff] [blame] | 370 | |
| 371 | # Warm reset adds 3 seconds delay before forcing reboot |
| 372 | # To minimize race conditions, we wait for 7 seconds |
| 373 | Sleep 7s |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 374 | ${alive}= Run Keyword and Return Status |
| 375 | ... Open Connection And Log In |
| 376 | Return From Keyword If '${alive}' == '${False}' ${False} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 377 | [Return] ${True} |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 378 | |
George Keishing | 06ae4aa | 2016-08-30 01:41:28 -0500 | [diff] [blame] | 379 | Flush REST Sessions |
| 380 | [Documentation] Removes all the active session objects |
| 381 | Delete All Sessions |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 382 | |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 383 | Initialize DBUS cmd |
| 384 | [Documentation] Initialize dbus string with property string to extract |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 385 | [Arguments] ${boot_property} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 386 | ${cmd}= Catenate ${dbuscmdBase} ${dbuscmdGet} ${dbuscmdString} |
| 387 | ${cmd}= Catenate ${cmd}${boot_property} |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 388 | Set Global Variable ${dbuscmd} ${cmd} |
| 389 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 390 | Create OS Console File Path |
| 391 | [Documentation] Create OS console file path name and return it. |
| 392 | [Arguments] ${log_file_path}=${EMPTY} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 393 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 394 | # Description of arguements: |
| 395 | # file_path The caller's candidate value. If this value is ${EMPTY}, this |
| 396 | # keyword will compose a file path name. Otherwise, this |
| 397 | # keyword will use the caller's file_path value. In either |
| 398 | # case, the value will be returned. |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 399 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 400 | ${default_file_path}= Catenate /tmp/${OPENBMC_HOST}_os_console |
| 401 | ${log_file_path}= Set Variable If '${log_file_path}' == '${EMPTY}' |
| 402 | ... ${default_file_path} ${log_file_path} |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 403 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 404 | [Return] ${log_file_path} |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 405 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 406 | Create OS Console Command String |
| 407 | [Documentation] Return a command string to start OS console logging. |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 408 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 409 | # First make sure that the ssh_pw program is available. |
| 410 | ${cmd_buf}= Catenate which ssh_pw 2>&1 |
| 411 | Rdpissuing ${cmd_buf} |
| 412 | ${rc} ${output}= Run And Return Rc And Output ${cmd_buf} |
| 413 | Rdpvars rc output |
| 414 | Should Be Equal ${rc} ${0} msg=${output}\n |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 415 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 416 | ${cmd_buf}= Catenate ssh_pw ${OPENBMC_PASSWORD} -p 2200 |
| 417 | ... ${OPENBMC_USERNAME}@${OPENBMC_HOST} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 418 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 419 | [Return] ${cmd_buf} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 420 | |
| 421 | Stop SOL Console Logging |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 422 | [Documentation] Stop system console logging and return log output. |
| 423 | [Arguments] ${log_file_path}=${EMPTY} ${targ_file_path}=${EMPTY} |
| 424 | |
| 425 | # If there are muliple system console processes, they will all be stopped. |
| 426 | # If there is no existing log file this keyword will return an error |
| 427 | # message to that effect (and write that message to targ_file_path, if |
| 428 | # specified). |
| 429 | # NOTE: This keyword will not fail if there is no running system console |
| 430 | # process. |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 431 | |
| 432 | # Description of arguments: |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 433 | # log_file_path The file path that was used to call "Start SOL |
| 434 | # Console Logging". See that keyword (above) for details. |
| 435 | # targ_file_path If specified, the file path to which the source |
| 436 | # file path (i.e. "log_file_path") should be copied. |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 437 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 438 | ${log_file_path}= Create OS Console File Path ${log_file_path} |
| 439 | # Find the pid of the active system console logging session (if any). |
| 440 | ${search_string}= Create OS Console Command String |
| 441 | ${cmd_buf}= Catenate echo $(ps -ef | egrep '${search_string}' |
| 442 | ... | egrep -v grep | cut -c10-14) |
| 443 | Rdpissuing ${cmd_buf} |
| 444 | ${rc} ${os_con_pid}= Run And Return Rc And Output ${cmd_buf} |
| 445 | Rdpvars os_con_pid |
| 446 | # If rc is not zero it just means that there is no OS Console process |
| 447 | # running. |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 448 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 449 | ${cmd_buf}= Catenate kill -9 ${os_con_pid} |
| 450 | Run Keyword If '${os_con_pid}' != '${EMPTY}' Rdpissuing ${cmd_buf} |
| 451 | ${rc} ${output}= Run Keyword If '${os_con_pid}' != '${EMPTY}' |
| 452 | ... Run And Return Rc And Output ${cmd_buf} |
| 453 | Run Keyword If '${os_con_pid}' != '${EMPTY}' Rdpvars rc output |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 454 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 455 | ${cmd_buf}= Set Variable cat ${log_file_path} 2>&1 |
| 456 | Rdpissuing ${cmd_buf} |
| 457 | ${rc} ${output}= Run And Return Rc And Output ${cmd_buf} |
| 458 | Rdpvars rc |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 459 | |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 460 | Run Keyword If '${targ_file_path}' != '${EMPTY}' |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 461 | ... Run Keyword And Ignore Error |
| 462 | ... Copy File ${log_file_path} ${targ_file_path} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 463 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 464 | [Return] ${output} |
| 465 | |
| 466 | Start SOL Console Logging |
| 467 | [Documentation] Start system console log to file. |
| 468 | [Arguments] ${log_file_path}=${EMPTY} |
| 469 | |
| 470 | # This keyword will first call "Stop SOL Console Logging". Only then will |
| 471 | # it start SOL console logging. The data returned by "Stop SOL Console |
| 472 | # Logging" will in turn be returned by this keyword. |
| 473 | |
| 474 | # Description of arguments: |
| 475 | # log_file_path The file path to which system console log data should be |
| 476 | # written. Note that this path is taken to be a location on |
| 477 | # the machine where this program is running rather than on |
| 478 | # the Open BMC system. |
| 479 | |
| 480 | ${log_file_path}= Create OS Console File Path ${log_file_path} |
| 481 | |
| 482 | ${log_output}= Stop SOL Console Logging ${log_file_path} |
| 483 | |
| 484 | # Validate by making sure we can create the file. Problems creating the |
| 485 | # file would not be noticed by the subsequent ssh command because we fork |
| 486 | # the command. |
| 487 | Create File ${log_file_path} |
| 488 | ${sub_cmd_buf}= Create OS Console Command String |
| 489 | # Routing stderr to stdout so that any startup error text will go to the |
| 490 | # output file. |
| 491 | ${cmd_buf}= Catenate ${sub_cmd_buf} > ${log_file_path} 2>&1 & |
| 492 | Rdpissuing ${cmd_buf} |
| 493 | ${rc} ${output}= Run And Return Rc And Output ${cmd_buf} |
| 494 | # Because we are forking this command, we essentially will never get a |
| 495 | # non-zero return code or any output. |
| 496 | Should Be Equal ${rc} ${0} |
| 497 | |
| 498 | [Return] ${log_output} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 499 | |
| 500 | Get Time Stamp |
| 501 | [Documentation] Get the current time stamp data |
| 502 | ${cur_time}= Get Current Date result_format=%Y%m%d%H%M%S%f |
Sridevi Ramesh | b96a0c3 | 2016-10-19 05:09:52 -0500 | [diff] [blame] | 503 | [Return] ${cur_time} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 504 | |
George Keishing | 1b15020 | 2016-09-29 08:51:58 -0500 | [diff] [blame] | 505 | |
| 506 | Verify BMC State |
| 507 | [Documentation] Get the BMC state and verify if the current |
| 508 | ... BMC state is as expected. |
| 509 | [Arguments] ${expected} |
| 510 | |
Rahul Maheshwari | 2c72504 | 2017-01-29 22:55:28 -0600 | [diff] [blame] | 511 | ${current}= Get BMC State Deprecated |
George Keishing | 8db0e1b | 2016-10-20 13:46:54 -0500 | [diff] [blame] | 512 | Should Contain ${expected} ${current} |
George Keishing | 1b15020 | 2016-09-29 08:51:58 -0500 | [diff] [blame] | 513 | |
Rahul Maheshwari | f684ba7 | 2016-10-25 07:24:41 -0500 | [diff] [blame] | 514 | Start Journal Log |
| 515 | [Documentation] Start capturing journal log to a file in /tmp using |
| 516 | ... journalctl command. By default journal log is collected |
| 517 | ... at /tmp/journal_log else user input location. |
| 518 | ... The File is appended with datetime. |
| 519 | [Arguments] ${file_path}=/tmp/journal_log |
| 520 | |
| 521 | Open Connection And Log In |
| 522 | |
| 523 | ${cur_time}= Get Time Stamp |
| 524 | Set Global Variable ${LOG_TIME} ${cur_time} |
| 525 | Start Command |
| 526 | ... journalctl -f > ${file_path}-${LOG_TIME} |
| 527 | Log Journal Log Started: ${file_path}-${LOG_TIME} |
| 528 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 529 | |
Rahul Maheshwari | f684ba7 | 2016-10-25 07:24:41 -0500 | [diff] [blame] | 530 | Stop Journal Log |
| 531 | [Documentation] Stop journalctl process if its running. |
| 532 | ... By default return log from /tmp/journal_log else |
| 533 | ... user input location. |
| 534 | [Arguments] ${file_path}=/tmp/journal_log |
| 535 | |
| 536 | Open Connection And Log In |
| 537 | |
| 538 | ${rc}= |
| 539 | ... Execute Command |
| 540 | ... ps ax | grep journalctl | grep -v grep |
| 541 | ... return_stdout=False return_rc=True |
| 542 | |
| 543 | Return From Keyword If '${rc}' == '${1}' |
| 544 | ... No journal log process running |
| 545 | |
| 546 | ${output} ${stderr}= |
| 547 | ... Execute Command killall journalctl |
| 548 | ... return_stderr=True |
| 549 | Should Be Empty ${stderr} |
| 550 | |
| 551 | ${journal_log} ${stderr}= |
| 552 | ... Execute Command |
| 553 | ... cat ${file_path}-${LOG_TIME} |
| 554 | ... return_stderr=True |
| 555 | Should Be Empty ${stderr} |
| 556 | |
| 557 | Log ${journal_log} |
| 558 | |
| 559 | Execute Command rm ${file_path}-${LOG_TIME} |
| 560 | |
| 561 | [Return] ${journal_log} |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 562 | |
| 563 | Mac Address To Hex String |
| 564 | [Documentation] Converts MAC address into hex format. |
| 565 | ... Example |
| 566 | ... Given the following MAC: 00:01:6C:80:02:78 |
| 567 | ... This keyword will return: 0x00 0x01 0x6C 0x80 0x02 0x78 |
| 568 | ... Description of arguments: |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 569 | ... i_macaddress MAC address in the following format |
| 570 | ... 00:01:6C:80:02:78 |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 571 | [Arguments] ${i_macaddress} |
| 572 | |
| 573 | ${mac_hex}= Catenate 0x${i_macaddress.replace(':', ' 0x')} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 574 | [Return] ${mac_hex} |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 575 | |
| 576 | IP Address To Hex String |
| 577 | [Documentation] Converts IP address into hex format. |
| 578 | ... Example: |
| 579 | ... Given the following IP: 10.3.164.100 |
| 580 | ... This keyword will return: 0xa 0x3 0xa4 0xa0 |
| 581 | ... Description of arguments: |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 582 | ... i_ipaddress IP address in the following format |
| 583 | ... 10.10.10.10 |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 584 | [Arguments] ${i_ipaddress} |
| 585 | |
| 586 | @{ip}= Split String ${i_ipaddress} . |
| 587 | ${index}= Set Variable ${0} |
| 588 | |
| 589 | :FOR ${item} IN @{ip} |
| 590 | \ ${hex}= Convert To Hex ${item} prefix=0x lowercase=yes |
| 591 | \ Set List Value ${ip} ${index} ${hex} |
| 592 | \ ${index}= Set Variable ${index + 1} |
| 593 | ${ip_hex}= Catenate @{ip} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 594 | [Return] ${ip_hex} |
Sivas SRR | ea85d1f | 2016-11-13 22:44:28 -0600 | [diff] [blame] | 595 | |
| 596 | BMC CPU Performance Check |
| 597 | [Documentation] Minimal 10% of proc should be free in this instance |
| 598 | |
| 599 | ${bmc_cpu_usage_output} ${stderr}= Execute Command ${bmc_cpu_usage_cmd} |
| 600 | ... return_stderr=True |
| 601 | Should be empty ${stderr} |
| 602 | ${bmc_cpu_percentage}= Fetch From Left ${bmc_cpu_usage_output} % |
| 603 | Should be true ${bmc_cpu_percentage} < 90 |
| 604 | |
| 605 | BMC Mem Performance Check |
| 606 | [Documentation] Minimal 10% of memory should be free in this instance |
| 607 | |
| 608 | ${bmc_mem_free_output} ${stderr}= Execute Command ${bmc_mem_free_cmd} |
| 609 | ... return_stderr=True |
| 610 | Should be empty ${stderr} |
| 611 | |
| 612 | ${bmc_mem_total_output} ${stderr}= Execute Command ${bmc_mem_total_cmd} |
| 613 | ... return_stderr=True |
| 614 | Should be empty ${stderr} |
| 615 | |
| 616 | ${bmc_mem_percentage}= Evaluate ${bmc_mem_free_output}*100 |
| 617 | ${bmc_mem_percentage}= Evaluate |
| 618 | ... ${bmc_mem_percentage}/${bmc_mem_total_output} |
| 619 | Should be true ${bmc_mem_percentage} > 10 |
| 620 | |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 621 | BMC File System Usage Check |
| 622 | [Documentation] Check the file system space. None should be 100% full |
Sivas SRR | 352bc16 | 2017-02-13 22:12:29 -0600 | [diff] [blame] | 623 | ... except /run/initramfs/ro |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 624 | ${bmc_fs_usage_output} ${stderr}= Execute Command |
| 625 | ... ${bmc_file_system_usage_cmd} return_stderr=True |
| 626 | Should Be Empty ${stderr} |
| 627 | Should Be True ${bmc_fs_usage_output}==0 |
| 628 | |
Sivas SRR | ea85d1f | 2016-11-13 22:44:28 -0600 | [diff] [blame] | 629 | Check BMC CPU Performance |
| 630 | [Documentation] Minimal 10% of proc should be free in 3 sample |
| 631 | :FOR ${var} IN Range 1 4 |
| 632 | \ BMC CPU Performance check |
| 633 | |
| 634 | Check BMC Mem Performance |
| 635 | [Documentation] Minimal 10% of memory should be free |
| 636 | |
| 637 | :FOR ${var} IN Range 1 4 |
| 638 | \ BMC Mem Performance check |
| 639 | |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 640 | Check BMC File System Performance |
| 641 | [Documentation] Check for file system usage for 4 times |
| 642 | |
| 643 | :FOR ${var} IN Range 1 4 |
| 644 | \ BMC File System Usage check |
| 645 | |
Rahul Maheshwari | 9a8d3b1 | 2016-12-05 04:06:16 -0600 | [diff] [blame] | 646 | Get Endpoint Paths |
| 647 | [Documentation] Returns all url paths ending with given endpoint |
| 648 | ... Example: |
| 649 | ... Given the following endpoint: cpu |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 650 | ... This keyword will return: list of all urls ending with |
| 651 | ... cpu - |
Rahul Maheshwari | 9a8d3b1 | 2016-12-05 04:06:16 -0600 | [diff] [blame] | 652 | ... /org/openbmc/inventory/system/chassis/motherboard/cpu0, |
| 653 | ... /org/openbmc/inventory/system/chassis/motherboard/cpu1 |
| 654 | ... Description of arguments: |
| 655 | ... path URL path for enumeration |
| 656 | ... endpoint string for which url path ending |
| 657 | [Arguments] ${path} ${endpoint} |
| 658 | |
| 659 | ${resp}= Read Properties ${path}/enumerate timeout=30 |
| 660 | log Dictionary ${resp} |
| 661 | |
| 662 | ${list}= Get Dictionary Keys ${resp} |
| 663 | ${resp}= Get Matches ${list} regexp=^.*[0-9a-z_].${endpoint}[0-9]*$ |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 664 | [Return] ${resp} |
Sridevi Ramesh | b96a0c3 | 2016-10-19 05:09:52 -0500 | [diff] [blame] | 665 | |
| 666 | Check Zombie Process |
| 667 | [Documentation] Check if any defunct process exist or not on BMC |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 668 | ${count} ${stderr} ${rc}= Execute Command ps -o stat | grep Z | wc -l |
Sridevi Ramesh | b96a0c3 | 2016-10-19 05:09:52 -0500 | [diff] [blame] | 669 | ... return_stderr=True return_rc=True |
| 670 | Should Be True ${count}==0 |
| 671 | Should Be Empty ${stderr} |
George Keishing | 5327d01 | 2016-12-08 08:43:29 -0600 | [diff] [blame] | 672 | |
| 673 | Prune Journal Log |
| 674 | [Documentation] Prune archived journal logs. |
| 675 | [Arguments] ${vacuum_size}=1M |
| 676 | |
| 677 | # This keyword can be used to prevent the journal |
| 678 | # log from filling up the /run filesystem. |
| 679 | # This command will retain only the latest logs |
| 680 | # of the user specified size. |
| 681 | |
| 682 | Open Connection And Log In |
| 683 | ${output} ${stderr} ${rc}= |
| 684 | ... Execute Command |
| 685 | ... journalctl --vacuum-size=${vacuum_size} |
| 686 | ... return_stderr=True return_rc=True |
| 687 | |
| 688 | Should Be Equal ${rc} ${0} msg=${stderr} |
| 689 | Should Contain ${stderr} Vacuuming done |
Sridevi Ramesh | 1699d37 | 2016-12-06 00:20:22 -0600 | [diff] [blame] | 690 | |
| 691 | Set BMC Power Policy |
| 692 | [Documentation] Set the given BMC power policy. |
| 693 | [arguments] ${policy} |
| 694 | |
| 695 | ${valueDict}= create dictionary data=${policy} |
| 696 | Write Attribute ${HOST_SETTING} power_policy data=${valueDict} |
| 697 | ${currentPolicy}= Read Attribute ${HOST_SETTING} power_policy |
| 698 | Should Be Equal ${currentPolicy} ${policy} |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 699 | |
George Keishing | 4d6f3d6 | 2017-02-06 09:50:41 -0600 | [diff] [blame] | 700 | Get System Power Policy |
| 701 | [Documentation] Get the BMC power policy. |
| 702 | ${currentPolicy}= Read Attribute ${HOST_SETTING} power_policy |
| 703 | [Return] ${currentPolicy} |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 704 | |
Rahul Maheshwari | 1cbf004 | 2017-02-13 05:17:37 -0600 | [diff] [blame] | 705 | Get Auto Reboot |
| 706 | [Documentation] Returns auto reboot setting. |
Michael Walsh | 8184377 | 2017-03-02 14:44:44 -0600 | [diff] [blame] | 707 | ${setting}= Read Attribute ${HOST_SETTING} auto_reboot |
Rahul Maheshwari | 1cbf004 | 2017-02-13 05:17:37 -0600 | [diff] [blame] | 708 | [Return] ${setting} |
| 709 | |
| 710 | |
| 711 | Set Auto Reboot |
| 712 | [Documentation] Set the given auto reboot setting. |
| 713 | [Arguments] ${setting} |
| 714 | # setting auto reboot's setting, i.e. yes or no |
| 715 | |
| 716 | ${valueDict}= Set Variable ${setting} |
| 717 | ${data}= Create Dictionary data=${valueDict} |
Michael Walsh | 8184377 | 2017-03-02 14:44:44 -0600 | [diff] [blame] | 718 | Write Attribute ${HOST_SETTING} auto_reboot data=${data} |
Rahul Maheshwari | 1cbf004 | 2017-02-13 05:17:37 -0600 | [diff] [blame] | 719 | ${current_setting}= Get Auto Reboot |
| 720 | Should Be Equal ${current_setting} ${setting} |
| 721 | |
| 722 | |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 723 | Set BMC Reset Reference Time |
| 724 | [Documentation] Set current boot time as a reference and increment |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 725 | ... boot count. |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 726 | |
| 727 | ${cur_btime}= Get BMC Boot Time |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 728 | Run Keyword If ${BOOT_TIME} == ${0} and ${BOOT_COUNT} == ${0} |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 729 | ... Set Global Variable ${BOOT_TIME} ${cur_btime} |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 730 | ... ELSE IF ${cur_btime} > ${BOOT_TIME} |
| 731 | ... Run Keywords Set Global Variable ${BOOT_TIME} ${cur_btime} |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 732 | ... AND |
| 733 | ... Set Global Variable ${BOOT_COUNT} ${BOOT_COUNT + 1} |
| 734 | |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 735 | Get BMC Boot Time |
| 736 | [Documentation] Get boot time from /proc/stat. |
| 737 | |
| 738 | Open Connection And Log In |
| 739 | ${output} ${stderr}= |
| 740 | ... Execute Command egrep '^btime ' /proc/stat | cut -f 2 -d ' ' |
| 741 | ... return_stderr=True |
| 742 | Should Be Empty ${stderr} |
| 743 | ${btime}= Convert To Integer ${output} |
| 744 | [Return] ${btime} |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 745 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 746 | Execute Command On BMC |
| 747 | [Documentation] Execute given command on BMC and return output. |
| 748 | [Arguments] ${command} |
| 749 | ${stdout} ${stderr}= Execute Command ${command} return_stderr=True |
| 750 | Should Be Empty ${stderr} |
| 751 | [Return] ${stdout} |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 752 | |
George Keishing | 7a52022 | 2017-02-27 09:44:30 -0600 | [diff] [blame] | 753 | Enable Core Dump On BMC |
| 754 | [Documentation] Enable core dump collection. |
| 755 | Open Connection And Log In |
| 756 | ${core_pattern}= Execute Command On BMC |
| 757 | ... echo '/tmp/core_%e.%p' | tee /proc/sys/kernel/core_pattern |
| 758 | Should Be Equal As Strings ${core_pattern} /tmp/core_%e.%p |