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 |
Sunil M | acd110a | 2017-05-23 04:14:32 -0500 | [diff] [blame] | 5 | Resource ../extended/obmc_boot_test_resource.robot |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 6 | Library DateTime |
| 7 | Library Process |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 8 | Library OperatingSystem |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 9 | Library gen_print.py |
| 10 | Library gen_robot_print.py |
Michael Walsh | 5f3f414 | 2017-05-22 17:09:47 -0500 | [diff] [blame] | 11 | Library gen_cmd.py |
Sunil M | acd110a | 2017-05-23 04:14:32 -0500 | [diff] [blame] | 12 | Library gen_robot_keyword.py |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 13 | |
| 14 | *** Variables *** |
Sivas SRR | d97aa9c | 2017-05-22 11:19:25 -0500 | [diff] [blame^] | 15 | ${pflash_cmd} /usr/sbin/pflash -r /dev/stdout -P VERSION |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 16 | ${SYSTEM_SHUTDOWN_TIME} ${5} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 17 | ${dbuscmdBase} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 18 | ... dbus-send --system --print-reply --dest=${OPENBMC_BASE_DBUS}.settings.Host |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 19 | ${dbuscmdGet} |
George Keishing | 9485af9 | 2017-01-04 10:21:43 -0600 | [diff] [blame] | 20 | ... ${SETTINGS_URI}host0 org.freedesktop.DBus.Properties.Get |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 21 | # Enable when ready with openbmc/openbmc-test-automation#203 |
| 22 | #${dbuscmdString}= string:"xyz.openbmc_project.settings.Host" string: |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 23 | ${dbuscmdString}= string:"org.openbmc.settings.Host" string: |
| 24 | |
| 25 | # Assign default value to QUIET for programs which may not define it. |
| 26 | ${QUIET} ${0} |
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 |
Sridevi Ramesh | 1699d37 | 2016-12-06 00:20:22 -0600 | [diff] [blame] | 30 | ${HOST_SETTING} ${SETTINGS_URI}host0 |
Sivas SRR | 352bc16 | 2017-02-13 22:12:29 -0600 | [diff] [blame] | 31 | # /run/initramfs/ro associate filesystem should be 100% full always |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 32 | ${bmc_file_system_usage_cmd}= |
Sivas SRR | 352bc16 | 2017-02-13 22:12:29 -0600 | [diff] [blame] | 33 | ... 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] | 34 | |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 35 | ${BOOT_TIME} ${0} |
| 36 | ${BOOT_COUNT} ${0} |
Sweta Potthuri | 025e012 | 2017-02-21 00:42:48 -0600 | [diff] [blame] | 37 | ${count} ${0} |
Sivas SRR | 8254db6 | 2017-02-07 09:39:46 -0600 | [diff] [blame] | 38 | ${devicetree_base} /sys/firmware/devicetree/base/model |
Sunil M | acd110a | 2017-05-23 04:14:32 -0500 | [diff] [blame] | 39 | # MAC input from user. |
| 40 | ${MAC_ADDRESS} ${EMPTY} |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 41 | |
George Keishing | b7c9b54 | 2017-05-23 08:19:58 -0500 | [diff] [blame] | 42 | # Initialize default debug value to 0. |
| 43 | ${DEBUG} ${0} |
| 44 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 45 | *** Keywords *** |
Sridevi Ramesh | 1699d37 | 2016-12-06 00:20:22 -0600 | [diff] [blame] | 46 | |
Sivas SRR | d97aa9c | 2017-05-22 11:19:25 -0500 | [diff] [blame^] | 47 | Verify PNOR Update |
| 48 | [Documentation] Verify that the PNOR is not corrupted. |
| 49 | # Example: |
| 50 | # FFS: Flash header not found. Code: 100 |
| 51 | # Error 100 opening ffs ! |
| 52 | |
| 53 | Open Connection And Log In |
| 54 | ${pnor_info}= Execute Command On BMC ${pflash_cmd} |
| 55 | Should Not Contain Any ${pnor_info} Flash header not found Error |
| 56 | |
Sivas SRR | 8254db6 | 2017-02-07 09:39:46 -0600 | [diff] [blame] | 57 | Get BMC System Model |
| 58 | [Documentation] Get the BMC model from the device tree. |
| 59 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 60 | Open Connection And Log In |
George Keishing | 90ab177 | 2017-02-24 05:40:55 -0600 | [diff] [blame] | 61 | ${bmc_model} ${stderr}= Execute Command |
| 62 | ... cat ${devicetree_base} | cut -d " " -f 1 return_stderr=True |
Sivas SRR | 8254db6 | 2017-02-07 09:39:46 -0600 | [diff] [blame] | 63 | Should Be Empty ${stderr} |
| 64 | Should Not Be Empty ${bmc_model} |
| 65 | [Return] ${bmc_model} |
| 66 | |
| 67 | Verify BMC System Model |
| 68 | [Documentation] Verify the BMC model with ${OPENBMC_MODEL}. |
| 69 | [Arguments] ${bmc_model} |
| 70 | |
| 71 | ${tmp_bmc_model}= Fetch From Right ${OPENBMC_MODEL} / |
| 72 | ${tmp_bmc_model}= Fetch From Left ${tmp_bmc_model} . |
| 73 | ${ret}= Run Keyword And Return Status Should Contain ${bmc_model} |
| 74 | ... ${tmp_bmc_model} ignore_case=True |
| 75 | [Return] ${ret} |
| 76 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 77 | Wait For Host To Ping |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 78 | [Arguments] ${host} ${timeout}=${OPENBMC_REBOOT_TIMEOUT}min |
| 79 | ... ${interval}=5 sec |
| 80 | |
| 81 | # host The DNS name or IP of the host to ping. |
| 82 | # timeout The amount of time after which attempts to ping cease. |
| 83 | # interval The amount of time in between attempts to ping. |
| 84 | |
| 85 | Wait Until Keyword Succeeds ${timeout} ${interval} Ping Host ${host} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 86 | |
| 87 | Ping Host |
| 88 | [Arguments] ${host} |
George Keishing | 8a84f95 | 2016-08-25 04:54:53 -0500 | [diff] [blame] | 89 | Should Not Be Empty ${host} msg=No host provided |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 90 | ${RC} ${output}= Run and return RC and Output ping -c 4 ${host} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 91 | Log RC: ${RC}\nOutput:\n${output} |
| 92 | Should be equal ${RC} ${0} |
| 93 | |
| 94 | Get Boot Progress |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 95 | [Arguments] ${quiet}=${QUIET} |
| 96 | |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 97 | ${state}= Read Attribute ${OPENBMC_BASE_URI}sensors/host/BootProgress |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 98 | ... value quiet=${quiet} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 99 | [Return] ${state} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 100 | |
| 101 | Is Power On |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 102 | ${state}= Get Power State |
| 103 | Should be equal ${state} ${1} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 104 | |
| 105 | Is Power Off |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 106 | ${state}= Get Power State |
| 107 | Should be equal ${state} ${0} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 108 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 109 | Initiate Power On |
| 110 | [Documentation] Initiates the power on and waits until the Is Power On |
| 111 | ... keyword returns that the power state has switched to on. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 112 | [Arguments] ${wait}=${1} |
| 113 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 114 | @{arglist}= Create List |
| 115 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 116 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/chassis0/ powerOn |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 117 | ... data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 118 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 119 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 120 | # Does caller want to wait for power on status? |
| 121 | Run Keyword If '${wait}' == '${0}' Return From Keyword |
| 122 | Wait Until Keyword Succeeds 3 min 10 sec Is Power On |
Rahul Maheshwari | f684ba7 | 2016-10-25 07:24:41 -0500 | [diff] [blame] | 123 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 124 | Initiate Power Off |
| 125 | [Documentation] Initiates the power off and waits until the Is Power Off |
| 126 | ... keyword returns that the power state has switched to off. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 127 | @{arglist}= Create List |
| 128 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 129 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/chassis0/ powerOff |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 130 | ... data=${args} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 131 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 132 | Wait Until Keyword Succeeds 1 min 10 sec Is Power Off |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 133 | |
Michael Walsh | 8184377 | 2017-03-02 14:44:44 -0600 | [diff] [blame] | 134 | Initiate OS Host Power Off |
| 135 | [Documentation] Initiate an OS reboot. |
| 136 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
| 137 | ... ${os_password}=${OS_PASSWORD} |
| 138 | |
| 139 | # Description of arguments: |
| 140 | # os_host The DNS name or IP of the OS. |
| 141 | # os_username The username to be used to sign in to the OS. |
| 142 | # os_password The password to be used to sign in to the OS. |
| 143 | |
Michael Walsh | ac27551 | 2017-03-07 11:39:28 -0600 | [diff] [blame] | 144 | SSHLibrary.Open connection ${os_host} |
Michael Walsh | 8184377 | 2017-03-02 14:44:44 -0600 | [diff] [blame] | 145 | Login ${os_username} ${os_password} |
| 146 | ${cmd_buf} Catenate shutdown |
| 147 | Start Command ${cmd_buf} |
Michael Walsh | ac27551 | 2017-03-07 11:39:28 -0600 | [diff] [blame] | 148 | SSHLibrary.Close Connection |
Michael Walsh | 8184377 | 2017-03-02 14:44:44 -0600 | [diff] [blame] | 149 | |
| 150 | Initiate OS Host Reboot |
| 151 | [Documentation] Initiate an OS reboot. |
| 152 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
| 153 | ... ${os_password}=${OS_PASSWORD} |
| 154 | |
| 155 | # Description of arguments: |
| 156 | # os_host The DNS name or IP of the OS. |
| 157 | # os_username The username to be used to sign in to the OS. |
| 158 | # os_password The password to be used to sign in to the OS. |
| 159 | |
Michael Walsh | ac27551 | 2017-03-07 11:39:28 -0600 | [diff] [blame] | 160 | SSHLibrary.Open connection ${os_host} |
Michael Walsh | 8184377 | 2017-03-02 14:44:44 -0600 | [diff] [blame] | 161 | Login ${os_username} ${os_password} |
| 162 | ${cmd_buf} Catenate reboot |
| 163 | Start Command ${cmd_buf} |
Michael Walsh | ac27551 | 2017-03-07 11:39:28 -0600 | [diff] [blame] | 164 | SSHLibrary.Close Connection |
Michael Walsh | 8184377 | 2017-03-02 14:44:44 -0600 | [diff] [blame] | 165 | |
| 166 | Initiate Auto Reboot |
| 167 | [Documentation] Initiate an auto reboot. |
| 168 | |
| 169 | # Set the auto reboot policy. |
| 170 | Set Auto Reboot yes |
| 171 | |
Michael Walsh | ac27551 | 2017-03-07 11:39:28 -0600 | [diff] [blame] | 172 | SSHLibrary.Open connection ${openbmc_host} |
Michael Walsh | 8184377 | 2017-03-02 14:44:44 -0600 | [diff] [blame] | 173 | Login ${openbmc_username} ${openbmc_password} |
| 174 | |
| 175 | # Set the watchdog timer. Note: 5000 = milliseconds which is 5 seconds. |
| 176 | ${cmd_buf}= Catenate /usr/sbin/mapper call /org/openbmc/watchdog/host0 |
| 177 | ... org.openbmc.Watchdog set i 5000 |
| 178 | ${output} ${stderr} ${rc}= Execute Command ${cmd_buf} |
| 179 | ... return_stderr=True return_rc=True |
| 180 | Should Be Empty ${stderr} |
| 181 | Should be equal ${rc} ${0} |
| 182 | |
| 183 | # Start the watchdog. |
| 184 | ${cmd_buf}= Catenate /usr/sbin/mapper call /org/openbmc/watchdog/host0 |
| 185 | ... org.openbmc.Watchdog start |
| 186 | ${output} ${stderr} ${rc}= Execute Command ${cmd_buf} |
| 187 | ... return_stderr=True return_rc=True |
| 188 | Should Be Empty ${stderr} |
| 189 | Should be equal ${rc} ${0} |
| 190 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 191 | Trigger Warm Reset |
| 192 | log to console "Triggering warm reset" |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 193 | ${data}= create dictionary data=@{EMPTY} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 194 | ${resp}= openbmc post request |
| 195 | ... ${OPENBMC_BASE_URI}control/bmc0/action/warmReset data=${data} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 196 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 197 | ${session_active}= Check If warmReset is Initiated |
| 198 | Run Keyword If '${session_active}' == '${True}' |
| 199 | ... Fail msg=warm reset didn't occur |
| 200 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 201 | Sleep ${SYSTEM_SHUTDOWN_TIME}min |
Rahul Maheshwari | 5f253c4 | 2017-01-30 05:19:51 -0600 | [diff] [blame] | 202 | Check If BMC Is Up |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 203 | |
| 204 | Check OS |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 205 | [Documentation] Attempts to ping the host OS and then checks that the host |
| 206 | ... OS is up by running an SSH command. |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 207 | |
| 208 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 209 | ... ${os_password}=${OS_PASSWORD} ${quiet}=${QUIET} |
| 210 | ... ${print_string}=${EMPTY} |
Michael Walsh | ac27551 | 2017-03-07 11:39:28 -0600 | [diff] [blame] | 211 | [Teardown] SSHLibrary.Close Connection |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 212 | |
| 213 | # os_host The DNS name/IP of the OS host associated with our BMC. |
| 214 | # os_username The username to be used to sign on to the OS host. |
| 215 | # 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] | 216 | # quiet Indicates whether this keyword should write to console. |
| 217 | # print_string A string to be printed before checking the OS. |
| 218 | |
| 219 | rprint ${print_string} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 220 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 221 | # Attempt to ping the OS. Store the return code to check later. |
| 222 | ${ping_rc}= Run Keyword and Return Status Ping Host ${os_host} |
| 223 | |
Michael Walsh | ac27551 | 2017-03-07 11:39:28 -0600 | [diff] [blame] | 224 | SSHLibrary.Open connection ${os_host} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 225 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 226 | ${status} ${msg}= Run Keyword And Ignore Error Login ${os_username} |
| 227 | ... ${os_password} |
| 228 | ${err_msg1}= Sprint Error ${msg} |
| 229 | ${err_msg}= Catenate SEPARATOR= \n ${err_msg1} |
| 230 | Run Keyword If '${status}' == 'FAIL' Fail msg=${err_msg} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 231 | ${output} ${stderr} ${rc}= Execute Command uptime return_stderr=True |
| 232 | ... return_rc=True |
| 233 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 234 | ${temp_msg}= Catenate Could not execute a command on the operating |
| 235 | ... system.\n |
| 236 | ${err_msg1}= Sprint Error ${temp_msg} |
| 237 | ${err_msg}= Catenate SEPARATOR= \n ${err_msg1} |
| 238 | |
| 239 | # If the return code returned by "Execute Command" is non-zero, this |
| 240 | # keyword will fail. |
| 241 | Should Be Equal ${rc} ${0} msg=${err_msg} |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 242 | # We will likewise fail if there is any stderr data. |
| 243 | Should Be Empty ${stderr} |
| 244 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 245 | ${temp_msg}= Set Variable Could not ping the operating system.\n |
| 246 | ${err_msg1}= Sprint Error ${temp_msg} |
| 247 | ${err_msg}= Catenate SEPARATOR= \n ${err_msg1} |
| 248 | # We will likewise fail if the OS did not ping, as we could SSH but not |
| 249 | # ping |
| 250 | Should Be Equal As Strings ${ping_rc} ${TRUE} msg=${err_msg} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 251 | |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 252 | Wait for OS |
| 253 | [Documentation] Waits for the host OS to come up via calls to "Check OS". |
| 254 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
| 255 | ... ${os_password}=${OS_PASSWORD} ${timeout}=${OS_WAIT_TIMEOUT} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 256 | ... ${quiet}=${0} |
| 257 | [Teardown] rprintn |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 258 | |
| 259 | # os_host The DNS name or IP of the OS host associated with our |
| 260 | # BMC. |
| 261 | # os_username The username to be used to sign on to the OS host. |
| 262 | # os_password The password to be used to sign on to the OS host. |
| 263 | # timeout The timeout in seconds indicating how long you're |
| 264 | # willing to wait for the OS to respond. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 265 | # quiet Indicates whether this keyword should write to console. |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 266 | |
| 267 | # The interval to be used between calls to "Check OS". |
| 268 | ${interval}= Set Variable 5 |
| 269 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 270 | ${message}= Catenate Checking every ${interval} seconds for up to |
| 271 | ... ${timeout} seconds for the operating system to communicate. |
| 272 | rqprint_timen ${message} |
| 273 | |
Michael Walsh | 49ab0f4 | 2016-07-20 11:44:33 -0500 | [diff] [blame] | 274 | Wait Until Keyword Succeeds ${timeout} sec ${interval} Check OS |
| 275 | ... ${os_host} ${os_username} ${os_password} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 276 | ... print_string=\# |
| 277 | |
| 278 | rqprintn |
| 279 | |
| 280 | rqprint_timen The operating system is now communicating. |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 281 | |
Rahul Maheshwari | 2c72504 | 2017-01-29 22:55:28 -0600 | [diff] [blame] | 282 | Get BMC State Deprecated |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 283 | [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] | 284 | [Arguments] ${quiet}=${QUIET} |
| 285 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 286 | @{arglist}= Create List |
| 287 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 288 | ${resp}= Call Method ${OPENBMC_BASE_URI}managers/System/ getSystemState |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 289 | ... data=${args} quiet=${quiet} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 290 | Should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 291 | ${content}= to json ${resp.content} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 292 | [Return] ${content["data"]} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 293 | |
| 294 | Get Power State |
| 295 | [Documentation] Returns the power state as an integer. Either 0 or 1. |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 296 | [Arguments] ${quiet}=${QUIET} |
| 297 | |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 298 | @{arglist}= Create List |
| 299 | ${args}= Create Dictionary data=@{arglist} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 300 | |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 301 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/chassis0/ getPowerState |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 302 | ... data=${args} quiet=${quiet} |
root | 442f0ef | 2016-08-04 20:23:05 +0000 | [diff] [blame] | 303 | Should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 304 | ${content}= to json ${resp.content} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 305 | [Return] ${content["data"]} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 306 | |
| 307 | Clear BMC Record Log |
| 308 | [Documentation] Clears all the event logs on the BMC. This would be |
| 309 | ... equivalent to ipmitool sel clear. |
| 310 | @{arglist}= Create List |
| 311 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 312 | ${resp}= Call Method |
| 313 | ... ${OPENBMC_BASE_URI}records/events/ clear data=${args} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 314 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 315 | |
| 316 | Copy PNOR to BMC |
| 317 | Import Library SCPLibrary WITH NAME scp |
| 318 | Open Connection for SCP |
| 319 | Log Copying ${PNOR_IMAGE_PATH} to /tmp |
| 320 | scp.Put File ${PNOR_IMAGE_PATH} /tmp |
| 321 | |
| 322 | Flash PNOR |
| 323 | [Documentation] Calls flash bios update method to flash PNOR image |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 324 | [Arguments] ${pnor_image} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 325 | @{arglist}= Create List ${pnor_image} |
| 326 | ${args}= Create Dictionary data=@{arglist} |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 327 | ${resp}= Call Method ${OPENBMC_BASE_URI}control/flash/bios/ update |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 328 | ... data=${args} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 329 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 330 | Wait Until Keyword Succeeds 2 min 10 sec Is PNOR Flashing |
| 331 | |
| 332 | Get Flash BIOS Status |
| 333 | [Documentation] Returns the status of the flash BIOS API as a string. For |
| 334 | ... example 'Flashing', 'Flash Done', etc |
George Keishing | 85ca05e | 2016-11-30 09:47:18 -0600 | [diff] [blame] | 335 | ${data}= Read Properties ${OPENBMC_BASE_URI}control/flash/bios |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 336 | [Return] ${data['status']} |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 337 | |
| 338 | Is PNOR Flashing |
| 339 | [Documentation] Get BIOS 'Flashing' status. This indicates that PNOR |
| 340 | ... flashing has started. |
| 341 | ${status}= Get Flash BIOS Status |
Rahul Maheshwari | 449dfb7 | 2017-05-08 02:06:48 -0500 | [diff] [blame] | 342 | Should Contain ${status} Flashing |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 343 | |
| 344 | Is PNOR Flash Done |
| 345 | [Documentation] Get BIOS 'Flash Done' status. This indicates that the |
| 346 | ... PNOR flashing has completed. |
Leah McNutt | 9ba3227 | 2016-11-17 15:48:39 +0000 | [diff] [blame] | 347 | ${status}= Get Flash BIOS Status |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 348 | should be equal as strings ${status} Flash Done |
| 349 | |
| 350 | Is System State Host Booted |
| 351 | [Documentation] Checks whether system state is HOST_BOOTED. |
Rahul Maheshwari | 2c72504 | 2017-01-29 22:55:28 -0600 | [diff] [blame] | 352 | ${state}= Get BMC State Deprecated |
Jay Azurin | e4c52eb | 2016-08-16 20:51:10 -0500 | [diff] [blame] | 353 | should be equal as strings ${state} HOST_BOOTED |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 354 | |
Rahul Maheshwari | 2c72504 | 2017-01-29 22:55:28 -0600 | [diff] [blame] | 355 | Is OS Starting |
| 356 | [Documentation] Check if boot progress is OS starting. |
| 357 | ${boot_progress}= Get Boot Progress |
| 358 | Should Be Equal ${boot_progress} FW Progress, Starting OS |
| 359 | |
George Keishing | 0af2441 | 2017-03-10 13:33:23 -0600 | [diff] [blame] | 360 | Is OS Off |
| 361 | [Documentation] Check if boot progress is "Off". |
| 362 | ${boot_progress}= Get Boot Progress |
| 363 | Should Be Equal ${boot_progress} Off |
| 364 | |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 365 | Verify Ping and REST Authentication |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 366 | ${l_ping}= Run Keyword And Return Status |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 367 | ... Ping Host ${OPENBMC_HOST} |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 368 | Run Keyword If '${l_ping}' == '${False}' |
| 369 | ... Fail msg=Ping Failed |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 370 | |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 371 | ${l_rest}= Run Keyword And Return Status |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 372 | ... Initialize OpenBMC |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 373 | Run Keyword If '${l_rest}' == '${False}' |
| 374 | ... Fail msg=REST Authentication Failed |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 375 | |
| 376 | # Just to make sure the SSH is working for SCP |
| 377 | Open Connection And Log In |
| 378 | ${system} ${stderr}= Execute Command hostname return_stderr=True |
| 379 | Should Be Empty ${stderr} |
| 380 | |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 381 | Check If BMC is Up |
| 382 | [Documentation] Wait for Host to be online. Checks every X seconds |
| 383 | ... interval for Y minutes and fails if timed out. |
| 384 | ... Default MAX timedout is 10 min, interval 10 seconds. |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 385 | [Arguments] ${max_timeout}=${OPENBMC_REBOOT_TIMEOUT} min |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 386 | ... ${interval}=10 sec |
| 387 | |
| 388 | Wait Until Keyword Succeeds |
| 389 | ... ${max_timeout} ${interval} Verify Ping and REST Authentication |
| 390 | |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 391 | |
| 392 | Check If warmReset is Initiated |
| 393 | [Documentation] Ping would be still alive, so try SSH to connect |
| 394 | ... if fails the ports are down indicating reboot |
| 395 | ... is in progress |
George Keishing | 3c05d35 | 2016-12-13 06:54:50 -0600 | [diff] [blame] | 396 | |
| 397 | # Warm reset adds 3 seconds delay before forcing reboot |
| 398 | # To minimize race conditions, we wait for 7 seconds |
| 399 | Sleep 7s |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 400 | ${alive}= Run Keyword and Return Status |
| 401 | ... Open Connection And Log In |
| 402 | Return From Keyword If '${alive}' == '${False}' ${False} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 403 | [Return] ${True} |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 404 | |
George Keishing | 06ae4aa | 2016-08-30 01:41:28 -0500 | [diff] [blame] | 405 | Flush REST Sessions |
| 406 | [Documentation] Removes all the active session objects |
| 407 | Delete All Sessions |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 408 | |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 409 | Initialize DBUS cmd |
| 410 | [Documentation] Initialize dbus string with property string to extract |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 411 | [Arguments] ${boot_property} |
Michael Walsh | a6723f2 | 2016-11-22 11:12:01 -0600 | [diff] [blame] | 412 | ${cmd}= Catenate ${dbuscmdBase} ${dbuscmdGet} ${dbuscmdString} |
| 413 | ${cmd}= Catenate ${cmd}${boot_property} |
Sivas SRR | e1143ae | 2016-08-26 22:31:02 -0500 | [diff] [blame] | 414 | Set Global Variable ${dbuscmd} ${cmd} |
| 415 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 416 | Create OS Console File Path |
| 417 | [Documentation] Create OS console file path name and return it. |
| 418 | [Arguments] ${log_file_path}=${EMPTY} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 419 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 420 | # Description of arguements: |
| 421 | # file_path The caller's candidate value. If this value is ${EMPTY}, this |
| 422 | # keyword will compose a file path name. Otherwise, this |
| 423 | # keyword will use the caller's file_path value. In either |
| 424 | # case, the value will be returned. |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 425 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 426 | ${default_file_path}= Catenate /tmp/${OPENBMC_HOST}_os_console |
| 427 | ${log_file_path}= Set Variable If '${log_file_path}' == '${EMPTY}' |
| 428 | ... ${default_file_path} ${log_file_path} |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 429 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 430 | [Return] ${log_file_path} |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 431 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 432 | Create OS Console Command String |
| 433 | [Documentation] Return a command string to start OS console logging. |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 434 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 435 | # First make sure that the ssh_pw program is available. |
| 436 | ${cmd_buf}= Catenate which ssh_pw 2>&1 |
| 437 | Rdpissuing ${cmd_buf} |
| 438 | ${rc} ${output}= Run And Return Rc And Output ${cmd_buf} |
| 439 | Rdpvars rc output |
| 440 | Should Be Equal ${rc} ${0} msg=${output}\n |
Gunnar Mills | 9c76034 | 2016-12-08 10:12:06 -0600 | [diff] [blame] | 441 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 442 | ${cmd_buf}= Catenate ssh_pw ${OPENBMC_PASSWORD} -p 2200 |
George Keishing | 1f9ec7f | 2017-06-06 08:59:19 -0500 | [diff] [blame] | 443 | ... -o "StrictHostKeyChecking no" ${OPENBMC_USERNAME}@${OPENBMC_HOST} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 444 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 445 | [Return] ${cmd_buf} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 446 | |
| 447 | Stop SOL Console Logging |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 448 | [Documentation] Stop system console logging and return log output. |
| 449 | [Arguments] ${log_file_path}=${EMPTY} ${targ_file_path}=${EMPTY} |
Michael Walsh | 5f3f414 | 2017-05-22 17:09:47 -0500 | [diff] [blame] | 450 | ... ${return_data}=${1} |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 451 | |
| 452 | # If there are muliple system console processes, they will all be stopped. |
| 453 | # If there is no existing log file this keyword will return an error |
| 454 | # message to that effect (and write that message to targ_file_path, if |
| 455 | # specified). |
| 456 | # NOTE: This keyword will not fail if there is no running system console |
| 457 | # process. |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 458 | |
| 459 | # Description of arguments: |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 460 | # log_file_path The file path that was used to call "Start SOL |
| 461 | # Console Logging". See that keyword (above) for details. |
| 462 | # targ_file_path If specified, the file path to which the source |
| 463 | # file path (i.e. "log_file_path") should be copied. |
Michael Walsh | 5f3f414 | 2017-05-22 17:09:47 -0500 | [diff] [blame] | 464 | # return_data If this is set to ${1}, this keyword will return the SOL |
| 465 | # data to the caller as a unicode string. |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 466 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 467 | ${log_file_path}= Create OS Console File Path ${log_file_path} |
| 468 | # Find the pid of the active system console logging session (if any). |
| 469 | ${search_string}= Create OS Console Command String |
| 470 | ${cmd_buf}= Catenate echo $(ps -ef | egrep '${search_string}' |
| 471 | ... | egrep -v grep | cut -c10-14) |
| 472 | Rdpissuing ${cmd_buf} |
| 473 | ${rc} ${os_con_pid}= Run And Return Rc And Output ${cmd_buf} |
| 474 | Rdpvars os_con_pid |
| 475 | # If rc is not zero it just means that there is no OS Console process |
| 476 | # running. |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 477 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 478 | ${cmd_buf}= Catenate kill -9 ${os_con_pid} |
| 479 | Run Keyword If '${os_con_pid}' != '${EMPTY}' Rdpissuing ${cmd_buf} |
| 480 | ${rc} ${output}= Run Keyword If '${os_con_pid}' != '${EMPTY}' |
| 481 | ... Run And Return Rc And Output ${cmd_buf} |
| 482 | Run Keyword If '${os_con_pid}' != '${EMPTY}' Rdpvars rc output |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 483 | |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 484 | Run Keyword If '${targ_file_path}' != '${EMPTY}' |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 485 | ... Run Keyword And Ignore Error |
| 486 | ... Copy File ${log_file_path} ${targ_file_path} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 487 | |
Michael Walsh | 5f3f414 | 2017-05-22 17:09:47 -0500 | [diff] [blame] | 488 | ${output}= Set Variable ${EMPTY} |
| 489 | ${loc_quiet}= Evaluate ${debug}^1 |
| 490 | ${rc} ${output}= Run Keyword If '${return_data}' == '${1}' |
| 491 | ... Cmd Fnc cat ${log_file_path} quiet=${loc_quiet} print_output=${0} |
| 492 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 493 | [Return] ${output} |
| 494 | |
| 495 | Start SOL Console Logging |
| 496 | [Documentation] Start system console log to file. |
Michael Walsh | 5f3f414 | 2017-05-22 17:09:47 -0500 | [diff] [blame] | 497 | [Arguments] ${log_file_path}=${EMPTY} ${return_data}=${1} |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 498 | |
| 499 | # This keyword will first call "Stop SOL Console Logging". Only then will |
| 500 | # it start SOL console logging. The data returned by "Stop SOL Console |
| 501 | # Logging" will in turn be returned by this keyword. |
| 502 | |
| 503 | # Description of arguments: |
Michael Walsh | 5f3f414 | 2017-05-22 17:09:47 -0500 | [diff] [blame] | 504 | # log_file_path The file path to which system console log data should be |
| 505 | # written. Note that this path is taken to be a location |
| 506 | # on the machine where this program is running rather than |
| 507 | # on the Open BMC system. |
| 508 | # return_data If this is set to ${1}, this keyword will return any SOL |
| 509 | # data to the caller as a unicode string. |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 510 | |
| 511 | ${log_file_path}= Create OS Console File Path ${log_file_path} |
| 512 | |
| 513 | ${log_output}= Stop SOL Console Logging ${log_file_path} |
Michael Walsh | 5f3f414 | 2017-05-22 17:09:47 -0500 | [diff] [blame] | 514 | ... return_data=${return_data} |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 515 | |
| 516 | # Validate by making sure we can create the file. Problems creating the |
| 517 | # file would not be noticed by the subsequent ssh command because we fork |
| 518 | # the command. |
| 519 | Create File ${log_file_path} |
| 520 | ${sub_cmd_buf}= Create OS Console Command String |
| 521 | # Routing stderr to stdout so that any startup error text will go to the |
| 522 | # output file. |
| 523 | ${cmd_buf}= Catenate ${sub_cmd_buf} > ${log_file_path} 2>&1 & |
| 524 | Rdpissuing ${cmd_buf} |
| 525 | ${rc} ${output}= Run And Return Rc And Output ${cmd_buf} |
| 526 | # Because we are forking this command, we essentially will never get a |
| 527 | # non-zero return code or any output. |
| 528 | Should Be Equal ${rc} ${0} |
| 529 | |
| 530 | [Return] ${log_output} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 531 | |
| 532 | Get Time Stamp |
| 533 | [Documentation] Get the current time stamp data |
| 534 | ${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] | 535 | [Return] ${cur_time} |
George Keishing | 30c12ff | 2016-09-02 10:25:29 -0500 | [diff] [blame] | 536 | |
George Keishing | 1b15020 | 2016-09-29 08:51:58 -0500 | [diff] [blame] | 537 | |
| 538 | Verify BMC State |
| 539 | [Documentation] Get the BMC state and verify if the current |
| 540 | ... BMC state is as expected. |
| 541 | [Arguments] ${expected} |
| 542 | |
Rahul Maheshwari | 2c72504 | 2017-01-29 22:55:28 -0600 | [diff] [blame] | 543 | ${current}= Get BMC State Deprecated |
George Keishing | 8db0e1b | 2016-10-20 13:46:54 -0500 | [diff] [blame] | 544 | Should Contain ${expected} ${current} |
George Keishing | 1b15020 | 2016-09-29 08:51:58 -0500 | [diff] [blame] | 545 | |
Rahul Maheshwari | f684ba7 | 2016-10-25 07:24:41 -0500 | [diff] [blame] | 546 | Start Journal Log |
| 547 | [Documentation] Start capturing journal log to a file in /tmp using |
| 548 | ... journalctl command. By default journal log is collected |
| 549 | ... at /tmp/journal_log else user input location. |
| 550 | ... The File is appended with datetime. |
| 551 | [Arguments] ${file_path}=/tmp/journal_log |
| 552 | |
| 553 | Open Connection And Log In |
| 554 | |
| 555 | ${cur_time}= Get Time Stamp |
| 556 | Set Global Variable ${LOG_TIME} ${cur_time} |
| 557 | Start Command |
| 558 | ... journalctl -f > ${file_path}-${LOG_TIME} |
| 559 | Log Journal Log Started: ${file_path}-${LOG_TIME} |
| 560 | |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 561 | |
Rahul Maheshwari | f684ba7 | 2016-10-25 07:24:41 -0500 | [diff] [blame] | 562 | Stop Journal Log |
| 563 | [Documentation] Stop journalctl process if its running. |
| 564 | ... By default return log from /tmp/journal_log else |
| 565 | ... user input location. |
| 566 | [Arguments] ${file_path}=/tmp/journal_log |
| 567 | |
| 568 | Open Connection And Log In |
| 569 | |
| 570 | ${rc}= |
| 571 | ... Execute Command |
| 572 | ... ps ax | grep journalctl | grep -v grep |
| 573 | ... return_stdout=False return_rc=True |
| 574 | |
| 575 | Return From Keyword If '${rc}' == '${1}' |
| 576 | ... No journal log process running |
| 577 | |
| 578 | ${output} ${stderr}= |
| 579 | ... Execute Command killall journalctl |
| 580 | ... return_stderr=True |
| 581 | Should Be Empty ${stderr} |
| 582 | |
| 583 | ${journal_log} ${stderr}= |
| 584 | ... Execute Command |
| 585 | ... cat ${file_path}-${LOG_TIME} |
| 586 | ... return_stderr=True |
| 587 | Should Be Empty ${stderr} |
| 588 | |
| 589 | Log ${journal_log} |
| 590 | |
| 591 | Execute Command rm ${file_path}-${LOG_TIME} |
| 592 | |
| 593 | [Return] ${journal_log} |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 594 | |
| 595 | Mac Address To Hex String |
| 596 | [Documentation] Converts MAC address into hex format. |
| 597 | ... Example |
| 598 | ... Given the following MAC: 00:01:6C:80:02:78 |
| 599 | ... This keyword will return: 0x00 0x01 0x6C 0x80 0x02 0x78 |
| 600 | ... Description of arguments: |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 601 | ... i_macaddress MAC address in the following format |
| 602 | ... 00:01:6C:80:02:78 |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 603 | [Arguments] ${i_macaddress} |
| 604 | |
| 605 | ${mac_hex}= Catenate 0x${i_macaddress.replace(':', ' 0x')} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 606 | [Return] ${mac_hex} |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 607 | |
| 608 | IP Address To Hex String |
| 609 | [Documentation] Converts IP address into hex format. |
| 610 | ... Example: |
| 611 | ... Given the following IP: 10.3.164.100 |
| 612 | ... This keyword will return: 0xa 0x3 0xa4 0xa0 |
| 613 | ... Description of arguments: |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 614 | ... i_ipaddress IP address in the following format |
| 615 | ... 10.10.10.10 |
Rahul Maheshwari | 757d80c | 2016-10-17 01:09:55 -0500 | [diff] [blame] | 616 | [Arguments] ${i_ipaddress} |
| 617 | |
| 618 | @{ip}= Split String ${i_ipaddress} . |
| 619 | ${index}= Set Variable ${0} |
| 620 | |
| 621 | :FOR ${item} IN @{ip} |
| 622 | \ ${hex}= Convert To Hex ${item} prefix=0x lowercase=yes |
| 623 | \ Set List Value ${ip} ${index} ${hex} |
| 624 | \ ${index}= Set Variable ${index + 1} |
| 625 | ${ip_hex}= Catenate @{ip} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 626 | [Return] ${ip_hex} |
Sivas SRR | ea85d1f | 2016-11-13 22:44:28 -0600 | [diff] [blame] | 627 | |
| 628 | BMC CPU Performance Check |
| 629 | [Documentation] Minimal 10% of proc should be free in this instance |
| 630 | |
| 631 | ${bmc_cpu_usage_output} ${stderr}= Execute Command ${bmc_cpu_usage_cmd} |
| 632 | ... return_stderr=True |
| 633 | Should be empty ${stderr} |
| 634 | ${bmc_cpu_percentage}= Fetch From Left ${bmc_cpu_usage_output} % |
| 635 | Should be true ${bmc_cpu_percentage} < 90 |
| 636 | |
| 637 | BMC Mem Performance Check |
| 638 | [Documentation] Minimal 10% of memory should be free in this instance |
| 639 | |
| 640 | ${bmc_mem_free_output} ${stderr}= Execute Command ${bmc_mem_free_cmd} |
| 641 | ... return_stderr=True |
| 642 | Should be empty ${stderr} |
| 643 | |
| 644 | ${bmc_mem_total_output} ${stderr}= Execute Command ${bmc_mem_total_cmd} |
| 645 | ... return_stderr=True |
| 646 | Should be empty ${stderr} |
| 647 | |
| 648 | ${bmc_mem_percentage}= Evaluate ${bmc_mem_free_output}*100 |
| 649 | ${bmc_mem_percentage}= Evaluate |
| 650 | ... ${bmc_mem_percentage}/${bmc_mem_total_output} |
| 651 | Should be true ${bmc_mem_percentage} > 10 |
| 652 | |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 653 | BMC File System Usage Check |
| 654 | [Documentation] Check the file system space. None should be 100% full |
Sivas SRR | 352bc16 | 2017-02-13 22:12:29 -0600 | [diff] [blame] | 655 | ... except /run/initramfs/ro |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 656 | ${bmc_fs_usage_output} ${stderr}= Execute Command |
| 657 | ... ${bmc_file_system_usage_cmd} return_stderr=True |
| 658 | Should Be Empty ${stderr} |
| 659 | Should Be True ${bmc_fs_usage_output}==0 |
| 660 | |
Sivas SRR | ea85d1f | 2016-11-13 22:44:28 -0600 | [diff] [blame] | 661 | Check BMC CPU Performance |
| 662 | [Documentation] Minimal 10% of proc should be free in 3 sample |
| 663 | :FOR ${var} IN Range 1 4 |
| 664 | \ BMC CPU Performance check |
| 665 | |
| 666 | Check BMC Mem Performance |
| 667 | [Documentation] Minimal 10% of memory should be free |
| 668 | |
| 669 | :FOR ${var} IN Range 1 4 |
| 670 | \ BMC Mem Performance check |
| 671 | |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 672 | Check BMC File System Performance |
| 673 | [Documentation] Check for file system usage for 4 times |
| 674 | |
| 675 | :FOR ${var} IN Range 1 4 |
| 676 | \ BMC File System Usage check |
| 677 | |
Rahul Maheshwari | 63c105b | 2017-05-12 05:13:52 -0500 | [diff] [blame] | 678 | Get URL List |
| 679 | [Documentation] Return list of URLs under given URL. |
| 680 | [Arguments] ${openbmc_url} |
| 681 | # Description of argument(s): |
Michael Walsh | 5f3f414 | 2017-05-22 17:09:47 -0500 | [diff] [blame] | 682 | # openbmc_url URL for list operation (e.g. |
| 683 | # /xyz/openbmc_project/inventory). |
Rahul Maheshwari | 63c105b | 2017-05-12 05:13:52 -0500 | [diff] [blame] | 684 | |
| 685 | ${url_list}= Read Properties ${openbmc_url}/list |
| 686 | [Return] ${url_list} |
| 687 | |
Rahul Maheshwari | 9a8d3b1 | 2016-12-05 04:06:16 -0600 | [diff] [blame] | 688 | Get Endpoint Paths |
| 689 | [Documentation] Returns all url paths ending with given endpoint |
| 690 | ... Example: |
| 691 | ... Given the following endpoint: cpu |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 692 | ... This keyword will return: list of all urls ending with |
| 693 | ... cpu - |
Rahul Maheshwari | 9a8d3b1 | 2016-12-05 04:06:16 -0600 | [diff] [blame] | 694 | ... /org/openbmc/inventory/system/chassis/motherboard/cpu0, |
| 695 | ... /org/openbmc/inventory/system/chassis/motherboard/cpu1 |
| 696 | ... Description of arguments: |
| 697 | ... path URL path for enumeration |
| 698 | ... endpoint string for which url path ending |
| 699 | [Arguments] ${path} ${endpoint} |
| 700 | |
| 701 | ${resp}= Read Properties ${path}/enumerate timeout=30 |
| 702 | log Dictionary ${resp} |
| 703 | |
| 704 | ${list}= Get Dictionary Keys ${resp} |
| 705 | ${resp}= Get Matches ${list} regexp=^.*[0-9a-z_].${endpoint}[0-9]*$ |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 706 | [Return] ${resp} |
Sridevi Ramesh | b96a0c3 | 2016-10-19 05:09:52 -0500 | [diff] [blame] | 707 | |
| 708 | Check Zombie Process |
| 709 | [Documentation] Check if any defunct process exist or not on BMC |
Michael Walsh | 01bd368 | 2017-01-10 11:21:05 -0600 | [diff] [blame] | 710 | ${count} ${stderr} ${rc}= Execute Command ps -o stat | grep Z | wc -l |
Sridevi Ramesh | b96a0c3 | 2016-10-19 05:09:52 -0500 | [diff] [blame] | 711 | ... return_stderr=True return_rc=True |
| 712 | Should Be True ${count}==0 |
| 713 | Should Be Empty ${stderr} |
George Keishing | 5327d01 | 2016-12-08 08:43:29 -0600 | [diff] [blame] | 714 | |
| 715 | Prune Journal Log |
| 716 | [Documentation] Prune archived journal logs. |
| 717 | [Arguments] ${vacuum_size}=1M |
| 718 | |
| 719 | # This keyword can be used to prevent the journal |
| 720 | # log from filling up the /run filesystem. |
| 721 | # This command will retain only the latest logs |
| 722 | # of the user specified size. |
| 723 | |
| 724 | Open Connection And Log In |
| 725 | ${output} ${stderr} ${rc}= |
| 726 | ... Execute Command |
| 727 | ... journalctl --vacuum-size=${vacuum_size} |
| 728 | ... return_stderr=True return_rc=True |
| 729 | |
| 730 | Should Be Equal ${rc} ${0} msg=${stderr} |
Sridevi Ramesh | 1699d37 | 2016-12-06 00:20:22 -0600 | [diff] [blame] | 731 | |
| 732 | Set BMC Power Policy |
| 733 | [Documentation] Set the given BMC power policy. |
| 734 | [arguments] ${policy} |
| 735 | |
| 736 | ${valueDict}= create dictionary data=${policy} |
| 737 | Write Attribute ${HOST_SETTING} power_policy data=${valueDict} |
| 738 | ${currentPolicy}= Read Attribute ${HOST_SETTING} power_policy |
| 739 | Should Be Equal ${currentPolicy} ${policy} |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 740 | |
George Keishing | 4d6f3d6 | 2017-02-06 09:50:41 -0600 | [diff] [blame] | 741 | Get System Power Policy |
| 742 | [Documentation] Get the BMC power policy. |
| 743 | ${currentPolicy}= Read Attribute ${HOST_SETTING} power_policy |
| 744 | [Return] ${currentPolicy} |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 745 | |
Rahul Maheshwari | 1cbf004 | 2017-02-13 05:17:37 -0600 | [diff] [blame] | 746 | Get Auto Reboot |
| 747 | [Documentation] Returns auto reboot setting. |
Sridevi Ramesh | 4dbe659 | 2017-04-06 01:47:52 -0500 | [diff] [blame] | 748 | ${setting}= Read Attribute ${HOST_SETTING} auto_reboot |
Rahul Maheshwari | 1cbf004 | 2017-02-13 05:17:37 -0600 | [diff] [blame] | 749 | [Return] ${setting} |
| 750 | |
| 751 | |
| 752 | Set Auto Reboot |
| 753 | [Documentation] Set the given auto reboot setting. |
| 754 | [Arguments] ${setting} |
| 755 | # setting auto reboot's setting, i.e. yes or no |
| 756 | |
| 757 | ${valueDict}= Set Variable ${setting} |
| 758 | ${data}= Create Dictionary data=${valueDict} |
Sridevi Ramesh | 4dbe659 | 2017-04-06 01:47:52 -0500 | [diff] [blame] | 759 | Write Attribute ${HOST_SETTING} auto_reboot data=${data} |
Rahul Maheshwari | 1cbf004 | 2017-02-13 05:17:37 -0600 | [diff] [blame] | 760 | ${current_setting}= Get Auto Reboot |
| 761 | Should Be Equal ${current_setting} ${setting} |
| 762 | |
| 763 | |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 764 | Set BMC Reset Reference Time |
| 765 | [Documentation] Set current boot time as a reference and increment |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 766 | ... boot count. |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 767 | |
| 768 | ${cur_btime}= Get BMC Boot Time |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 769 | Run Keyword If ${BOOT_TIME} == ${0} and ${BOOT_COUNT} == ${0} |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 770 | ... Set Global Variable ${BOOT_TIME} ${cur_btime} |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 771 | ... ELSE IF ${cur_btime} > ${BOOT_TIME} |
| 772 | ... Run Keywords Set Global Variable ${BOOT_TIME} ${cur_btime} |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 773 | ... AND |
| 774 | ... Set Global Variable ${BOOT_COUNT} ${BOOT_COUNT + 1} |
| 775 | |
George Keishing | cce9df2 | 2017-01-24 06:19:33 -0600 | [diff] [blame] | 776 | Get BMC Boot Time |
| 777 | [Documentation] Get boot time from /proc/stat. |
| 778 | |
| 779 | Open Connection And Log In |
| 780 | ${output} ${stderr}= |
| 781 | ... Execute Command egrep '^btime ' /proc/stat | cut -f 2 -d ' ' |
| 782 | ... return_stderr=True |
| 783 | Should Be Empty ${stderr} |
| 784 | ${btime}= Convert To Integer ${output} |
| 785 | [Return] ${btime} |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 786 | |
George Keishing | ede3000 | 2017-02-02 09:33:07 -0600 | [diff] [blame] | 787 | Execute Command On BMC |
| 788 | [Documentation] Execute given command on BMC and return output. |
| 789 | [Arguments] ${command} |
| 790 | ${stdout} ${stderr}= Execute Command ${command} return_stderr=True |
| 791 | Should Be Empty ${stderr} |
| 792 | [Return] ${stdout} |
David Shaw | ba2d2c2 | 2017-01-23 16:56:38 -0600 | [diff] [blame] | 793 | |
Sridevi Ramesh | ea36b41 | 2017-03-09 04:08:02 -0600 | [diff] [blame] | 794 | |
George Keishing | 7a52022 | 2017-02-27 09:44:30 -0600 | [diff] [blame] | 795 | Enable Core Dump On BMC |
| 796 | [Documentation] Enable core dump collection. |
| 797 | Open Connection And Log In |
| 798 | ${core_pattern}= Execute Command On BMC |
| 799 | ... echo '/tmp/core_%e.%p' | tee /proc/sys/kernel/core_pattern |
| 800 | Should Be Equal As Strings ${core_pattern} /tmp/core_%e.%p |
Rahul Maheshwari | e95622c | 2017-02-24 10:04:29 -0600 | [diff] [blame] | 801 | |
Sivas SRR | 01262bd | 2017-03-19 10:00:23 -0500 | [diff] [blame] | 802 | Get Number Of BMC Core Dump Files |
| 803 | [Documentation] Get number of core dump files on BMC. |
| 804 | Open Connection And Log In |
| 805 | ${num_of_core_dump}= Execute Command |
| 806 | ... ls /tmp/core* 2>/dev/null | wc -l |
| 807 | [Return] ${num_of_core_dump} |
| 808 | |
| 809 | Set Core Dump File Size Unlimited |
| 810 | [Documentation] Set core dump file size to unlimited. |
| 811 | Open Connection And Log In |
| 812 | Execute Command On BMC |
| 813 | ... ulimit -c unlimited |
| 814 | |
| 815 | Check For Core Dumps |
| 816 | [Documentation] Check for any core dumps exist. |
| 817 | ${output}= Get Number Of BMC Core Dump Files |
| 818 | Run Keyword If ${output} > 0 |
| 819 | ... Log **Warning** BMC core dump files exist level=WARN |
| 820 | |
Rahul Maheshwari | e95622c | 2017-02-24 10:04:29 -0600 | [diff] [blame] | 821 | Trigger Host Watchdog Error |
| 822 | [Documentation] Inject host watchdog error using BMC. |
| 823 | [Arguments] ${milliseconds}=1000 ${sleep_time}=5s |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 824 | # Description of argument(s): |
| 825 | # milliseconds The time watchdog timer value in milliseconds (e.g. 1000 = |
| 826 | # 1 second). |
Rahul Maheshwari | e95622c | 2017-02-24 10:04:29 -0600 | [diff] [blame] | 827 | # sleep_time Time delay for host watchdog error to get injected. |
| 828 | # Default is 5 seconds. |
| 829 | |
| 830 | Execute Command On BMC |
| 831 | ... /usr/sbin/mapper call /org/openbmc/watchdog/host0 org.openbmc.Watchdog set i ${milliseconds} |
| 832 | Execute Command On BMC |
| 833 | ... /usr/sbin/mapper call /org/openbmc/watchdog/host0 org.openbmc.Watchdog start |
| 834 | Sleep ${sleep_time} |
Prashanth Katti | ae7c228 | 2017-03-15 07:43:46 -0500 | [diff] [blame] | 835 | |
| 836 | Login To OS Host |
| 837 | [Documentation] Login to OS Host. |
| 838 | [Arguments] ${os_host}=${OS_HOST} ${os_username}=${OS_USERNAME} |
| 839 | ... ${os_password}=${OS_PASSWORD} |
| 840 | # Desription of arguments: |
| 841 | # ${os_host} IP address of the OS Host. |
| 842 | # ${os_username} OS Host Login user name. |
| 843 | # ${os_password} OS Host Login passwrd. |
| 844 | |
| 845 | ${os_state}= Run Keyword And Return Status Ping Host ${os_host} |
| 846 | Run Keyword If '${os_state}' == 'False' |
| 847 | ... Run Keywords Initiate Host Reboot AND |
| 848 | ... Is Host Running AND |
| 849 | ... Wait for OS ${os_host} ${os_username} ${os_password} |
| 850 | |
| 851 | Open Connection ${os_host} |
Sridevi Ramesh | ea36b41 | 2017-03-09 04:08:02 -0600 | [diff] [blame] | 852 | ${resp}= Login ${os_username} ${os_password} |
| 853 | [Return] ${resp} |
Prashanth Katti | 884ee06 | 2017-03-16 05:05:03 -0500 | [diff] [blame] | 854 | |
| 855 | Configure Initial Settings |
| 856 | [Documentation] Restore old IP and route. |
| 857 | ... This keyword requires initial settings viz IP address, |
| 858 | ... Network Mask, default gatway and serial console IP and port |
| 859 | ... information which should be provided in command line. |
| 860 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 861 | [Arguments] ${host}=${OPENBMC_HOST} ${mask}=${NET_MASK} |
| 862 | ... ${gw_ip}=${GW_IP} |
Prashanth Katti | 884ee06 | 2017-03-16 05:05:03 -0500 | [diff] [blame] | 863 | |
Michael Walsh | b5839d0 | 2017-04-12 16:11:20 -0500 | [diff] [blame] | 864 | # Open telnet connection and ignore the error, in case telnet session is |
| 865 | # already opened by the program calling this keyword. |
Prashanth Katti | 884ee06 | 2017-03-16 05:05:03 -0500 | [diff] [blame] | 866 | |
| 867 | Run Keyword And Ignore Error Open Telnet Connection to BMC Serial Console |
| 868 | Telnet.write ifconfig eth0 ${host} netmask ${mask} |
| 869 | Telnet.write route add default gw ${gw_ip} |
George Keishing | d05b108 | 2017-03-24 05:27:32 -0500 | [diff] [blame] | 870 | |
| 871 | Install Debug Tarball On BMC |
George Keishing | 5544182 | 2017-05-18 14:17:59 -0500 | [diff] [blame] | 872 | [Documentation] Copy the debug tar file to BMC and install. |
| 873 | [Arguments] ${tarball_file_path}=${EXECDIR}/obmc-phosphor-debug-tarball-witherspoon.tar.xz |
| 874 | ... ${targ_tarball_dir_path}=/home/root/tarball/ |
George Keishing | d05b108 | 2017-03-24 05:27:32 -0500 | [diff] [blame] | 875 | |
George Keishing | 5544182 | 2017-05-18 14:17:59 -0500 | [diff] [blame] | 876 | # Description of arguments: |
| 877 | # tarball_file_path Path of the debug tarball file. |
| 878 | # The tar file is downloaded from the build page |
| 879 | # https://openpower.xyz/job/openbmc-build/ |
| 880 | # obmc-phosphor-debug-tarball-witherspoon.tar.xz |
| 881 | # |
| 882 | # targ_tarball_dir_path The directory path where the tarball is to be |
| 883 | # installed. |
| 884 | |
| 885 | OperatingSystem.File Should Exist ${tarball_file_path} |
| 886 | ... msg=${tarball_file_path} doesn't exist. |
| 887 | |
| 888 | # Upload the file to BMC. |
George Keishing | d05b108 | 2017-03-24 05:27:32 -0500 | [diff] [blame] | 889 | Import Library SCPLibrary WITH NAME scp |
| 890 | Open Connection for SCP |
George Keishing | 5544182 | 2017-05-18 14:17:59 -0500 | [diff] [blame] | 891 | scp.Put File ${tarball_file_path} /tmp/debug-tarball.tar.xz |
| 892 | |
| 893 | # Create tarball directory and install. |
George Keishing | d05b108 | 2017-03-24 05:27:32 -0500 | [diff] [blame] | 894 | Open Connection And Log In |
George Keishing | 5544182 | 2017-05-18 14:17:59 -0500 | [diff] [blame] | 895 | Execute Command On BMC mkdir -p ${targ_tarball_dir_path} |
| 896 | Execute Command On BMC |
| 897 | ... tar -xf /tmp/debug-tarball.tar.xz -C ${targ_tarball_dir_path} |
| 898 | |
| 899 | # Create symlink to callout-test binary. |
| 900 | Execute Command On BMC |
| 901 | ... ln -s ${targ_tarball_dir_path}/bin/callout-test /usr/bin/callout-test |
| 902 | |
George Keishing | 4fc998b | 2017-05-26 05:24:12 -0500 | [diff] [blame] | 903 | # Create symlink to logging-test binary. |
| 904 | Execute Command On BMC |
| 905 | ... ln -s ${targ_tarball_dir_path}/bin/logging-test /usr/bin/logging-test |
| 906 | |
George Keishing | d05b108 | 2017-03-24 05:27:32 -0500 | [diff] [blame] | 907 | # Remove the tarball file from BMC |
| 908 | Execute Command On BMC rm /tmp/debug-tarball.tar.xz |
| 909 | |
George Keishing | 5544182 | 2017-05-18 14:17:59 -0500 | [diff] [blame] | 910 | |
Sweta Potthuri | 025e012 | 2017-02-21 00:42:48 -0600 | [diff] [blame] | 911 | Get BMC Boot Count |
| 912 | [Documentation] Get BMC boot count based on boot time. |
| 913 | ${cur_btime}= Get BMC Boot Time |
| 914 | |
| 915 | # Set global variable BOOT_TIME to current boot time if current boot time |
| 916 | # is changed. Also increase value of global variable BOOT_COUNT by 1. |
| 917 | Run Keyword If ${cur_btime} > ${BOOT_TIME} |
| 918 | ... Run Keywords Set Global Variable ${BOOT_TIME} ${cur_btime} |
| 919 | ... AND |
| 920 | ... Set Global Variable ${BOOT_COUNT} ${BOOT_COUNT + 1} |
| 921 | [Return] ${BOOT_COUNT} |
| 922 | |
| 923 | Set BMC Boot Count |
| 924 | [Documentation] Set BMC boot count to given value. |
| 925 | [Arguments] ${count} |
| 926 | |
| 927 | # Description of arguments: |
| 928 | # count boot count value. |
| 929 | ${cur_btime}= Get BMC Boot Time |
| 930 | |
| 931 | # Set global variable BOOT_COUNT to given value. |
| 932 | Set Global Variable ${BOOT_COUNT} ${count} |
| 933 | |
| 934 | # Set BOOT_TIME variable to current boot time. |
| 935 | Set Global Variable ${BOOT_COUNT} ${count} |
Michael Walsh | 689fbbe | 2017-04-04 17:58:03 -0500 | [diff] [blame] | 936 | |
Sunil M | acd110a | 2017-05-23 04:14:32 -0500 | [diff] [blame] | 937 | Check And Reset MAC |
| 938 | [Documentation] Update BMC with user input MAC address. |
| 939 | [Arguments] ${mac_address}=${MAC_ADDRESS} |
| 940 | |
| 941 | # Description of argument(s): |
| 942 | # mac_address The mac address (e.g. 00:01:6c:80:02:28). |
| 943 | |
| 944 | Should Not Be Empty ${mac_address} |
| 945 | Open Connection And Log In |
| 946 | ${bmc_mac_addr}= Execute Command On BMC cat /sys/class/net/eth0/address |
| 947 | Run Keyword If '${mac_address}' != '${bmc_mac_addr}' |
| 948 | ... Set MAC Address |
| 949 | |
| 950 | Set MAC Address |
| 951 | [Documentation] Update eth0 with input MAC address. |
| 952 | [Arguments] ${mac_address}=${MAC_ADDRESS} |
| 953 | |
| 954 | # Description of argument(s): |
| 955 | # mac_address The mac address (e.g. 00:01:6c:80:02:28). |
| 956 | Write fw_setenv ethaddr ${mac_address} |
| 957 | Run Key U OBMC Boot Test \ OBMC Reboot (off) |
| 958 | ${bmc_mac_addr}= Execute Command On BMC cat /sys/class/net/eth0/address |
| 959 | Should Be Equal ${bmc_mac_addr} ${mac_address} |
| 960 | |
Michael Walsh | 689fbbe | 2017-04-04 17:58:03 -0500 | [diff] [blame] | 961 | ############################################################################### |
| 962 | Delete Error logs |
| 963 | [Documentation] Delete error logs. |
| 964 | |
| 965 | # The REST method to delete error openbmc/openbmc#1327 |
| 966 | # until then using logging restart. |
| 967 | Open Connection And Log In |
| 968 | Execute Command On BMC |
| 969 | ... systemctl restart xyz.openbmc_project.Logging.service |
| 970 | Sleep 10s reason=Wait for logging service to restart properly. |
George Keishing | db34c2f | 2017-04-18 13:20:25 -0500 | [diff] [blame] | 971 | |
| 972 | ############################################################################### |
| 973 | Delete Error log Entry |
| 974 | [Documentation] Delete error log entry. |
| 975 | [Arguments] ${entry_path} |
| 976 | |
| 977 | # Description of argument(s): |
| 978 | # entry_path Delete an error log entry. |
| 979 | # Ex. /xyz/openbmc_project/logging/entry/1 |
| 980 | |
| 981 | ${data}= Create Dictionary data=@{EMPTY} |
| 982 | ${resp}= Openbmc Delete Request ${entry_path} data=${data} |
| 983 | Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
Rahul Maheshwari | 43be693 | 2017-05-01 02:37:06 -0500 | [diff] [blame] | 984 | |
| 985 | |
| 986 | Get LED State XYZ |
| 987 | [Documentation] Returns state of given LED. |
| 988 | [Arguments] ${led_name} |
| 989 | # Description of argument(s): |
| 990 | # led_name Name of LED |
| 991 | |
| 992 | ${state}= Read Attribute ${LED_GROUPS_URI}${led_name} Asserted |
| 993 | [Return] ${state} |