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 | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 16 | ... ${OPENBMC_BASE_URI}settings/host0 org.freedesktop.DBus.Properties.Get |
| 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 | |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 21 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 22 | # Assign default value to QUIET for programs which may not define it. |
| 23 | ${QUIET} ${0} |
Gunnar Mills | 59204d2 | 2016-12-06 11:05:19 -0600 | [diff] [blame] | 24 | ${dbuscmdBase}= dbus-send --system --print-reply --dest=org.openbmc.settings.Host |
| 25 | ${dbuscmdGet}= /org/openbmc/settings/host0 org.freedesktop.DBus.Properties.Get |
| 26 | ${dbuscmdString}= string:"org.openbmc.settings.Host" string: |
Sivas SRR | ea85d1f | 2016-11-13 22:44:28 -0600 | [diff] [blame] | 27 | ${bmc_mem_free_cmd}= free | tr -s ' ' | sed '/^Mem/!d' | cut -d" " -f4 |
| 28 | ${bmc_mem_total_cmd}= free | tr -s ' ' | sed '/^Mem/!d' | cut -d" " -f2 |
| 29 | ${bmc_cpu_usage_cmd}= top -n 1 | grep CPU: | cut -c 7-9 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 30 | |
| 31 | *** Keywords *** |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 32 | Wait For Host To Ping |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 33 | [Arguments] ${host} ${timeout}=${OPENBMC_REBOOT_TIMEOUT}min |
| 34 | ... ${interval}=5 sec |
| 35 | |
| 36 | # host The DNS name or IP of the host to ping. |
| 37 | # timeout The amount of time after which attempts to ping cease. |
| 38 | # interval The amount of time in between attempts to ping. |
| 39 | |
| 40 | Wait Until Keyword Succeeds ${timeout} ${interval} Ping Host ${host} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 41 | |
| 42 | Ping Host |
| 43 | [Arguments] ${host} |
George Keishing | 8a84f95 | 2016-08-25 04:54:53 -0500 | [diff] [blame] | 44 | Should Not Be Empty ${host} msg=No host provided |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 45 | ${RC} ${output}= Run and return RC and Output ping -c 4 ${host} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 46 | Log RC: ${RC}\nOutput:\n${output} |
| 47 | Should be equal ${RC} ${0} |
| 48 | |
| 49 | Get Boot Progress |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 50 | [Arguments] ${quiet}=${QUIET} |
| 51 | |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 52 | ${state}= Read Attribute ${OPENBMC_BASE_URI}sensors/host/BootProgress |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 53 | ... value quiet=${quiet} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame^] | 54 | [Return] ${state} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 55 | |
| 56 | Is Power On |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 57 | ${state}= Get Power State |
| 58 | Should be equal ${state} ${1} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 59 | |
| 60 | Is Power Off |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 61 | ${state}= Get Power State |
| 62 | Should be equal ${state} ${0} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 63 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 64 | Initiate Power On |
| 65 | [Documentation] Initiates the power on and waits until the Is Power On |
| 66 | ... keyword returns that the power state has switched to on. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 67 | [Arguments] ${wait}=${1} |
| 68 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 69 | @{arglist}= Create List |
| 70 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 71 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/chassis0/ powerOn |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 72 | ... data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 73 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 74 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 75 | # Does caller want to wait for power on status? |
| 76 | Run Keyword If '${wait}' == '${0}' Return From Keyword |
| 77 | Wait Until Keyword Succeeds 3 min 10 sec Is Power On |
Rahul Maheshwari | f684ba7 | 2016-10-25 07:24:41 -0500 | [diff] [blame] | 78 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 79 | Initiate Power Off |
| 80 | [Documentation] Initiates the power off and waits until the Is Power Off |
| 81 | ... keyword returns that the power state has switched to off. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 82 | @{arglist}= Create List |
| 83 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 84 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/chassis0/ powerOff |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 85 | ... data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 86 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 87 | Wait Until Keyword Succeeds 1 min 10 sec Is Power Off |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 88 | |
| 89 | Trigger Warm Reset |
| 90 | log to console "Triggering warm reset" |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 91 | ${data}= create dictionary data=@{EMPTY} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 92 | ${resp}= openbmc post request |
| 93 | ... ${OPENBMC_BASE_URI}control/bmc0/action/warmReset data=${data} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 94 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 95 | ${session_active}= Check If warmReset is Initiated |
| 96 | Run Keyword If '${session_active}' == '${True}' |
| 97 | ... Fail msg=warm reset didn't occur |
| 98 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 99 | Sleep ${SYSTEM_SHUTDOWN_TIME}min |
| 100 | Wait For Host To Ping ${OPENBMC_HOST} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 101 | |
| 102 | Check OS |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 103 | [Documentation] Attempts to ping the host OS and then checks that the host |
| 104 | ... OS is up by running an SSH command. |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 105 | |
| 106 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 107 | ... ${os_password}=${OS_PASSWORD} ${quiet}=${QUIET} |
| 108 | ... ${print_string}=${EMPTY} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 109 | [Teardown] Close Connection |
| 110 | |
| 111 | # os_host The DNS name/IP of the OS host associated with our BMC. |
| 112 | # os_username The username to be used to sign on to the OS host. |
| 113 | # 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] | 114 | # quiet Indicates whether this keyword should write to console. |
| 115 | # print_string A string to be printed before checking the OS. |
| 116 | |
| 117 | rprint ${print_string} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 118 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 119 | # Attempt to ping the OS. Store the return code to check later. |
| 120 | ${ping_rc}= Run Keyword and Return Status Ping Host ${os_host} |
| 121 | |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 122 | Open connection ${os_host} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 123 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 124 | ${status} ${msg}= Run Keyword And Ignore Error Login ${os_username} |
| 125 | ... ${os_password} |
| 126 | ${err_msg1}= Sprint Error ${msg} |
| 127 | ${err_msg}= Catenate SEPARATOR= \n ${err_msg1} |
| 128 | Run Keyword If '${status}' == 'FAIL' Fail msg=${err_msg} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 129 | ${output} ${stderr} ${rc}= Execute Command uptime return_stderr=True |
| 130 | ... return_rc=True |
| 131 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 132 | ${temp_msg}= Catenate Could not execute a command on the operating |
| 133 | ... system.\n |
| 134 | ${err_msg1}= Sprint Error ${temp_msg} |
| 135 | ${err_msg}= Catenate SEPARATOR= \n ${err_msg1} |
| 136 | |
| 137 | # If the return code returned by "Execute Command" is non-zero, this |
| 138 | # keyword will fail. |
| 139 | Should Be Equal ${rc} ${0} msg=${err_msg} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 140 | # We will likewise fail if there is any stderr data. |
| 141 | Should Be Empty ${stderr} |
| 142 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 143 | ${temp_msg}= Set Variable Could not ping the operating system.\n |
| 144 | ${err_msg1}= Sprint Error ${temp_msg} |
| 145 | ${err_msg}= Catenate SEPARATOR= \n ${err_msg1} |
| 146 | # We will likewise fail if the OS did not ping, as we could SSH but not |
| 147 | # ping |
| 148 | Should Be Equal As Strings ${ping_rc} ${TRUE} msg=${err_msg} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 149 | |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 150 | Wait for OS |
| 151 | [Documentation] Waits for the host OS to come up via calls to "Check OS". |
| 152 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
| 153 | ... ${os_password}=${OS_PASSWORD} ${timeout}=${OS_WAIT_TIMEOUT} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 154 | ... ${quiet}=${0} |
| 155 | [Teardown] rprintn |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 156 | |
| 157 | # os_host The DNS name or IP of the OS host associated with our |
| 158 | # BMC. |
| 159 | # os_username The username to be used to sign on to the OS host. |
| 160 | # os_password The password to be used to sign on to the OS host. |
| 161 | # timeout The timeout in seconds indicating how long you're |
| 162 | # willing to wait for the OS to respond. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 163 | # quiet Indicates whether this keyword should write to console. |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 164 | |
| 165 | # The interval to be used between calls to "Check OS". |
| 166 | ${interval}= Set Variable 5 |
| 167 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 168 | ${message}= Catenate Checking every ${interval} seconds for up to |
| 169 | ... ${timeout} seconds for the operating system to communicate. |
| 170 | rqprint_timen ${message} |
| 171 | |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 172 | Wait Until Keyword Succeeds ${timeout} sec ${interval} Check OS |
| 173 | ... ${os_host} ${os_username} ${os_password} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 174 | ... print_string=\# |
| 175 | |
| 176 | rqprintn |
| 177 | |
| 178 | rqprint_timen The operating system is now communicating. |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 179 | |
| 180 | Get BMC State |
| 181 | [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] | 182 | [Arguments] ${quiet}=${QUIET} |
| 183 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 184 | @{arglist}= Create List |
| 185 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 186 | ${resp}= Call Method ${OPENBMC_BASE_URI}managers/System/ getSystemState |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 187 | ... data=${args} quiet=${quiet} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 188 | Should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 189 | ${content}= to json ${resp.content} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame^] | 190 | [Return] ${content["data"]} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 191 | |
| 192 | Get Power State |
| 193 | [Documentation] Returns the power state as an integer. Either 0 or 1. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 194 | [Arguments] ${quiet}=${QUIET} |
| 195 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 196 | @{arglist}= Create List |
| 197 | ${args}= Create Dictionary data=@{arglist} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 198 | |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 199 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/chassis0/ getPowerState |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 200 | ... data=${args} quiet=${quiet} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 201 | Should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 202 | ${content}= to json ${resp.content} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame^] | 203 | [Return] ${content["data"]} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 204 | |
| 205 | Clear BMC Record Log |
| 206 | [Documentation] Clears all the event logs on the BMC. This would be |
| 207 | ... equivalent to ipmitool sel clear. |
| 208 | @{arglist}= Create List |
| 209 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 210 | ${resp}= Call Method |
| 211 | ... ${OPENBMC_BASE_URI}records/events/ clear data=${args} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 212 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 213 | |
| 214 | Copy PNOR to BMC |
| 215 | Import Library SCPLibrary WITH NAME scp |
| 216 | Open Connection for SCP |
| 217 | Log Copying ${PNOR_IMAGE_PATH} to /tmp |
| 218 | scp.Put File ${PNOR_IMAGE_PATH} /tmp |
| 219 | |
| 220 | Flash PNOR |
| 221 | [Documentation] Calls flash bios update method to flash PNOR image |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 222 | [Arguments] ${pnor_image} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 223 | @{arglist}= Create List ${pnor_image} |
| 224 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 225 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/flash/bios/ update |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 226 | ... data=${args} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 227 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 228 | Wait Until Keyword Succeeds 2 min 10 sec Is PNOR Flashing |
| 229 | |
| 230 | Get Flash BIOS Status |
| 231 | [Documentation] Returns the status of the flash BIOS API as a string. For |
| 232 | ... example 'Flashing', 'Flash Done', etc |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 233 | ${data}= Read Properties ${OPENBMC_BASE_URI}control/flash/bios |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame^] | 234 | [Return] ${data['status']} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 235 | |
| 236 | Is PNOR Flashing |
| 237 | [Documentation] Get BIOS 'Flashing' status. This indicates that PNOR |
| 238 | ... flashing has started. |
| 239 | ${status}= Get Flash BIOS Status |
| 240 | should be equal as strings ${status} Flashing |
| 241 | |
| 242 | Is PNOR Flash Done |
| 243 | [Documentation] Get BIOS 'Flash Done' status. This indicates that the |
| 244 | ... PNOR flashing has completed. |
Leah McNutt | 9ba3227 | 2016-11-17 15:48:39 +0000 | [diff] [blame] | 245 | ${status}= Get Flash BIOS Status |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 246 | should be equal as strings ${status} Flash Done |
| 247 | |
| 248 | Is System State Host Booted |
| 249 | [Documentation] Checks whether system state is HOST_BOOTED. |
| 250 | ${state}= Get BMC State |
| 251 | should be equal as strings ${state} HOST_BOOTED |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 252 | |
| 253 | Verify Ping and REST Authentication |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 254 | ${l_ping}= Run Keyword And Return Status |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 255 | ... Ping Host ${OPENBMC_HOST} |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 256 | Run Keyword If '${l_ping}' == '${False}' |
| 257 | ... Fail msg=Ping Failed |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 258 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 259 | ${l_rest}= Run Keyword And Return Status |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 260 | ... Initialize OpenBMC |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 261 | Run Keyword If '${l_rest}' == '${False}' |
| 262 | ... Fail msg=REST Authentication Failed |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 263 | |
| 264 | # Just to make sure the SSH is working for SCP |
| 265 | Open Connection And Log In |
| 266 | ${system} ${stderr}= Execute Command hostname return_stderr=True |
| 267 | Should Be Empty ${stderr} |
| 268 | |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 269 | Check If BMC is Up |
| 270 | [Documentation] Wait for Host to be online. Checks every X seconds |
| 271 | ... interval for Y minutes and fails if timed out. |
| 272 | ... Default MAX timedout is 10 min, interval 10 seconds. |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 273 | [Arguments] ${max_timeout}=${OPENBMC_REBOOT_TIMEOUT} min |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 274 | ... ${interval}=10 sec |
| 275 | |
| 276 | Wait Until Keyword Succeeds |
| 277 | ... ${max_timeout} ${interval} Verify Ping and REST Authentication |
| 278 | |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 279 | |
| 280 | Check If warmReset is Initiated |
| 281 | [Documentation] Ping would be still alive, so try SSH to connect |
| 282 | ... if fails the ports are down indicating reboot |
| 283 | ... is in progress |
George Keishing | 3c05d35 | 2016-12-13 06:54:50 -0600 | [diff] [blame] | 284 | |
| 285 | # Warm reset adds 3 seconds delay before forcing reboot |
| 286 | # To minimize race conditions, we wait for 7 seconds |
| 287 | Sleep 7s |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 288 | ${alive}= Run Keyword and Return Status |
| 289 | ... Open Connection And Log In |
| 290 | Return From Keyword If '${alive}' == '${False}' ${False} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame^] | 291 | [Return] ${True} |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 292 | |
George Keishing | 06ae4aa | 2016-08-30 01:41:28 -0500 | [diff] [blame] | 293 | Flush REST Sessions |
| 294 | [Documentation] Removes all the active session objects |
| 295 | Delete All Sessions |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 296 | |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 297 | Initialize DBUS cmd |
| 298 | [Documentation] Initialize dbus string with property string to extract |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 299 | [Arguments] ${boot_property} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 300 | ${cmd}= Catenate ${dbuscmdBase} ${dbuscmdGet} ${dbuscmdString} |
| 301 | ${cmd}= Catenate ${cmd}${boot_property} |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 302 | Set Global Variable ${dbuscmd} ${cmd} |
| 303 | |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 304 | |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 305 | Stop OBMC Console Client |
| 306 | [Documentation] Stop any running obmc_console_client |
| 307 | ... writing to file_path. |
| 308 | [Arguments] ${file_path}=/tmp/obmc-console.log |
| 309 | |
| 310 | ${pid}= |
| 311 | ... Execute Command |
| 312 | ... ps ax | grep obmc-console-client | grep ${file_path} | grep -v grep | awk '{print $1}' |
| 313 | |
| 314 | Run Keyword If '${pid}' != '${EMPTY}' |
| 315 | ... Execute Command kill -s KILL ${pid} |
| 316 | ... ELSE Log "No obmc-console-client process running" |
| 317 | |
| 318 | |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 319 | Start SOL Console Logging |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 320 | [Documentation] Start a new obmc_console_client process and direct |
| 321 | ... output to a file. |
| 322 | [Arguments] ${file_path}=/tmp/obmc-console.log |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 323 | |
| 324 | Open Connection And Log In |
| 325 | |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 326 | Stop OBMC Console Client ${file_path} |
| 327 | |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 328 | Start Command |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 329 | ... obmc-console-client > ${file_path} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 330 | |
| 331 | |
| 332 | Stop SOL Console Logging |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 333 | [Documentation] Stop obmc_console_client process, if any, and |
| 334 | ... return the console output as a string. |
| 335 | [Arguments] ${file_path}=/tmp/obmc-console.log |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 336 | |
| 337 | Open Connection And Log In |
| 338 | |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 339 | Stop OBMC Console Client ${file_path} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 340 | |
| 341 | ${console} ${stderr}= |
| 342 | ... Execute Command |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 343 | ... cat ${file_path} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 344 | ... return_stderr=True |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 345 | Should Be Empty ${stderr} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 346 | |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 347 | [Return] ${console} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 348 | |
| 349 | |
| 350 | Get Time Stamp |
| 351 | [Documentation] Get the current time stamp data |
| 352 | ${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] | 353 | [Return] ${cur_time} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 354 | |
George Keishing | 1b15020 | 2016-09-29 08:51:58 -0500 | [diff] [blame] | 355 | |
| 356 | Verify BMC State |
| 357 | [Documentation] Get the BMC state and verify if the current |
| 358 | ... BMC state is as expected. |
| 359 | [Arguments] ${expected} |
| 360 | |
| 361 | ${current}= Get BMC State |
George Keishing | 8db0e1b | 2016-10-20 13:46:54 -0500 | [diff] [blame] | 362 | Should Contain ${expected} ${current} |
George Keishing | 1b15020 | 2016-09-29 08:51:58 -0500 | [diff] [blame] | 363 | |
Rahul Maheshwari | f684ba7 | 2016-10-25 07:24:41 -0500 | [diff] [blame] | 364 | Start Journal Log |
| 365 | [Documentation] Start capturing journal log to a file in /tmp using |
| 366 | ... journalctl command. By default journal log is collected |
| 367 | ... at /tmp/journal_log else user input location. |
| 368 | ... The File is appended with datetime. |
| 369 | [Arguments] ${file_path}=/tmp/journal_log |
| 370 | |
| 371 | Open Connection And Log In |
| 372 | |
| 373 | ${cur_time}= Get Time Stamp |
| 374 | Set Global Variable ${LOG_TIME} ${cur_time} |
| 375 | Start Command |
| 376 | ... journalctl -f > ${file_path}-${LOG_TIME} |
| 377 | Log Journal Log Started: ${file_path}-${LOG_TIME} |
| 378 | |
| 379 | Stop Journal Log |
| 380 | [Documentation] Stop journalctl process if its running. |
| 381 | ... By default return log from /tmp/journal_log else |
| 382 | ... user input location. |
| 383 | [Arguments] ${file_path}=/tmp/journal_log |
| 384 | |
| 385 | Open Connection And Log In |
| 386 | |
| 387 | ${rc}= |
| 388 | ... Execute Command |
| 389 | ... ps ax | grep journalctl | grep -v grep |
| 390 | ... return_stdout=False return_rc=True |
| 391 | |
| 392 | Return From Keyword If '${rc}' == '${1}' |
| 393 | ... No journal log process running |
| 394 | |
| 395 | ${output} ${stderr}= |
| 396 | ... Execute Command killall journalctl |
| 397 | ... return_stderr=True |
| 398 | Should Be Empty ${stderr} |
| 399 | |
| 400 | ${journal_log} ${stderr}= |
| 401 | ... Execute Command |
| 402 | ... cat ${file_path}-${LOG_TIME} |
| 403 | ... return_stderr=True |
| 404 | Should Be Empty ${stderr} |
| 405 | |
| 406 | Log ${journal_log} |
| 407 | |
| 408 | Execute Command rm ${file_path}-${LOG_TIME} |
| 409 | |
| 410 | [Return] ${journal_log} |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 411 | |
| 412 | Mac Address To Hex String |
| 413 | [Documentation] Converts MAC address into hex format. |
| 414 | ... Example |
| 415 | ... Given the following MAC: 00:01:6C:80:02:78 |
| 416 | ... This keyword will return: 0x00 0x01 0x6C 0x80 0x02 0x78 |
| 417 | ... Description of arguments: |
| 418 | ... i_macaddress MAC address in the following format 00:01:6C:80:02:78 |
| 419 | [Arguments] ${i_macaddress} |
| 420 | |
| 421 | ${mac_hex}= Catenate 0x${i_macaddress.replace(':', ' 0x')} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame^] | 422 | [Return] ${mac_hex} |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 423 | |
| 424 | IP Address To Hex String |
| 425 | [Documentation] Converts IP address into hex format. |
| 426 | ... Example: |
| 427 | ... Given the following IP: 10.3.164.100 |
| 428 | ... This keyword will return: 0xa 0x3 0xa4 0xa0 |
| 429 | ... Description of arguments: |
| 430 | ... i_ipaddress IP address in the following format 10.10.10.10 |
| 431 | [Arguments] ${i_ipaddress} |
| 432 | |
| 433 | @{ip}= Split String ${i_ipaddress} . |
| 434 | ${index}= Set Variable ${0} |
| 435 | |
| 436 | :FOR ${item} IN @{ip} |
| 437 | \ ${hex}= Convert To Hex ${item} prefix=0x lowercase=yes |
| 438 | \ Set List Value ${ip} ${index} ${hex} |
| 439 | \ ${index}= Set Variable ${index + 1} |
| 440 | ${ip_hex}= Catenate @{ip} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame^] | 441 | [Return] ${ip_hex} |
Sivas SRR | ea85d1f | 2016-11-13 22:44:28 -0600 | [diff] [blame] | 442 | |
| 443 | BMC CPU Performance Check |
| 444 | [Documentation] Minimal 10% of proc should be free in this instance |
| 445 | |
| 446 | ${bmc_cpu_usage_output} ${stderr}= Execute Command ${bmc_cpu_usage_cmd} |
| 447 | ... return_stderr=True |
| 448 | Should be empty ${stderr} |
| 449 | ${bmc_cpu_percentage}= Fetch From Left ${bmc_cpu_usage_output} % |
| 450 | Should be true ${bmc_cpu_percentage} < 90 |
| 451 | |
| 452 | BMC Mem Performance Check |
| 453 | [Documentation] Minimal 10% of memory should be free in this instance |
| 454 | |
| 455 | ${bmc_mem_free_output} ${stderr}= Execute Command ${bmc_mem_free_cmd} |
| 456 | ... return_stderr=True |
| 457 | Should be empty ${stderr} |
| 458 | |
| 459 | ${bmc_mem_total_output} ${stderr}= Execute Command ${bmc_mem_total_cmd} |
| 460 | ... return_stderr=True |
| 461 | Should be empty ${stderr} |
| 462 | |
| 463 | ${bmc_mem_percentage}= Evaluate ${bmc_mem_free_output}*100 |
| 464 | ${bmc_mem_percentage}= Evaluate |
| 465 | ... ${bmc_mem_percentage}/${bmc_mem_total_output} |
| 466 | Should be true ${bmc_mem_percentage} > 10 |
| 467 | |
| 468 | Check BMC CPU Performance |
| 469 | [Documentation] Minimal 10% of proc should be free in 3 sample |
| 470 | :FOR ${var} IN Range 1 4 |
| 471 | \ BMC CPU Performance check |
| 472 | |
| 473 | Check BMC Mem Performance |
| 474 | [Documentation] Minimal 10% of memory should be free |
| 475 | |
| 476 | :FOR ${var} IN Range 1 4 |
| 477 | \ BMC Mem Performance check |
| 478 | |
Rahul Maheshwari | 9a8d3b1 | 2016-12-05 04:06:16 -0600 | [diff] [blame] | 479 | Get Endpoint Paths |
| 480 | [Documentation] Returns all url paths ending with given endpoint |
| 481 | ... Example: |
| 482 | ... Given the following endpoint: cpu |
| 483 | ... This keyword will return: list of all urls ending with cpu - |
| 484 | ... /org/openbmc/inventory/system/chassis/motherboard/cpu0, |
| 485 | ... /org/openbmc/inventory/system/chassis/motherboard/cpu1 |
| 486 | ... Description of arguments: |
| 487 | ... path URL path for enumeration |
| 488 | ... endpoint string for which url path ending |
| 489 | [Arguments] ${path} ${endpoint} |
| 490 | |
| 491 | ${resp}= Read Properties ${path}/enumerate timeout=30 |
| 492 | log Dictionary ${resp} |
| 493 | |
| 494 | ${list}= Get Dictionary Keys ${resp} |
| 495 | ${resp}= Get Matches ${list} regexp=^.*[0-9a-z_].${endpoint}[0-9]*$ |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame^] | 496 | [Return] ${resp} |
Sridevi Ramesh | b96a0c3 | 2016-10-19 05:09:52 -0500 | [diff] [blame] | 497 | |
| 498 | Check Zombie Process |
| 499 | [Documentation] Check if any defunct process exist or not on BMC |
| 500 | ${count} ${stderr} ${rc}= Execute Command ps -o stat | grep Z | wc -l |
| 501 | ... return_stderr=True return_rc=True |
| 502 | Should Be True ${count}==0 |
| 503 | Should Be Empty ${stderr} |
George Keishing | 5327d01 | 2016-12-08 08:43:29 -0600 | [diff] [blame] | 504 | |
| 505 | Prune Journal Log |
| 506 | [Documentation] Prune archived journal logs. |
| 507 | [Arguments] ${vacuum_size}=1M |
| 508 | |
| 509 | # This keyword can be used to prevent the journal |
| 510 | # log from filling up the /run filesystem. |
| 511 | # This command will retain only the latest logs |
| 512 | # of the user specified size. |
| 513 | |
| 514 | Open Connection And Log In |
| 515 | ${output} ${stderr} ${rc}= |
| 516 | ... Execute Command |
| 517 | ... journalctl --vacuum-size=${vacuum_size} |
| 518 | ... return_stderr=True return_rc=True |
| 519 | |
| 520 | Should Be Equal ${rc} ${0} msg=${stderr} |
| 521 | Should Contain ${stderr} Vacuuming done |