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 the error logging |
| 3 | ... capability from the host |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 4 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 5 | Resource ../lib/rest_client.robot |
| 6 | Resource ../lib/utils.robot |
| 7 | Resource ../lib/connection_client.robot |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 8 | Resource ../lib/openbmc_ffdc.robot |
George Keishing | f88767a | 2016-11-17 01:58:05 -0600 | [diff] [blame] | 9 | Resource ../lib/boot/boot_resource_master.robot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 10 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 11 | Library Collections |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 12 | |
George Keishing | 4d6c1da | 2016-07-15 05:51:22 -0500 | [diff] [blame] | 13 | Suite Setup Open Connection And Log In |
| 14 | Suite Teardown Close All Connections |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 15 | Test Teardown FFDC On Test Case Fail |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 16 | |
Sridevi Ramesh | 066a7b1 | 2017-01-19 10:01:28 -0600 | [diff] [blame] | 17 | Force Tags Event_Logging |
| 18 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 19 | *** Variables *** |
| 20 | &{NIL} data=@{EMPTY} |
| 21 | ${SYSTEM_SHUTDOWN_TIME} 1min |
| 22 | ${WAIT_FOR_SERVICES_UP} 3min |
| 23 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 24 | ${EVENT_RECORD} ${RECORDS_URI}events/ |
| 25 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 26 | *** Test Cases *** |
| 27 | |
| 28 | valid path to logs |
| 29 | [Documentation] Test list all events |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 30 | [Tags] CI |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 31 | ${resp}= openbmc get request ${EVENT_RECORD} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 32 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 33 | |
| 34 | clear any logs |
| 35 | [Documentation] Test delete all events |
George Keishing | 97651c7 | 2016-10-04 00:44:15 -0500 | [diff] [blame] | 36 | [Tags] CI clear_any_logs |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 37 | ${resp}= openbmc post request ${EVENT_RECORD}action/clear data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 38 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 39 | ${resp}= openbmc get request ${EVENT_RECORD} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 40 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 41 | Should Be Empty ${json['data']} |
| 42 | |
| 43 | write a log |
| 44 | [Documentation] Test create event |
George Keishing | 97651c7 | 2016-10-04 00:44:15 -0500 | [diff] [blame] | 45 | [Tags] CI write_a_log |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 46 | create a test log |
| 47 | |
| 48 | Message attribute should match |
| 49 | [Documentation] Check message attribute for created event |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 50 | [Tags] CI |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 51 | ${uri}= create a test log |
| 52 | ${content}= Read Attribute ${uri} message |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 53 | Should Be Equal ${content} A Test event log just happened |
| 54 | |
| 55 | Severity attribute should match |
| 56 | [Documentation] Check severity attribute for created event |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 57 | [Tags] CI |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 58 | ${uri}= create a test log |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 59 | ${content}= Read Attribute ${uri} severity |
| 60 | Should Be Equal ${content} Info |
| 61 | |
| 62 | data_bytes attribute should match |
| 63 | [Documentation] Check data_bytes attribute for created event |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 64 | [Tags] CI |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 65 | @{data_list}= Create List ${48} ${0} ${19} ${127} ${136} ${255} |
| 66 | ${uri}= create a test log |
| 67 | ${content}= Read Attribute ${uri} debug_data |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 68 | Lists Should Be Equal ${content} ${data_list} |
| 69 | |
| 70 | delete the log |
| 71 | [Documentation] Test the delete event |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 72 | [Tags] CI |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 73 | ${uri}= create a test log |
| 74 | ${deluri}= catenate SEPARATOR= ${uri} /action/delete |
| 75 | ${resp}= openbmc post request ${deluri} data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 76 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 77 | ${resp}= openbmc get request ${deluri} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 78 | should be equal as strings ${resp.status_code} ${HTTP_NOT_FOUND} |
| 79 | |
| 80 | 2nd delete should fail |
| 81 | [Documentation] Negative scnenario to delete already deleted event |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 82 | [Tags] CI |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 83 | ${uri}= create a test log |
| 84 | ${deluri}= catenate SEPARATOR= ${uri} /action/delete |
| 85 | ${resp}= openbmc post request ${deluri} data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 86 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 87 | ${resp}= openbmc post request ${deluri} data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 88 | should be equal as strings ${resp.status_code} ${HTTP_NOT_FOUND} |
| 89 | |
| 90 | Intermixed delete |
George Keishing | 70490c3 | 2016-09-20 10:55:46 -0500 | [diff] [blame] | 91 | [Documentation] This testcase does the following sequence |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 92 | ... Steps: |
| 93 | ... write three logs |
| 94 | ... delete middle log |
| 95 | ... middle log should not exist |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 96 | [Tags] CI |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 97 | ${event1}= create a test log |
| 98 | ${event2}= create a test log |
| 99 | ${event3}= create a test log |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 100 | ${deluri}= catenate SEPARATOR= ${event2} /action/delete |
| 101 | ${resp}= openbmc post request ${deluri} data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 102 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
George Keishing | 70490c3 | 2016-09-20 10:55:46 -0500 | [diff] [blame] | 103 | ${resp}= openbmc get request ${event2} |
| 104 | should be equal as strings ${resp.status_code} ${HTTP_NOT_FOUND} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 105 | |
George Keishing | bf5442c | 2016-12-06 01:57:44 -0600 | [diff] [blame] | 106 | Test Event Logs Persistency |
| 107 | [Documentation] Create event logs, restart the event service |
| 108 | ... and verify if logs persist. |
| 109 | [Tags] CI Test_Event_Logs_Persistency |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 110 | ${resp}= openbmc get request ${EVENT_RECORD} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 111 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 112 | ${logs_pre_restart}= set variable ${json['data']} |
| 113 | |
George Keishing | bf5442c | 2016-12-06 01:57:44 -0600 | [diff] [blame] | 114 | ${output} ${stderr} ${rc}= Execute Command |
| 115 | ... systemctl restart org.openbmc.records.events.service |
| 116 | ... return_stderr=True return_rc=True |
| 117 | Should Be Empty ${stderr} |
| 118 | Should Be Equal ${rc} ${0} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 119 | Sleep ${10} |
| 120 | |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 121 | ${resp}= openbmc get request ${EVENT_RECORD} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 122 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 123 | ${logs_post_restart}= set variable ${json['data']} |
George Keishing | bf5442c | 2016-12-06 01:57:44 -0600 | [diff] [blame] | 124 | List Should Contain Sub List |
| 125 | ... ${logs_post_restart} ${logs_pre_restart} |
| 126 | ... msg=The event logs are mismatched. |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 127 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 128 | |
George Keishing | bf5442c | 2016-12-06 01:57:44 -0600 | [diff] [blame] | 129 | Test Event Deletion Post Restarting Event Manager |
| 130 | [Documentation] Create event log, restart event service and |
| 131 | ... delete the event created earlier. |
| 132 | [Tags] CI Test_Event_Deletion Post_Restarting_Event_Manager |
| 133 | |
| 134 | ${uri}= create a test log |
| 135 | |
| 136 | ${output} ${stderr} ${rc}= Execute Command |
| 137 | ... systemctl restart org.openbmc.records.events.service |
| 138 | ... return_stderr=True return_rc=True |
| 139 | Should Be Empty ${stderr} |
| 140 | Should Be Equal ${rc} ${0} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 141 | Sleep ${10} |
| 142 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 143 | ${deluri}= catenate SEPARATOR= ${uri} /action/delete |
| 144 | ${resp}= openbmc post request ${deluri} data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 145 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 146 | |
George Keishing | 410b629 | 2016-07-05 10:40:16 -0500 | [diff] [blame] | 147 | making new log after obmc-phosphor-event.service restart |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 148 | [Documentation] This is for testing event creation after the |
| 149 | ... event service is restarted. |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 150 | [Tags] CI |
George Keishing | bf5442c | 2016-12-06 01:57:44 -0600 | [diff] [blame] | 151 | ${output} ${stderr} ${rc}= Execute Command |
| 152 | ... systemctl restart org.openbmc.records.events.service |
| 153 | ... return_stderr=True return_rc=True |
| 154 | Should Be Empty ${stderr} |
| 155 | Should Be Equal ${rc} ${0} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 156 | Sleep ${10} |
| 157 | |
| 158 | create a test log |
| 159 | |
| 160 | deleting new log after obmc-phosphor-event.service restart |
George Keishing | bf5442c | 2016-12-06 01:57:44 -0600 | [diff] [blame] | 161 | [Documentation] This testcase is for testing deleted newly created event |
| 162 | ... after event service is restarted. |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 163 | [Tags] CI |
George Keishing | bf5442c | 2016-12-06 01:57:44 -0600 | [diff] [blame] | 164 | ${output} ${stderr} ${rc}= Execute Command |
| 165 | ... systemctl restart org.openbmc.records.events.service |
| 166 | ... return_stderr=True return_rc=True |
| 167 | Should Be Empty ${stderr} |
| 168 | Should Be Equal ${rc} ${0} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 169 | Sleep ${10} |
| 170 | |
| 171 | ${uri}= create a test log |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 172 | ${deluri}= catenate SEPARATOR= ${uri} /action/delete |
| 173 | ${resp}= openbmc post request ${deluri} data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 174 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 175 | |
| 176 | Test events after openbmc reboot |
| 177 | [Documentation] This is to test event can be deleted created prior to |
| 178 | ... openbmc reboot |
| 179 | ... Steps: |
| 180 | ... Create event, |
George Keishing | f88767a | 2016-11-17 01:58:05 -0600 | [diff] [blame] | 181 | ... Power off if ON else no-op |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 182 | ... Reboot openbmc, |
George Keishing | 17982fb | 2016-11-08 04:59:37 -0600 | [diff] [blame] | 183 | ... Wait for BMC to READY or Powered OFF state |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 184 | ... Events should exist post reboot, |
| 185 | ... Create two more events, |
| 186 | ... Delete old and new event |
causten | 147f575 | 2016-08-11 16:24:45 -0500 | [diff] [blame] | 187 | [Tags] bmcreboot |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 188 | ${pre_reboot_event}= create a test log |
| 189 | |
George Keishing | f88767a | 2016-11-17 01:58:05 -0600 | [diff] [blame] | 190 | Initiate Power Off |
| 191 | Check Power Off States |
| 192 | |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 193 | ${output}= Execute Command /sbin/reboot |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 194 | Check If BMC is Up 5 min 10 sec |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 195 | |
George Keishing | 17982fb | 2016-11-08 04:59:37 -0600 | [diff] [blame] | 196 | @{states}= Create List BMC_READY HOST_POWERED_OFF |
| 197 | Wait Until Keyword Succeeds |
| 198 | ... 10 min 10 sec Verify BMC State ${states} |
| 199 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 200 | ${resp}= openbmc get request ${pre_reboot_event} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 201 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 202 | ${post_reboot_event1}= create a test log |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 203 | |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 204 | ${del_prereboot_uri}= catenate SEPARATOR= ${pre_reboot_event} /action/delete |
| 205 | ${resp}= openbmc post request ${del_prereboot_uri} data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 206 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 207 | ${del_postreboot_uri}= catenate SEPARATOR= ${post_reboot_event1} /action/delete |
| 208 | ${resp}= openbmc post request ${del_postreboot_uri} data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 209 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 210 | |
| 211 | clearing logs results in no logs |
| 212 | [Documentation] This testcase is for clearning the events when no logs present |
Chris Austen | 859be60 | 2016-07-07 16:46:31 -0500 | [diff] [blame] | 213 | [Tags] CI |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 214 | ${resp}= openbmc post request ${EVENT_RECORD}action/clear data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 215 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 216 | ${resp}= openbmc get request ${EVENT_RECORD} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 217 | ${json}= to json ${resp.content} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 218 | Should Be Empty ${json['data']} |
George Keishing | bf5442c | 2016-12-06 01:57:44 -0600 | [diff] [blame] | 219 | ${resp}= openbmc post request ${EVENT_RECORD}action/clear data=${NIL} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 220 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
| 221 | |
| 222 | |
| 223 | *** Keywords *** |
| 224 | |
| 225 | create a test log |
Gunnar Mills | 3803280 | 2016-12-12 13:43:40 -0600 | [diff] [blame] | 226 | [Arguments] |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 227 | ${data}= create dictionary data=@{EMPTY} |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 228 | ${resp}= openbmc post request ${EVENT_RECORD}action/acceptTestMessage data=${data} |
Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 229 | should be equal as strings ${resp.status_code} ${HTTP_OK} |
Gunnar Mills | 1cd544d | 2016-12-06 11:19:22 -0600 | [diff] [blame] | 230 | ${json}= to json ${resp.content} |
| 231 | ${LOGID}= convert to integer ${json['data']} |
George Keishing | ec80737 | 2016-12-05 03:54:51 -0600 | [diff] [blame] | 232 | ${uri}= catenate SEPARATOR= ${EVENT_RECORD} ${LOGID} |
Gunnar Mills | c9ea936 | 2016-12-13 16:21:13 -0600 | [diff] [blame] | 233 | [Return] ${uri} |