blob: fb009327750bf89f6f203546cce85cb5ed460dd6 [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
7Variables ../data/variables.py
Sridevi Ramesh87be0642017-05-19 01:20:50 -05008Resource ../lib/utils.robot
Chris Austenb29d2e82016-06-07 12:25:35 -05009
Sridevi Ramesh87be0642017-05-19 01:20:50 -050010Suite Setup eSEL Test SetUp
George Keishing616c2782017-02-23 13:04:04 -060011Suite Teardown Test Cleanup On Exit
George Keishing505d5b42017-02-21 11:01:54 -060012Test Teardown FFDC On Test Case Fail
Sridevi Ramesh87be0642017-05-19 01:20:50 -050013Test Setup Delete Error logs
George Keishing505d5b42017-02-21 11:01:54 -060014
15Force Tags eSEL_Logging
16
17*** Variables ***
18
19${RESERVE_ID} raw 0x0a 0x42
20${RAW_PREFIX} raw 0x32 0xf0 0x
21
22${RAW_SUFFIX} 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00
23... 0xdf 0x00 0x00 0x00 0x00 0x20 0x00 0x04 0x12 0x35 0x6f 0xaa 0x00 0x00
24
25${RAW_SEL_COMMIT} raw 0x0a 0x44 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x20
26... 0x00 0x04 0x12 0x35 0x6f 0x02 0x00 0x01
27
28${LOGGING_SERVICE} xyz.openbmc_project.Logging.service
Chris Austenb29d2e82016-06-07 12:25:35 -050029
George Keishing616c2782017-02-23 13:04:04 -060030${ESEL_DATA} ESEL=00 00 df 00 00 00 00 20 00 04 12 35 6f aa 00 00
31
Chris Austenb29d2e82016-06-07 12:25:35 -050032*** Test Cases ***
33
George Keishing505d5b42017-02-21 11:01:54 -060034Verify eSEL Using REST
George Keishing616c2782017-02-23 13:04:04 -060035 [Documentation] Generate eSEL log and verify using REST.
George Keishing505d5b42017-02-21 11:01:54 -060036 [Tags] Verify_eSEL_Using_REST
37
George Keishing616c2782017-02-23 13:04:04 -060038 # Prior eSEL log shouldn't exist.
George Keishing505d5b42017-02-21 11:01:54 -060039 ${resp}= OpenBMC Get Request ${BMC_LOGGING_ENTRY}${1}
40 Should Be Equal As Strings ${resp.status_code} ${HTTP_NOT_FOUND}
George Keishing616c2782017-02-23 13:04:04 -060041 Create eSEL
George Keishing505d5b42017-02-21 11:01:54 -060042 # New eSEL log should exist
43 ${resp}= OpenBMC Get Request ${BMC_LOGGING_ENTRY}${1}
44 Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
45
46
George Keishing616c2782017-02-23 13:04:04 -060047Verify eSEL Entries Using REST
48 [Documentation] Verify that eSEL entries have data.
George Keishing616c2782017-02-23 13:04:04 -060049 [Tags] Verify_eSEL_Entries_Using_REST
Sridevi Ramesh87be0642017-05-19 01:20:50 -050050
George Keishing616c2782017-02-23 13:04:04 -060051 Create eSEL
52 Verify eSEL Entries
53
54
55Verify Multiple eSEL Using REST
George Keishing3d14cfa2017-03-06 02:49:49 -060056 [Documentation] Generate multiple eSEL log and verify using REST.
George Keishing616c2782017-02-23 13:04:04 -060057 [Tags] Verify_Multiple_eSEL_Using_REST
Sridevi Ramesh87be0642017-05-19 01:20:50 -050058
George Keishing616c2782017-02-23 13:04:04 -060059 Create eSEL
60 Create eSEL
61 ${entries}= Count eSEL Entries
62 Should Be Equal As Integers ${entries} ${2}
63
64
George Keishing3d14cfa2017-03-06 02:49:49 -060065Check eSEL AdditionalData
66 [Documentation] Generate eSEL log and verify AdditionalData is
67 ... not empty.
George Keishing3d14cfa2017-03-06 02:49:49 -060068 [Tags] Check_eSEL_AdditionalData
Sridevi Ramesh87be0642017-05-19 01:20:50 -050069
George Keishing3d14cfa2017-03-06 02:49:49 -060070 Create eSEL
71 ${resp}= OpenBMC Get Request ${BMC_LOGGING_ENTRY}${1}
72 Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
73 ${jsondata}= To JSON ${resp.content}
74 # "/xyz/openbmc_project/logging/entry/1": {
75 # "Timestamp": 1487743771812,
76 # "AdditionalData": [],
77 # "Message": "org.open_power.Error.Host.Event.Event",
78 # "Id": 1,
79 # "Severity": "xyz.openbmc_project.Logging.Entry.Level.Emergency"
80 # }
81 Should Not Be Empty ${jsondata["data"]["AdditionalData"]}
82
83
Chris Austenb29d2e82016-06-07 12:25:35 -050084Test Wrong Reservation_ID
George Keishingcac24c72016-09-23 04:44:19 -050085 [Documentation] This testcase is to test BMC can handle multi-requestor's
86 ... oem partial add command with incorrect reservation id.
87 ... It simulates sending partial add command with fake content
88 ... and wrong Reservation ID. This command will be rejected.
89 [Tags] Test_Wrong_Reservation_ID
Gunnar Mills56b32892016-11-14 13:56:17 -060090
Gunnar Mills1cd544d2016-12-06 11:19:22 -060091 ${rev_id_1}= Run IPMI Command Returned 0x0a 0x42
92 ${rev_id_ls}= Get Substring ${rev_id_1} 1 3
93 ${rev_id_ms}= Get Substring ${rev_id_1} -2
Chris Austenb29d2e82016-06-07 12:25:35 -050094 Run IPMI command 0x0a 0x42
Gunnar Mills1cd544d2016-12-06 11:19:22 -060095 ${output}= Check IPMI Oempartialadd Reject 0x32 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 -050096 Should Contain ${output} Reservation cancelled
97
98Test Correct Reservation_ID
George Keishingcac24c72016-09-23 04:44:19 -050099 [Documentation] This testcase is to test BMC can handle multi-requestor's
100 ... oem partial add command with correct reservation id. It
101 ... simulates sending partial add command with fake content
102 ... and correct Reservation ID. This command will be accepted.
103 [Tags] Test_Correct_Reservation_ID
Gunnar Mills56b32892016-11-14 13:56:17 -0600104
Chris Austenb29d2e82016-06-07 12:25:35 -0500105 Run IPMI command 0x0a 0x42
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600106 ${rev_id_2}= Run IPMI Command Returned 0x0a 0x42
107 ${rev_id_ls}= Get Substring ${rev_id_2} 1 3
108 ${rev_id_ms}= Get Substring ${rev_id_2} -2
109 ${output}= Check IPMI Oempartialadd Accept 0x32 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 -0500110 Should Be Empty ${output}
111
112Clear Test File
113 [Documentation] Clear /tmp/esel
Sridevi Ramesh83f5c592017-01-20 04:35:13 -0600114 [Tags] Clear_Test_File
Gunnar Mills56b32892016-11-14 13:56:17 -0600115
Chris Austenb29d2e82016-06-07 12:25:35 -0500116 Execute Command rm /tmp/esel
117 Execute Command sync
118
119*** Keywords ***
120
George Keishing616c2782017-02-23 13:04:04 -0600121Create eSEL
122 [Documentation] Create an eSEL.
123 Open Connection And Log In
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500124 ${Resv_id}= Run Inband IPMI Standard Command ${RESERVE_ID}
George Keishing616c2782017-02-23 13:04:04 -0600125 ${cmd}= Catenate
126 ... ${RAW_PREFIX}${Resv_id.strip().rsplit(' ', 1)[0]} ${RAW_SUFFIX}
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500127 Run Inband IPMI Standard Command ${cmd}
128 Run Inband IPMI Standard Command ${RAW_SEL_COMMIT}
George Keishing616c2782017-02-23 13:04:04 -0600129
130
131Count eSEL Entries
132 [Documentation] Count eSEL entries logged.
133 ${resp}= OpenBMC Get Request ${BMC_LOGGING_ENTRY}
134 Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
135 ${jsondata}= To JSON ${resp.content}
136 ${count}= Get Length ${jsondata["data"]}
137 [Return] ${count}
138
139
140Verify eSEL Entries
141 [Documentation] Verify eSEL entries logged.
142 ${resp}= OpenBMC Get Request ${BMC_LOGGING_ENTRY}${1}
143 Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
144 ${jsondata}= To JSON ${resp.content}
145 # "data": {
146 # "AdditionalData": [
147 # "ESEL=00 00 df 00 00 00 00 20 00 04 12 35 6f aa 00 00 "
148 # ],
149 # "Id": 1,
150 # "Message": "org.open_power.Error.Host.Event.Event",
151 # "Severity": "xyz.openbmc_project.Logging.Entry.Level.Emergency",
152 # "Timestamp": 1485904869061
153 # }
154
155 Should Be Equal As Integers ${jsondata["data"]["Id"]} ${1}
156 Should Be Equal As Strings
157 ... ${jsondata["data"]["AdditionalData"][0].rstrip()} ${ESEL_DATA}
158
159
160Test Cleanup On Exit
161 [Documentation] Cleanup test logs and connection.
George Keishing616c2782017-02-23 13:04:04 -0600162 Close All Connections
163
164
George Keishing505d5b42017-02-21 11:01:54 -0600165Restart Logging Service
166 [Documentation] Restart Logging to clear eSEL log.
167 ${MainPID} ${stderr}= Execute Command
168 ... systemctl restart ${LOGGING_SERVICE} return_stderr=True
169 Should Be Empty ${stderr}
170
171 Sleep 10s reason=Wait for service to restart properly.
172
Chris Austenb29d2e82016-06-07 12:25:35 -0500173Run IPMI Command Returned
Gunnar Mills38032802016-12-12 13:43:40 -0600174 [Arguments] ${args}
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500175 ${output_1}= Execute Command /tmp/ipmitool -I dbus raw ${args}
Gunnar Millsc9ea9362016-12-13 16:21:13 -0600176 [Return] ${output_1}
Chris Austenb29d2e82016-06-07 12:25:35 -0500177
178Check IPMI Oempartialadd Reject
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500179 [Arguments] ${args}
180 ${cmd}= Catenate /tmp/ipmitool -I dbus raw ${args}
181 ${stdout} ${stderr} ${output_2}= Execute Command ${cmd}
182 ... return_stdout=True return_stderr= True return_rc=True
183 [Return] ${stderr}
Chris Austenb29d2e82016-06-07 12:25:35 -0500184
185Check IPMI Oempartialadd Accept
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500186 [Arguments] ${args}
187 ${cmd}= Catenate /tmp/ipmitool -I dbus raw ${args}
188 ${stdout} ${stderr} ${output_3}= Execute Command ${cmd}
189 ... return_stdout=True return_stderr= True return_rc=True
190 Should Be Equal ${output_3} ${0} msg=${stderr}
191 [Return] ${stderr}
Chris Austenb29d2e82016-06-07 12:25:35 -0500192
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500193eSEL Test SetUp
194 [Documentation] Validates input parameters & check if HOST OS is up.
195
196 Should Not Be Empty
197 ... ${OS_HOST} msg=You must provide DNS name/IP of the OS host.
198 Should Not Be Empty
199 ... ${OS_USERNAME} msg=You must provide OS host user name.
200 Should Not Be Empty
201 ... ${OS_PASSWORD} msg=You must provide OS host user password.
202
203 Login To OS Host ${OS_HOST} ${OS_USERNAME} ${OS_PASSWORD}
204 Open Connection And Log In