blob: a3e4046dd4287048c6f3bd4110e6c13da42e760b [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
Sridevi Ramesh87be0642017-05-19 01:20:50 -05009Resource ../lib/utils.robot
Sweta Potthurib2c50f12017-06-28 03:53:30 -050010Resource ../lib/boot_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${RESERVE_ID} raw 0x0a 0x42
George Keishing9af2df02017-10-30 02:16:18 -050023${RAW_PREFIX} raw 0x3a 0xf0 0x
George Keishing505d5b42017-02-21 11:01:54 -060024
25${RAW_SUFFIX} 0x00 0x00 0x00 0x00 0x00 0x01 0x00 0x00
George Keishing9af2df02017-10-30 02:16:18 -050026... 0xdf 0x00 0x00 0x00 0x00 0x20 0x00 0x04 0x12 0x35 0x6f 0xaa 0x00 0x00
George Keishing505d5b42017-02-21 11:01:54 -060027
28${RAW_SEL_COMMIT} raw 0x0a 0x44 0x00 0x00 0x02 0x00 0x00 0x00 0x00 0x20
George Keishingaf190192017-08-18 14:58:07 -050029... 0x00 0x04 0x12 0xA6 0x6f 0x02 0x00 0x01
George Keishing505d5b42017-02-21 11:01:54 -060030
31${LOGGING_SERVICE} xyz.openbmc_project.Logging.service
Chris Austenb29d2e82016-06-07 12:25:35 -050032
George Keishing616c2782017-02-23 13:04:04 -060033${ESEL_DATA} ESEL=00 00 df 00 00 00 00 20 00 04 12 35 6f aa 00 00
34
Chris Austenb29d2e82016-06-07 12:25:35 -050035*** Test Cases ***
36
George Keishing505d5b42017-02-21 11:01:54 -060037Verify eSEL Using REST
George Keishing616c2782017-02-23 13:04:04 -060038 [Documentation] Generate eSEL log and verify using REST.
George Keishing505d5b42017-02-21 11:01:54 -060039 [Tags] Verify_eSEL_Using_REST
40
George Keishing616c2782017-02-23 13:04:04 -060041 Create eSEL
George Keishing505d5b42017-02-21 11:01:54 -060042 # New eSEL log should exist
Sweta Potthuri85c36c12017-07-03 05:30:44 -050043 ${resp}= OpenBMC Get Request ${BMC_LOGGING_ENTRY}/list
George Keishing505d5b42017-02-21 11:01:54 -060044 Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
45
George Keishing616c2782017-02-23 13:04:04 -060046Verify eSEL Entries Using REST
47 [Documentation] Verify that eSEL entries have data.
George Keishing616c2782017-02-23 13:04:04 -060048 [Tags] Verify_eSEL_Entries_Using_REST
Sridevi Ramesh87be0642017-05-19 01:20:50 -050049
George Keishing616c2782017-02-23 13:04:04 -060050 Create eSEL
51 Verify eSEL Entries
52
53
54Verify Multiple eSEL Using REST
George Keishing3d14cfa2017-03-06 02:49:49 -060055 [Documentation] Generate multiple eSEL log and verify using REST.
George Keishing616c2782017-02-23 13:04:04 -060056 [Tags] Verify_Multiple_eSEL_Using_REST
Sridevi Ramesh87be0642017-05-19 01:20:50 -050057
George Keishing616c2782017-02-23 13:04:04 -060058 Create eSEL
59 Create eSEL
60 ${entries}= Count eSEL Entries
George Keishing9f398742017-11-23 02:42:33 -060061 # 1 eSEL creates 1 error log and 1 association.
62 Should Be Equal As Integers ${entries} ${4}
George Keishing616c2782017-02-23 13:04:04 -060063
George Keishing3d14cfa2017-03-06 02:49:49 -060064Check eSEL AdditionalData
65 [Documentation] Generate eSEL log and verify AdditionalData is
66 ... not empty.
George Keishing3d14cfa2017-03-06 02:49:49 -060067 [Tags] Check_eSEL_AdditionalData
Sridevi Ramesh87be0642017-05-19 01:20:50 -050068
George Keishing3d14cfa2017-03-06 02:49:49 -060069 Create eSEL
Sweta Potthuri85c36c12017-07-03 05:30:44 -050070 ${elog_entry}= Get URL List ${BMC_LOGGING_ENTRY}
71 ${resp}= OpenBMC Get Request ${elog_entry[0]}
George Keishing3d14cfa2017-03-06 02:49:49 -060072 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
Chris Austenb29d2e82016-06-07 12:25:35 -050083Test Wrong Reservation_ID
George Keishingcac24c72016-09-23 04:44:19 -050084 [Documentation] This testcase is to test BMC can handle multi-requestor's
85 ... oem partial add command with incorrect reservation id.
86 ... It simulates sending partial add command with fake content
87 ... and wrong Reservation ID. This command will be rejected.
88 [Tags] Test_Wrong_Reservation_ID
Gunnar Mills56b32892016-11-14 13:56:17 -060089
Sweta Potthurifc9cfd72017-05-10 11:58:13 -050090 ${rev_id_1}= Run Inband IPMI Raw Command 0x0a 0x42
Gunnar Mills1cd544d2016-12-06 11:19:22 -060091 ${rev_id_ls}= Get Substring ${rev_id_1} 1 3
92 ${rev_id_ms}= Get Substring ${rev_id_1} -2
Sweta Potthurifc9cfd72017-05-10 11:58:13 -050093 Run Inband IPMI Raw Command 0x0a 0x42
George Keishing7d2e5512017-11-06 02:10:04 -060094 ${output}= Check IPMI OEMpartialadd Reject 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 -050095 Should Contain ${output} Reservation cancelled
96
97Test Correct Reservation_ID
George Keishingcac24c72016-09-23 04:44:19 -050098 [Documentation] This testcase is to test BMC can handle multi-requestor's
99 ... oem partial add command with correct reservation id. It
100 ... simulates sending partial add command with fake content
101 ... and correct Reservation ID. This command will be accepted.
102 [Tags] Test_Correct_Reservation_ID
Gunnar Mills56b32892016-11-14 13:56:17 -0600103
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500104 Run Inband IPMI Raw Command 0x0a 0x42
105 ${rev_id_2}= Run Inband IPMI Raw Command 0x0a 0x42
Gunnar Mills1cd544d2016-12-06 11:19:22 -0600106 ${rev_id_ls}= Get Substring ${rev_id_2} 1 3
107 ${rev_id_ms}= Get Substring ${rev_id_2} -2
George Keishing7d2e5512017-11-06 02:10:04 -0600108 ${output}= Check IPMI OEMpartialadd Accept 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 -0500109 Should Be Empty ${output}
110
Chris Austenb29d2e82016-06-07 12:25:35 -0500111*** Keywords ***
112
George Keishing616c2782017-02-23 13:04:04 -0600113Create eSEL
114 [Documentation] Create an eSEL.
115 Open Connection And Log In
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500116 ${Resv_id}= Run Inband IPMI Standard Command ${RESERVE_ID}
George Keishing616c2782017-02-23 13:04:04 -0600117 ${cmd}= Catenate
118 ... ${RAW_PREFIX}${Resv_id.strip().rsplit(' ', 1)[0]} ${RAW_SUFFIX}
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500119 Run Inband IPMI Standard Command ${cmd}
120 Run Inband IPMI Standard Command ${RAW_SEL_COMMIT}
George Keishing616c2782017-02-23 13:04:04 -0600121
George Keishing616c2782017-02-23 13:04:04 -0600122Count eSEL Entries
123 [Documentation] Count eSEL entries logged.
124 ${resp}= OpenBMC Get Request ${BMC_LOGGING_ENTRY}
125 Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
126 ${jsondata}= To JSON ${resp.content}
127 ${count}= Get Length ${jsondata["data"]}
128 [Return] ${count}
129
George Keishing616c2782017-02-23 13:04:04 -0600130Verify eSEL Entries
131 [Documentation] Verify eSEL entries logged.
Sweta Potthuri85c36c12017-07-03 05:30:44 -0500132 ${elog_entry}= Get URL List ${BMC_LOGGING_ENTRY}
133 ${resp}= OpenBMC Get Request ${elog_entry[0]}
George Keishing616c2782017-02-23 13:04:04 -0600134 # "data": {
135 # "AdditionalData": [
136 # "ESEL=00 00 df 00 00 00 00 20 00 04 12 35 6f aa 00 00 "
137 # ],
138 # "Id": 1,
George Keishing9f398742017-11-23 02:42:33 -0600139 # "Message": "org.open_power.Host.Error.Event",
140 # "Severity": "xyz.openbmc_project.Logging.Entry.Level.Error",
George Keishing616c2782017-02-23 13:04:04 -0600141 # "Timestamp": 1485904869061
142 # }
Sweta Potthuri85c36c12017-07-03 05:30:44 -0500143 ${entry_id}= Read Attribute ${elog_entry[0]} message
144 Should Be Equal ${entry_id}
George Keishing9f398742017-11-23 02:42:33 -0600145 ... org.open_power.Host.Error.Event
Sweta Potthuri85c36c12017-07-03 05:30:44 -0500146 ${entry_id}= Read Attribute ${elog_entry[0]} Severity
147 Should Be Equal ${entry_id}
148 ... xyz.openbmc_project.Logging.Entry.Level.Error
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
Chris Austenb29d2e82016-06-07 12:25:35 -0500163Run IPMI Command Returned
Gunnar Mills38032802016-12-12 13:43:40 -0600164 [Arguments] ${args}
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500165 ${output_1}= Execute Command /tmp/ipmitool -I dbus raw ${args}
Gunnar Millsc9ea9362016-12-13 16:21:13 -0600166 [Return] ${output_1}
Chris Austenb29d2e82016-06-07 12:25:35 -0500167
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500168Check IPMI OEMpartialadd Reject
169 [Arguments] ${args}
170 Login To OS Host ${OS_HOST} ${OS_USERNAME} ${OS_PASSWORD}
171 ${stdout} ${stderr} ${output_2}= Execute Command ipmitool raw ${args}
172 ... return_stdout=True return_stderr=True return_rc=True
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500173 [Return] ${stderr}
Chris Austenb29d2e82016-06-07 12:25:35 -0500174
Steven Sombarfac31e92017-12-15 09:40:34 -0600175Suite Setup Execution
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500176 [Documentation] Validates input parameters & check if HOST OS is up.
177
178 Should Not Be Empty
179 ... ${OS_HOST} msg=You must provide DNS name/IP of the OS host.
180 Should Not Be Empty
181 ... ${OS_USERNAME} msg=You must provide OS host user name.
182 Should Not Be Empty
183 ... ${OS_PASSWORD} msg=You must provide OS host user password.
184
Sweta Potthurib2c50f12017-06-28 03:53:30 -0500185 # Boot to OS.
186 REST Power On
187
Sridevi Ramesh87be0642017-05-19 01:20:50 -0500188 Login To OS Host ${OS_HOST} ${OS_USERNAME} ${OS_PASSWORD}
189 Open Connection And Log In
Sweta Potthurifc9cfd72017-05-10 11:58:13 -0500190
191Check IPMI OEMpartialadd Accept
192 [Arguments] ${args}
193 Login To OS Host ${OS_HOST} ${OS_USERNAME} ${OS_PASSWORD}
194 ${stdout} ${stderr} ${output_3}= Execute Command ipmitool raw ${args}
195 ... return_stdout=True return_stderr=True return_rc=True
196 Should Be Equal ${output_3} ${0} msg=${stderr}
197 [Return] ${stderr}
198