Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 2 | Documentation This suite is used for testing eventlog association. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 3 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 4 | Resource ../lib/rest_client.robot |
| 5 | Resource ../lib/utils.robot |
| 6 | Resource ../lib/connection_client.robot |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 7 | Resource ../lib/openbmc_ffdc.robot |
George Keishing | 29ef22d | 2017-01-30 09:11:29 -0600 | [diff] [blame] | 8 | Resource ../lib/state_manager.robot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 9 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 10 | Library Collections |
| 11 | |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 12 | Suite Setup Suite Initialization Setup |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 13 | Suite Teardown Close All Connections |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 14 | |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 15 | Test Teardown FFDC On Test Case Fail |
Sridevi Ramesh | 066a7b1 | 2017-01-19 10:01:28 -0600 | [diff] [blame] | 16 | Force Tags Association |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 17 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 18 | *** Variables *** |
| 19 | |
| 20 | ${SYSTEM_SHUTDOWN_TIME} 1min |
| 21 | |
| 22 | ${WAIT_FOR_SERVICES_UP} 3min |
| 23 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 24 | ${EVENT_RECORD} ${RECORDS_URI}events/ |
| 25 | ${DIMM_PREFIX} ${INVENTORY_URI}system/chassis/motherboard/ |
| 26 | ${DIMM1_URI} ${DIMM_PREFIX}dimm1 |
| 27 | ${DIMM2_URI} ${DIMM_PREFIX}dimm2 |
| 28 | ${DIMM3_URI} ${DIMM_PREFIX}dimm3 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 29 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 30 | ${BUSCTL_PREFIX} busctl call ${OPENBMC_BASE_DBUS}.records.events |
| 31 | ... ${OPENBMC_BASE_URI}records/events |
| 32 | ... ${OPENBMC_BASE_DBUS}.recordlog |
| 33 | ... acceptHostMessage sssay "Error" |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 34 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 35 | ${CREATE_ERROR_SINGLE_FRU} ${BUSCTL_PREFIX} "Testing failure" |
| 36 | ... "${DIMM1_URI}" 1 1 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 37 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 38 | ${CREATE_ERROR_INVALID_FRU} ${BUSCTL_PREFIX} "Testing with invalid FRU" |
| 39 | ... "abc" 1 1 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 40 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 41 | ${CREATE_ERROR_NO_FRU} ${BUSCTL_PREFIX} "Testing with no fru" "" 1 1 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 42 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 43 | ${CREATE_ERROR_VIRTUAL_SENSOR} ${BUSCTL_PREFIX} |
| 44 | ... "Testing with a virtual sensor" |
| 45 | ... "${INVENTORY_URI}system/systemevent " 1 1 |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 46 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 47 | &{NIL} data=@{EMPTY} |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 48 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 49 | *** Test Cases *** |
| 50 | |
| 51 | Create error log on single FRU |
| 52 | [Documentation] ***GOOD PATH*** |
| 53 | ... Create an error log on single FRU and verify |
| 54 | ... its association.\n |
George Keishing | 97651c7 | 2016-10-04 00:44:15 -0500 | [diff] [blame] | 55 | [Tags] Create_error_log_on_single_FRU |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 56 | |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 57 | Run Keyword And Continue On Failure Clear all logs |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 58 | |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 59 | ${elog} ${stderr}= |
| 60 | ... Execute Command ${CREATE_ERROR_SINGLE_FRU} |
| 61 | ... return_stderr=True |
| 62 | Should Be Empty ${stderr} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 63 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 64 | ${log_list}= Get EventList |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 65 | Should Contain '${log_list}' ${elog.strip('q ')} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 66 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 67 | ${association_uri}= |
| 68 | ... catenate SEPARATOR= ${EVENT_RECORD}${elog.strip('q ')} /fru |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 69 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 70 | ${association_content}= |
| 71 | ... Read Attribute ${association_uri} endpoints |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 72 | Should Contain ${association_content} ${DIMM1_URI} |
| 73 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 74 | ${dimm1_event}= Read Attribute ${DIMM1_URI}/event endpoints |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 75 | Should Contain ${dimm1_event} ${log_list[0]} |
| 76 | |
| 77 | |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 78 | Create Error Log On Two FRU |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 79 | [Documentation] ***GOOD PATH*** |
| 80 | ... Create an error log on two FRUs and verify |
| 81 | ... its association.\n |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 82 | [Tags] Create_Error_Log_On_Two_FRU |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 83 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 84 | ${log_uri}= Create a test log |
| 85 | ${association_uri}= catenate SEPARATOR= ${log_uri} /fru |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 86 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 87 | ${association_content}= Read Attribute ${association_uri} endpoints |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 88 | Should Contain ${association_content} ${DIMM3_URI} |
| 89 | Should Contain ${association_content} ${DIMM2_URI} |
| 90 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 91 | ${dimm3_event}= Read Attribute ${DIMM3_URI}/event endpoints |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 92 | Should Contain ${dimm3_event} ${log_uri} |
| 93 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 94 | ${dimm2_event}= Read Attribute ${DIMM2_URI}/event endpoints |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 95 | Should Contain ${dimm2_event} ${log_uri} |
| 96 | |
| 97 | |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 98 | Create Multiple Error Logs |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 99 | [Documentation] ***GOOD PATH*** |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 100 | ... Create multiple error logs and verify |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 101 | ... their association.\n |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 102 | [Tags] Create_Multiple_Error_Logs |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 103 | |
| 104 | : FOR ${INDEX} IN RANGE 1 4 |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 105 | \ Log ${INDEX} |
| 106 | \ ${log_uri}= Create a test log |
| 107 | \ ${association_uri}= catenate SEPARATOR= ${log_uri} /fru |
| 108 | \ ${association_content}= |
| 109 | ... Read Attribute ${association_uri} endpoints |
| 110 | \ Should Contain ${association_content} ${DIMM3_URI} |
| 111 | \ Should Contain ${association_content} ${DIMM2_URI} |
| 112 | \ ${dimm3_event}= Read Attribute ${DIMM3_URI}/event endpoints |
| 113 | \ Should Contain ${dimm3_event} ${log_uri} |
| 114 | \ ${dimm2_event}= Read Attribute ${DIMM2_URI}/event endpoints |
| 115 | \ Should Contain ${dimm2_event} ${log_uri} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 116 | |
| 117 | |
| 118 | Delete error log |
| 119 | [Documentation] ***BAD PATH*** |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 120 | ... Delete an error log and verify that its |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 121 | ... association is also removed.\n |
George Keishing | 97651c7 | 2016-10-04 00:44:15 -0500 | [diff] [blame] | 122 | [Tags] Delete_error_log |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 123 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 124 | ${log_uri1}= Create a test log |
| 125 | ${association_uri1}= catenate SEPARATOR= ${log_uri1} /fru |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 126 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 127 | ${log_uri2}= Create a test log |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 128 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 129 | ${del_uri}= catenate SEPARATOR= ${log_uri1} /action/delete |
| 130 | ${resp}= openbmc post request ${del_uri} data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 131 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 132 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 133 | ${resp}= openbmc get request ${association_uri1} |
| 134 | ${jsondata}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 135 | Should Contain ${jsondata['message']} 404 Not Found |
| 136 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 137 | ${dimm3_event}= Read Attribute ${DIMM3_URI}/event endpoints |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 138 | Should Not Contain ${dimm3_event} ${log_uri1} |
| 139 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 140 | ${dimm2_event}= Read Attribute ${DIMM2_URI}/event endpoints |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 141 | Should Not Contain ${dimm2_event} ${log_uri1} |
| 142 | |
| 143 | |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 144 | Association With Invalid FRU |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 145 | [Documentation] ***BAD PATH*** |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 146 | ... Create an error log on invalid FRU and verify |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 147 | ... that its does not have any association.\n |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 148 | [Tags] Association_With_Invalid_FRU |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 149 | |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 150 | Run Keyword And Continue On Failure Clear all logs |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 151 | |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 152 | ${elog} ${stderr}= |
| 153 | ... Execute Command ${CREATE_ERROR_INVALID_FRU} |
| 154 | ... return_stderr=True |
| 155 | Should Be Empty ${stderr} |
| 156 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 157 | ${log_list}= Get EventList |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 158 | Should Contain '${log_list}' ${elog.strip('q ')} |
| 159 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 160 | ${association_uri}= |
| 161 | ... catenate SEPARATOR= ${EVENT_RECORD}${elog.strip('q ')} /fru |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 162 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 163 | ${resp}= openbmc get request ${association_uri} |
| 164 | ${jsondata}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 165 | Should Contain ${jsondata['message']} 404 Not Found |
| 166 | |
| 167 | |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 168 | Association With No FRU Error Event |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 169 | [Documentation] ***BAD PATH*** |
| 170 | ... Create an error log on no FRU and verify |
| 171 | ... that its does not have any association.\n |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 172 | [Tags] Association_With_No_FRU_Error_Event |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 173 | |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 174 | Run Keyword And Continue On Failure Clear all logs |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 175 | |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 176 | ${elog} ${stderr}= |
| 177 | ... Execute Command ${CREATE_ERROR_NO_FRU} |
| 178 | ... return_stderr=True |
| 179 | Should Be Empty ${stderr} |
| 180 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 181 | ${log_list}= Get EventList |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 182 | Should Contain '${log_list}' ${elog.strip('q ')} |
| 183 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 184 | ${association_uri}= |
| 185 | ... catenate SEPARATOR= ${EVENT_RECORD}${elog.strip('q ')} /fru |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 186 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 187 | ${resp}= openbmc get request ${association_uri} |
| 188 | ${jsondata}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 189 | Should Contain ${jsondata['message']} 404 Not Found |
| 190 | |
| 191 | |
| 192 | Association with virtual sensor |
| 193 | [Documentation] ***GOOD PATH*** |
| 194 | ... Create an error log on virtual sensor and |
| 195 | ... verify its association.\n |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 196 | [Tags] Association_With_Virtual_Sensor |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 197 | |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 198 | Run Keyword And Continue On Failure Clear all logs |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 199 | |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 200 | ${elog} ${stderr}= |
| 201 | ... Execute Command ${CREATE_ERROR_VIRTUAL_SENSOR} |
| 202 | ... return_stderr=True |
| 203 | Should Be Empty ${stderr} |
| 204 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 205 | ${log_list}= Get EventList |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 206 | Should Contain '${log_list}' ${elog.strip('q ')} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 207 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 208 | ${association_uri}= |
| 209 | ... catenate SEPARATOR= ${EVENT_RECORD}${elog.strip('q ')} /fru |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 210 | |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 211 | ${association_content}= |
| 212 | ... Read Attribute ${association_uri} endpoints |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 213 | Should Contain |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 214 | ... ${association_content} |
| 215 | ... ${OPENBMC_BASE_URI}inventory/system/systemevent |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 216 | |
Sridevi Ramesh | 32c93f4 | 2017-01-19 06:36:54 -0600 | [diff] [blame] | 217 | Association Unchanged After Reboot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 218 | [Documentation] ***GOOD PATH*** |
| 219 | ... This test case is to verify that error log association |
| 220 | ... does not change after open bmc reboot.\n |
George Keishing | 930dcc0 | 2016-10-13 06:31:21 -0500 | [diff] [blame] | 221 | [Tags] bmcreboot Association_Unchanged_After_Reboot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 222 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 223 | ${pre_reboot_log_uri}= Create a test log |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 224 | ${association_uri}= |
George Keishing | 930dcc0 | 2016-10-13 06:31:21 -0500 | [diff] [blame] | 225 | ... catenate SEPARATOR= ${pre_reboot_log_uri} /fru |
| 226 | ${pre_reboot_association_content} = |
| 227 | ... Read Attribute ${association_uri} endpoints |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 228 | |
George Keishing | 29ef22d | 2017-01-30 09:11:29 -0600 | [diff] [blame] | 229 | Initiate Host PowerOff |
George Keishing | f88767a | 2016-11-17 01:58:05 -0600 | [diff] [blame] | 230 | |
Sridevi Ramesh | 742b3b5 | 2017-02-05 12:14:33 -0600 | [diff] [blame] | 231 | Initiate BMC Reboot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 232 | |
George Keishing | 29ef22d | 2017-01-30 09:11:29 -0600 | [diff] [blame] | 233 | Wait Until Keyword Succeeds 10 min 10 sec Is BMC Ready |
George Keishing | 17982fb | 2016-11-08 04:59:37 -0600 | [diff] [blame] | 234 | |
George Keishing | 930dcc0 | 2016-10-13 06:31:21 -0500 | [diff] [blame] | 235 | ${post_reboot_association_content} = |
| 236 | ... Read Attribute ${association_uri} endpoints |
| 237 | Should Be Equal |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 238 | ... ${post_reboot_association_content} |
| 239 | ... ${pre_reboot_association_content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 240 | |
George Keishing | 930dcc0 | 2016-10-13 06:31:21 -0500 | [diff] [blame] | 241 | ${post_reboot_dimm3_event} = |
| 242 | ... Read Attribute ${DIMM3_URI}/event endpoints |
| 243 | Should Contain |
| 244 | ... ${post_reboot_dimm3_event} ${pre_reboot_log_uri} |
| 245 | ${post_reboot_dimm2_event} = |
| 246 | ... Read Attribute ${DIMM2_URI}/event endpoints |
| 247 | Should Contain |
| 248 | ... ${post_reboot_dimm2_event} ${pre_reboot_log_uri} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 249 | |
| 250 | *** Keywords *** |
| 251 | |
| 252 | Get EventList |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 253 | ${resp}= openbmc get request ${EVENT_RECORD} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 254 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 255 | ${jsondata}= to json ${resp.content} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 256 | [Return] ${jsondata['data']} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 257 | |
| 258 | Create a test log |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 259 | [Arguments] |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 260 | ${data}= create dictionary data=@{EMPTY} |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 261 | ${resp}= openbmc post request |
| 262 | ... ${EVENT_RECORD}action/acceptTestMessage data=${data} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 263 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 264 | ${json}= to json ${resp.content} |
| 265 | ${LOGID}= convert to integer ${json['data']} |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 266 | ${uri}= catenate SEPARATOR= ${EVENT_RECORD} ${LOGID} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 267 | [Return] ${uri} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 268 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 269 | Clear all logs |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 270 | ${resp}= openbmc post request |
| 271 | ... ${EVENT_RECORD}action/clear data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 272 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
George Keishing | 7446eed | 2016-12-02 04:28:38 -0600 | [diff] [blame] | 273 | ${resp}= openbmc get request ${EVENT_RECORD} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 274 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 275 | Should Be Empty ${json['data']} |
George Keishing | d434c51 | 2016-10-07 06:46:29 -0500 | [diff] [blame] | 276 | |
| 277 | Suite Initialization Setup |
| 278 | Open Connection And Log In |
| 279 | Run Keyword And Continue On Failure Clear all logs |