blob: f2bbea53bd6476a3d728c59f7d881d4fa615a40b [file] [log] [blame]
Chris Austenb29d2e82016-06-07 12:25:35 -05001*** Settings ***
2
George Keishing505d5b42017-02-21 11:01:54 -06003Documentation eSEL's Test cases.
Chris Austenb29d2e82016-06-07 12:25:35 -05004
George Keishing505d5b42017-02-21 11:01:54 -06005Resource ../lib/ipmi_client.robot
6Resource ../lib/openbmc_ffdc.robot
Sweta Potthurifc9cfd72017-05-10 11:58:13 -05007Resource ../lib/utils.robot
George Keishing505d5b42017-02-21 11:01:54 -06008Variables ../data/variables.py
Sweta Potthurib2c50f12017-06-28 03:53:30 -05009Resource ../lib/boot_utils.robot
Steven Sombara3f04392018-10-01 15:38:21 -050010Resource ../lib/esel_utils.robot
Chris Austenb29d2e82016-06-07 12:25:35 -050011
Steven Sombarfac31e92017-12-15 09:40:34 -060012Suite Setup Suite Setup Execution
13Suite Teardown Suite Teardown Execution
George Keishing505d5b42017-02-21 11:01:54 -060014Test Teardown FFDC On Test Case Fail
George Keishing9af2df02017-10-30 02:16:18 -050015Test Setup Delete All Error Logs
George Keishing505d5b42017-02-21 11:01:54 -060016
17Force Tags eSEL_Logging
18
19*** Variables ***
20
Sweta Potthuriaf741cb2017-07-04 09:41:17 -050021${stack_mode} skip
George Keishing505d5b42017-02-21 11:01:54 -060022
23${LOGGING_SERVICE} xyz.openbmc_project.Logging.service
Chris Austenb29d2e82016-06-07 12:25:35 -050024
George Keishing616c2782017-02-23 13:04:04 -060025${ESEL_DATA} ESEL=00 00 df 00 00 00 00 20 00 04 12 35 6f aa 00 00
26
Chris Austenb29d2e82016-06-07 12:25:35 -050027*** Test Cases ***
28
George Keishing505d5b42017-02-21 11:01:54 -060029Verify eSEL Using REST
George Keishing616c2782017-02-23 13:04:04 -060030 [Documentation] Generate eSEL log and verify using REST.
George Keishing505d5b42017-02-21 11:01:54 -060031 [Tags] Verify_eSEL_Using_REST
32
George Keishing616c2782017-02-23 13:04:04 -060033 Create eSEL
George Keishing505d5b42017-02-21 11:01:54 -060034 # New eSEL log should exist
Steven Sombara8800da2018-12-18 16:19:05 -060035 ${resp}= OpenBMC Get Request ${BMC_LOGGING_ENTRY}list
George Keishing505d5b42017-02-21 11:01:54 -060036 Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
37
Steven Sombar31b6bd02019-03-06 10:58:07 -060038
George Keishing616c2782017-02-23 13:04:04 -060039Verify eSEL Entries Using REST
40 [Documentation] Verify that eSEL entries have data.
George Keishing616c2782017-02-23 13:04:04 -060041 [Tags] Verify_eSEL_Entries_Using_REST
Sridevi Ramesh87be0642017-05-19 01:20:50 -050042
George Keishing616c2782017-02-23 13:04:04 -060043 Create eSEL
44 Verify eSEL Entries
45
Steven Sombar31b6bd02019-03-06 10:58:07 -060046
George Keishing146da7e2018-04-20 10:35:55 -050047Verify eSEL Description And EntryID Using REST
48 [Documentation] Create eSEL log and verify "Description" and "EntryID"
49 ... are not empty via REST.
50 [Tags] Verify_eSEL_Description_And_EntryID_Using_REST
51
52 # {
53 # "AdditionalData": [
54 # "CALLOUT_INVENTORY_PATH=",
55 # "ESEL=00 00 df 00 00 00 00 20 00 04 12 35 6f aa 00 00",
56 # "_PID=1175"
57 # ],
58 # "Description": "An error was detected with the base platform,
59 # but was not able to be deciphered. Contact your next level of support.",
60 # "EventID": "FQPSPAA0011M",
61 # "Id": 1,
62 # "Message": "org.open_power.Host.Error.Event",
63 # "Resolved": 0,
64 # "Severity": "xyz.openbmc_project.Logging.Entry.Level.Error",
65 # "Timestamp": 1524233022072,
66 # "associations": [
67 # [
68 # "callout",
69 # "fault",
70 # ""
71 # ]
72 # ]
73
74 Create eSEL
75
76 ${elog_entry}= Get URL List ${BMC_LOGGING_ENTRY}
77 ${desc}= Read Attribute ${elog_entry[0]} Description
78 Should Not Be Empty ${desc} msg=${desc} is not populated.
79
80 ${event_id}= Read Attribute ${elog_entry[0]} EventID
81 Should Not Be Equal ${event_id} ${None}
82 ... msg=${event_id} is populated default "None".
83
George Keishing616c2782017-02-23 13:04:04 -060084
85Verify Multiple eSEL Using REST
George Keishing3d14cfa2017-03-06 02:49:49 -060086 [Documentation] Generate multiple eSEL log and verify using REST.
George Keishing616c2782017-02-23 13:04:04 -060087 [Tags] Verify_Multiple_eSEL_Using_REST
Sridevi Ramesh87be0642017-05-19 01:20:50 -050088
George Keishing616c2782017-02-23 13:04:04 -060089 Create eSEL
90 Create eSEL
91 ${entries}= Count eSEL Entries
Steven Sombar31b6bd02019-03-06 10:58:07 -060092 Should Be Equal As Integers ${entries} ${2}
93 ... msg=Expecting 2 eSELs but found ${entries}.
94
George Keishing616c2782017-02-23 13:04:04 -060095
George Keishing3d14cfa2017-03-06 02:49:49 -060096Check eSEL AdditionalData
97 [Documentation] Generate eSEL log and verify AdditionalData is
98 ... not empty.
George Keishing3d14cfa2017-03-06 02:49:49 -060099 [Tags] Check_eSEL_AdditionalData
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500100
George Keishing3d14cfa2017-03-06 02:49:49 -0600101 Create eSEL
Sweta Potthuri85c36c12017-07-03 05:30:44 -0500102 ${elog_entry}= Get URL List ${BMC_LOGGING_ENTRY}
103 ${resp}= OpenBMC Get Request ${elog_entry[0]}
George Keishing3d14cfa2017-03-06 02:49:49 -0600104 Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
105 ${jsondata}= To JSON ${resp.content}
106 # "/xyz/openbmc_project/logging/entry/1": {
107 # "Timestamp": 1487743771812,
108 # "AdditionalData": [],
109 # "Message": "org.open_power.Error.Host.Event.Event",
110 # "Id": 1,
111 # "Severity": "xyz.openbmc_project.Logging.Entry.Level.Emergency"
112 # }
113 Should Not Be Empty ${jsondata["data"]["AdditionalData"]}
114
Steven Sombar31b6bd02019-03-06 10:58:07 -0600115
Chris Austenb29d2e82016-06-07 12:25:35 -0500116Test Wrong Reservation_ID
Steven Sombara3f04392018-10-01 15:38:21 -0500117 [Documentation] This testcase is to test BMC can handle multi-requestor's
118 ... oem partial add command with incorrect reservation id.
119 ... It simulates sending partial add command with fake content
120 ... and wrong Reservation ID. This command will be rejected.
George Keishingcac24c72016-09-23 04:44:19 -0500121 [Tags] Test_Wrong_Reservation_ID
Gunnar Mills56b32892016-11-14 13:56:17 -0600122
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500123 ${rev_id_1}= Run Inband IPMI Raw Command 0x0a 0x42
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600124 ${rev_id_ls}= Get Substring ${rev_id_1} 1 3
125 ${rev_id_ms}= Get Substring ${rev_id_1} -2
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500126 Run Inband IPMI Raw Command 0x0a 0x42
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500127 ${output}= Check IPMI OEMpartialadd Reject
128 ... 0x3a 0xf0 0x${rev_id_ls} 0x${rev_id_ms} 0 0 0 0 0 1 2 3 4 5 6 7 8 9 0xa 0xb 0xc 0xd 0xe 0xf
Chris Austenb29d2e82016-06-07 12:25:35 -0500129 Should Contain ${output} Reservation cancelled
130
131Test Correct Reservation_ID
Steven Sombara3f04392018-10-01 15:38:21 -0500132 [Documentation] This testcase is to test BMC can handle multi-requestor's
133 ... oem partial add command with correct reservation id. It
134 ... simulates sending partial add command with fake content
135 ... and correct Reservation ID. This command will be accepted.
George Keishingcac24c72016-09-23 04:44:19 -0500136 [Tags] Test_Correct_Reservation_ID
Gunnar Mills56b32892016-11-14 13:56:17 -0600137
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500138 Run Inband IPMI Raw Command 0x0a 0x42
139 ${rev_id_2}= Run Inband IPMI Raw Command 0x0a 0x42
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600140 ${rev_id_ls}= Get Substring ${rev_id_2} 1 3
141 ${rev_id_ms}= Get Substring ${rev_id_2} -2
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500142 ${output}= Check IPMI OEMpartialadd Accept
143 ... 0x3a 0xf0 0x${rev_id_ls} 0x${rev_id_ms} 0 0 0 0 0 1 2 3 4 5 6 7 8 9 0xa 0xb 0xc 0xd 0xe 0xf
Chris Austenb29d2e82016-06-07 12:25:35 -0500144 Should Be Empty ${output}
145
Steven Sombara3f04392018-10-01 15:38:21 -0500146
Chris Austenb29d2e82016-06-07 12:25:35 -0500147*** Keywords ***
148
George Keishing616c2782017-02-23 13:04:04 -0600149
Steven Sombarfac31e92017-12-15 09:40:34 -0600150Suite Teardown Execution
George Keishing616c2782017-02-23 13:04:04 -0600151 [Documentation] Cleanup test logs and connection.
George Keishing616c2782017-02-23 13:04:04 -0600152 Close All Connections
153
154
George Keishing505d5b42017-02-21 11:01:54 -0600155Restart Logging Service
156 [Documentation] Restart Logging to clear eSEL log.
157 ${MainPID} ${stderr}= Execute Command
158 ... systemctl restart ${LOGGING_SERVICE} return_stderr=True
159 Should Be Empty ${stderr}
160
161 Sleep 10s reason=Wait for service to restart properly.
162
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500163
Chris Austenb29d2e82016-06-07 12:25:35 -0500164Run IPMI Command Returned
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500165 [Documentation] Run the IPMI command and return the output.
Gunnar Mills38032802016-12-12 13:43:40 -0600166 [Arguments] ${args}
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500167 ${output_1}= Execute Command /tmp/ipmitool -I dbus raw ${args}
Gunnar Millsc9ea9362016-12-13 16:21:13 -0600168 [Return] ${output_1}
Chris Austenb29d2e82016-06-07 12:25:35 -0500169
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500170
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500171Check IPMI OEMpartialadd Reject
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500172 [Documentation] Check if IPMI rejects the OEM partial add command.
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500173 [Arguments] ${args}
174 Login To OS Host ${OS_HOST} ${OS_USERNAME} ${OS_PASSWORD}
175 ${stdout} ${stderr} ${output_2}= Execute Command ipmitool raw ${args}
176 ... return_stdout=True return_stderr=True return_rc=True
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500177 [Return] ${stderr}
Chris Austenb29d2e82016-06-07 12:25:35 -0500178
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500179
Steven Sombarfac31e92017-12-15 09:40:34 -0600180Suite Setup Execution
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500181 [Documentation] Validates input parameters & check if HOST OS is up.
182
183 Should Not Be Empty
184 ... ${OS_HOST} msg=You must provide DNS name/IP of the OS host.
185 Should Not Be Empty
186 ... ${OS_USERNAME} msg=You must provide OS host user name.
187 Should Not Be Empty
188 ... ${OS_PASSWORD} msg=You must provide OS host user password.
189
Sweta Potthurib2c50f12017-06-28 03:53:30 -0500190 # Boot to OS.
191 REST Power On
192
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500193 Login To OS Host ${OS_HOST} ${OS_USERNAME} ${OS_PASSWORD}
194 Open Connection And Log In
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500195
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500196
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500197Check IPMI OEMpartialadd Accept
Joy Onyerikwuf4a807b2018-06-20 08:43:54 -0500198 [Documentation] Check if IPMI accepts the OEM partial add command.
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500199 [Arguments] ${args}
200 Login To OS Host ${OS_HOST} ${OS_USERNAME} ${OS_PASSWORD}
201 ${stdout} ${stderr} ${output_3}= Execute Command ipmitool raw ${args}
202 ... return_stdout=True return_stderr=True return_rc=True
203 Should Be Equal ${output_3} ${0} msg=${stderr}
Steven Sombara3f04392018-10-01 15:38:21 -0500204 [Return] ${stderr}