blob: 384debb59140b1793e25496b9a8cfd5803380031 [file] [log] [blame]
George Keishing69e6f712016-09-12 06:30:09 -05001*** Settings ***
2Documentation Methods to execute commands on BMC and collect
3... data to a list of FFDC files
4
5Resource openbmc_ffdc_utils.robot
George Keishing8e47f532016-10-05 08:41:45 -05006Resource rest_client.robot
Gunnar Millsaca140d2016-10-26 13:05:10 -05007Resource utils.robot
Michael Walsh63b70c02017-10-30 15:02:09 -05008Resource list_utils.robot
Michael Walshfef3f812018-10-09 10:45:36 -05009Resource logging_utils.robot
George Keishingab7a9072017-02-24 13:03:24 -060010Library SSHLibrary
Sivas SRR0d657e82017-03-13 01:00:34 -050011Library OperatingSystem
George Keishing16333ec2017-03-21 06:18:29 -050012Library Collections
Michael Walshe844e9a2017-04-20 16:51:10 -050013Library String
Michael Walshe53e47a2017-06-30 17:03:24 -050014Library gen_print.py
Michael Walsh02c70602018-10-04 15:24:30 -050015Library gen_cmd.py
Michael Walshe844e9a2017-04-20 16:51:10 -050016Library gen_robot_keyword.py
Sweta Potthuria82efd62017-10-18 05:34:59 -050017Library dump_utils.py
Michael Walsh02c70602018-10-04 15:24:30 -050018Library logging_utils.py
Gunnar Mills7e2cda22016-10-11 15:37:34 -050019
Michael Walshde5e9372018-11-15 11:28:23 -060020*** Variables ***
21
22${FFDC_TIMEOUT} 240
23
George Keishing69e6f712016-09-12 06:30:09 -050024*** Keywords ***
25
George Keishing69e6f712016-09-12 06:30:09 -050026# Method : Call FFDC Methods #
27# Execute the user define keywords from the FFDC List #
28# Unlike any other keywords this will call into the #
29# list of keywords defined in the FFDC list at one go #
George Keishing69e6f712016-09-12 06:30:09 -050030
31Call FFDC Methods
Michael Walshe844e9a2017-04-20 16:51:10 -050032 [Documentation] Call into FFDC Keyword index list.
33 [Arguments] ${ffdc_function_list}=${EMPTY}
George Keishing69e6f712016-09-12 06:30:09 -050034
Michael Walshe844e9a2017-04-20 16:51:10 -050035 # Description of argument(s):
36 # ffdc_function_list A colon-delimited list naming the kinds of FFDC that
Michael Walsh63b70c02017-10-30 15:02:09 -050037 # are to be collected
Michael Walshe844e9a2017-04-20 16:51:10 -050038 # (e.g. "FFDC Generic Report:BMC Specific Files").
39 # Acceptable values can be found in the description
40 # field of FFDC_METHOD_CALL in
41 # lib/openbmc_ffdc_list.py. Those values can be
42 # obtained via a call to 'Get FFDC Method Desc' (also
43 # from lib/openbmc_ffdc_list.py).
44
45 @{entries}= Get FFDC Method Index
Michael Walsh63b70c02017-10-30 15:02:09 -050046 # Example entries:
47 # entries:
48 # entries[0]: BMC LOGS
49
50 @{ffdc_file_list}= Create List
Michael Walshe844e9a2017-04-20 16:51:10 -050051 :FOR ${index} IN @{entries}
Michael Walsh63b70c02017-10-30 15:02:09 -050052 \ ${ffdc_file_sub_list}= Method Call Keyword List ${index}
53 ... ${ffdc_function_list}
54 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list}
55 ... ${ffdc_file_sub_list}
56
Michael Walsh6bad8412017-06-27 14:09:36 -050057 Run Key U SSHLibrary.Close All Connections
George Keishing69e6f712016-09-12 06:30:09 -050058
Michael Walsh63b70c02017-10-30 15:02:09 -050059 [Return] ${ffdc_file_list}
60
George Keishing69e6f712016-09-12 06:30:09 -050061Method Call Keyword List
Michael Walsh63b70c02017-10-30 15:02:09 -050062 [Documentation] Process FFDC request and return a list of generated files.
Michael Walshe844e9a2017-04-20 16:51:10 -050063 [Arguments] ${index} ${ffdc_function_list}=${EMPTY}
George Keishing69e6f712016-09-12 06:30:09 -050064
Michael Walshe844e9a2017-04-20 16:51:10 -050065 # Description of argument(s):
66 # index The index into the FFDC_METHOD_CALL dictionary (e.g.
67 # 'BMC LOGS').
68 # ffdc_function_list See ffdc_function_list description in
69 # "Call FFDC Methods" (above).
70
Michael Walsh63b70c02017-10-30 15:02:09 -050071 @{method_list}= Get FFDC Method Call ${index}
72 # Example method_list:
73 # method_list:
74 # method_list[0]:
75 # method_list[0][0]: FFDC Generic Report
76 # method_list[0][1]: BMC FFDC Manifest
77 # method_list[1]:
78 # method_list[1][0]: Get Request FFDC
79 # method_list[1][1]: BMC FFDC Get Requests
80 # (etc.)
Michael Walshe844e9a2017-04-20 16:51:10 -050081
82 # If function list is empty assign default (i.e. a list of all allowable
83 # values). In either case, convert ffdc_function_list from a string to
84 # a list.
85 @{ffdc_function_list}=
86 ... Run Keyword If '${ffdc_function_list}' == '${EMPTY}'
87 ... Get FFDC Method Desc ${index}
88 ... ELSE
89 ... Split String ${ffdc_function_list} separator=:
90
Michael Walsh63b70c02017-10-30 15:02:09 -050091 @{ffdc_file_list}= Create List
George Keishing69e6f712016-09-12 06:30:09 -050092 :FOR ${method} IN @{method_list}
Michael Walsh63b70c02017-10-30 15:02:09 -050093 \ ${ffdc_file_sub_list}= Execute Keyword Method ${method[0]}
94 ... ${method[1]} @{ffdc_function_list}
95 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list}
96 ... ${ffdc_file_sub_list}
97
98 [Return] ${ffdc_file_list}
99
George Keishing69e6f712016-09-12 06:30:09 -0500100
101Execute Keyword Method
Michael Walshe844e9a2017-04-20 16:51:10 -0500102 [Documentation] Call into BMC method keywords. Don't let one
103 ... failure skip the remaining. Get whatever data
104 ... it could gather at worse case scenario.
105 [Arguments] ${description} ${keyword_name} @{ffdc_function_list}
George Keishing69e6f712016-09-12 06:30:09 -0500106
Michael Walshe844e9a2017-04-20 16:51:10 -0500107 # Description of argument(s):
108 # description The description of the FFDC to be collected. This
109 # would be any value returned by
110 # 'Get FFDC Method Desc' (e.g. "FFDC Generic Report").
111 # keyword_name The name of the keyword to call to collect the FFDC
112 # data (again, see FFDC_METHOD_CALL).
113 # ffdc_function_list See ffdc_function_list description in
114 # "Call FFDC Methods" (above). The only difference is
115 # in this case, it should be a list rather than a
116 # colon-delimited value.
George Keishing69e6f712016-09-12 06:30:09 -0500117
Michael Walsh63b70c02017-10-30 15:02:09 -0500118 @{ffdc_file_list}= Create List
Michael Walshe844e9a2017-04-20 16:51:10 -0500119
Michael Walsh63b70c02017-10-30 15:02:09 -0500120 ${index}= Get Index From List ${ffdc_function_list} ${description}
121 Run Keyword If '${index}' == '${-1}' Return from Keyword
122 ... ${ffdc_file_list}
123
124 ${status} ${ffdc_file_list}= Run Key ${keyword_name} ignore=1
125 [Return] ${ffdc_file_list}
George Keishing69e6f712016-09-12 06:30:09 -0500126
George Keishing69e6f712016-09-12 06:30:09 -0500127# Method : BMC FFDC Manifest #
128# Execute command on BMC and write to ffdc_report.txt #
George Keishing69e6f712016-09-12 06:30:09 -0500129
130BMC FFDC Manifest
Michael Walsh63b70c02017-10-30 15:02:09 -0500131 [Documentation] Run the ssh commands from FFDC_BMC_CMD and return a list
132 ... of generated files.
George Keishing69e6f712016-09-12 06:30:09 -0500133
Michael Walsh63b70c02017-10-30 15:02:09 -0500134 @{ffdc_file_list}= Create List ${FFDC_FILE_PATH}
135 @{entries}= Get FFDC Cmd Index
136 :FOR ${index} IN @{entries}
137 \ Iterate BMC Command List Pairs ${index}
138
139 [Return] ${ffdc_file_list}
George Keishing69e6f712016-09-12 06:30:09 -0500140
141
142Iterate BMC Command List Pairs
143 [Documentation] Feed in key pair list from dictionary to execute
144 [Arguments] ${key_index}
145
146 @{cmd_list}= Get ffdc bmc cmd ${key_index}
147 Set Suite Variable ${ENTRY_INDEX} ${key_index}
148 :FOR ${cmd} IN @{cmd_list}
149 \ Execute Command and Write FFDC ${cmd[0]} ${cmd[1]}
150
151
152Execute Command and Write FFDC
Michael Walsh63b70c02017-10-30 15:02:09 -0500153 [Documentation] Run a command on the BMC or OS, write the output to the
154 ... specified file and return a list of generated files.
155 [Arguments] ${key_index} ${cmd} ${logpath}=${FFDC_FILE_PATH}
156 ... ${target}=BMC
George Keishing69e6f712016-09-12 06:30:09 -0500157
Michael Walsh63b70c02017-10-30 15:02:09 -0500158 Run Keyword If '${logpath}' == '${FFDC_FILE_PATH}'
159 ... Write Cmd Output to FFDC File ${key_index} ${cmd}
160
161 @{ffdc_file_list}= Create List ${log_path}
George Keishing69e6f712016-09-12 06:30:09 -0500162
Michael Walshe53e47a2017-06-30 17:03:24 -0500163 ${cmd_buf}= Catenate ${target} Execute Command \ ${cmd} \ ignore_err=${1}
Michael Walshde5e9372018-11-15 11:28:23 -0600164 ... \ time_out=${FFDC_TIMEOUT}
Michael Walshe53e47a2017-06-30 17:03:24 -0500165 ${status} ${ret_values}= Run Key ${cmd_buf} ignore=${1}
Michael Walshde5e9372018-11-15 11:28:23 -0600166 # If the command times out, status will be 'FAIL'.
167 Return From Keyword If '${status}' == 'FAIL' ${ffdc_file_list}
Michael Walshe53e47a2017-06-30 17:03:24 -0500168
169 ${stdout}= Set Variable @{ret_values}[0]
170 ${stderr}= Set Variable @{ret_values}[1]
George Keishing69e6f712016-09-12 06:30:09 -0500171
Jeff Whitlock7d805b22017-01-20 14:04:33 -0600172 # Write stdout on success and stderr/stdout to the file on failure.
173 Run Keyword If $stderr == '${EMPTY}'
Sweta Potthuri15e6d2f2017-02-28 03:10:02 -0600174 ... Write Data To File ${stdout}${\n} ${logpath}
175 ... ELSE Write Data To File
Jeff Whitlock7d805b22017-01-20 14:04:33 -0600176 ... ERROR output:${\n}${stderr}${\n}Output:${\n}${stdout}${\n}
177 ... ${logpath}
George Keishing69e6f712016-09-12 06:30:09 -0500178
Michael Walsh63b70c02017-10-30 15:02:09 -0500179 [Return] ${ffdc_file_list}
180
George Keishing69e6f712016-09-12 06:30:09 -0500181
George Keishing69e6f712016-09-12 06:30:09 -0500182# Method : BMC FFDC Files #
183# Execute command on BMC and write to individual file #
184# based on the file name pre-defined in the list #
George Keishing69e6f712016-09-12 06:30:09 -0500185
186BMC FFDC Files
Michael Walsh63b70c02017-10-30 15:02:09 -0500187 [Documentation] Run the commands from FFDC_BMC_FILE and return a list of
188 ... generated files.
189
190 @{entries}= Get FFDC File Index
191 # Example of entries:
192 # entries:
193 # entries[0]: BMC FILES
194
195 @{ffdc_file_list}= Create List
196 :FOR ${index} IN @{entries}
197 \ ${ffdc_file_sub_list}= Create File and Write Data ${index}
198 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list}
199 ... ${ffdc_file_sub_list}
200
201 [Return] ${ffdc_file_list}
George Keishing69e6f712016-09-12 06:30:09 -0500202
203
204Create File and Write Data
Michael Walsh63b70c02017-10-30 15:02:09 -0500205 [Documentation] Run commands from FFDC_BMC_FILE to create FFDC files and
206 ... return a list of generated files.
207 [Arguments] ${key_index}
George Keishing69e6f712016-09-12 06:30:09 -0500208
Michael Walsh63b70c02017-10-30 15:02:09 -0500209 # Description of argument(s):
210 # key_index The index into the FFDC_BMC_FILE dictionary.
211
212 @{ffdc_file_list}= Create List
213 @{cmd_list}= Get FFDC BMC File ${key_index}
George Keishing69e6f712016-09-12 06:30:09 -0500214 :FOR ${cmd} IN @{cmd_list}
Michael Walsh63b70c02017-10-30 15:02:09 -0500215 \ ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]}.txt
216 \ ${ffdc_file_sub_list}= Execute Command and Write FFDC ${cmd[0]}
217 ... ${cmd[1]} ${logpath}
218 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list}
219 ... ${ffdc_file_sub_list}
Sivas SRR0d657e82017-03-13 01:00:34 -0500220
Michael Walsh63b70c02017-10-30 15:02:09 -0500221 [Return] ${ffdc_file_list}
George Keishing69e6f712016-09-12 06:30:09 -0500222
223
George Keishing69e6f712016-09-12 06:30:09 -0500224# Method : Log Test Case Status #
225# Creates test result history footprint for reference #
George Keishing69e6f712016-09-12 06:30:09 -0500226
227Log Test Case Status
Jeff Whitlock7d805b22017-01-20 14:04:33 -0600228 [Documentation] Test case execution result history.
229 ... Create once and append to this file
230 ... logs/test_history.txt
231 ... Format Date:Test suite:Test case:Status
232 ... 20160909214053719992:Test Warmreset:Test WarmReset via REST:FAIL
Michael Walshfa9f70f2017-04-21 16:00:18 -0500233
234 ${FFDC_DIR_PATH_STYLE}= Get Variable Value ${FFDC_DIR_PATH_STYLE}
235 ... ${EMPTY}
236 ${FFDC_DIR_PATH}= Get Variable Value ${FFDC_DIR_PATH} ${EMPTY}
237
238 Run Keyword If '${FFDC_DIR_PATH}' == '${EMPTY}' Set FFDC Defaults
239
240 Run Keyword If '${FFDC_DIR_PATH_STYLE}' == '${1}' Run Keywords
241 ... Set Global Variable ${FFDC_LOG_PATH} ${FFDC_DIR_PATH} AND
242 ... Set Global Variable ${TEST_HISTORY} ${FFDC_DIR_PATH}test_history.txt
243
George Keishing69e6f712016-09-12 06:30:09 -0500244 Create Directory ${FFDC_LOG_PATH}
245
246 ${exist}= Run Keyword and Return Status
247 ... OperatingSystem.File Should Exist ${TEST_HISTORY}
248
249 Run Keyword If '${exist}' == '${False}'
250 ... Create File ${TEST_HISTORY}
251
Michael Walshfa9f70f2017-04-21 16:00:18 -0500252 Rpvars TEST_HISTORY
253
George Keishing69e6f712016-09-12 06:30:09 -0500254 ${cur_time}= Get Current Time Stamp
255
256 Append To File ${TEST_HISTORY}
257 ... ${cur_time}:${SUITE_NAME}:${TEST_NAME}:${TEST_STATUS}${\n}
258
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500259
260Log FFDC Get Requests
Michael Walsh63b70c02017-10-30 15:02:09 -0500261 [Documentation] Run the get requests associated with the key and return a
262 ... list of generated files.
263 [Arguments] ${key_index}
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500264
Michael Walsh63b70c02017-10-30 15:02:09 -0500265 # Note: Output will be in JSON pretty_print format.
266
267 # Description of argument(s):
268 # key_index The key to the FFDC_GET_REQUEST dictionary that contains the
269 # get requests that are to be run.
270
271 @{ffdc_file_list}= Create List
272 @{cmd_list}= Get FFDC Get Request ${key_index}
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500273 :FOR ${cmd} IN @{cmd_list}
Michael Walsh63b70c02017-10-30 15:02:09 -0500274 \ ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]}.txt
275 \ ${resp}= OpenBMC Get Request ${cmd[1]} quiet=${1}
276 \ ${status}= Run Keyword and Return Status
277 ... Should Be Equal As Strings ${resp.status_code} ${HTTP_OK}
278 \ Run Keyword If '${status}' == '${False}' Continue For Loop
279 \ ${jsondata}= to json ${resp.content} pretty_print=True
280 \ Write Data To File ${\n}${jsondata}${\n} ${logpath}
281 \ Append To List ${ffdc_file_list} ${logpath}
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500282
Michael Walsh63b70c02017-10-30 15:02:09 -0500283 [Return] ${ffdc_file_list}
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500284
285BMC FFDC Get Requests
Michael Walsh63b70c02017-10-30 15:02:09 -0500286 [Documentation] Iterate over get request list and return a list of
287 ... generated files.
288
289 @{ffdc_file_list}= Create List
290
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500291 @{entries}= Get ffdc get request index
Michael Walsh63b70c02017-10-30 15:02:09 -0500292 # Example of entries:
293 # entries:
294 # entries[0]: GET REQUESTS
Gunnar Millsa812e0f2016-09-29 20:30:03 -0500295 :FOR ${index} IN @{entries}
Michael Walsh63b70c02017-10-30 15:02:09 -0500296 \ ${ffdc_file_sub_list}= Log FFDC Get Requests ${index}
297 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list}
298 ... ${ffdc_file_sub_list}
Gunnar Mills7e2cda22016-10-11 15:37:34 -0500299
Michael Walsh63b70c02017-10-30 15:02:09 -0500300 [Return] ${ffdc_file_list}
Gunnar Mills7e2cda22016-10-11 15:37:34 -0500301
Michael Walsh63b70c02017-10-30 15:02:09 -0500302Log OS All distros FFDC
303 [Documentation] Run commands from FFDC_OS_ALL_DISTROS_FILE to create FFDC
304 ... files and return a list of generated files.
305 [Arguments] ${key_index}
Gunnar Mills7e2cda22016-10-11 15:37:34 -0500306
Michael Walsh63b70c02017-10-30 15:02:09 -0500307 # Description of argument(s):
308 # key_index The index into the FFDC_OS_ALL_DISTROS_FILE dictionary.
309
310 @{ffdc_file_list}= Create List
311
312 @{cmd_list}= Get FFDC OS All Distros Call ${key_index}
Gunnar Mills7e2cda22016-10-11 15:37:34 -0500313 :FOR ${cmd} IN @{cmd_list}
Michael Walsh63b70c02017-10-30 15:02:09 -0500314 \ ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]}.txt
315 \ ${ffdc_file_sub_list}= Execute Command and Write FFDC ${cmd[0]}
316 ... ${cmd[1]} ${logpath} target=OS
317 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list}
318 ... ${ffdc_file_sub_list}
319
320 [Return] ${ffdc_file_list}
Gunnar Mills7e2cda22016-10-11 15:37:34 -0500321
322
Gunnar Millscce185d2016-10-17 17:04:15 -0500323Log OS SPECIFIC DISTRO FFDC
Michael Walsh63b70c02017-10-30 15:02:09 -0500324 [Documentation] Run commands from the FFDC_OS_<distro>_FILE to create FFDC
325 ... files and return a list of generated files.
326 [Arguments] ${key_index} ${linux_distro}
Gunnar Millscce185d2016-10-17 17:04:15 -0500327
Michael Walsh63b70c02017-10-30 15:02:09 -0500328 # Description of argument(s):
329 # key_index The index into the FFDC_OS_<distro>_FILE dictionary.
330 # linux_distro Your OS's linux distro (e.g. "UBUNTU", "RHEL", etc).
331
332 @{ffdc_file_list}= Create List
333
334 @{cmd_list}= Get FFDC OS Distro Call ${key_index} ${linux_distro}
Gunnar Millscce185d2016-10-17 17:04:15 -0500335 :FOR ${cmd} IN @{cmd_list}
Michael Walsh63b70c02017-10-30 15:02:09 -0500336 \ ${logpath}= Catenate SEPARATOR= ${LOG_PREFIX} ${cmd[0]}.txt
337 \ ${ffdc_file_sub_list}= Execute Command and Write FFDC ${cmd[0]}
338 ... ${cmd[1]} ${logpath} target=OS
339 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list}
340 ... ${ffdc_file_sub_list}
341
342 [Return] ${ffdc_file_list}
Gunnar Millscce185d2016-10-17 17:04:15 -0500343
344
George Keishingca8c4c62016-10-14 10:08:40 -0500345OS FFDC Files
Michael Walsh63b70c02017-10-30 15:02:09 -0500346 [Documentation] Run the commands from FFDC_OS_ALL_DISTROS_FILE to create
347 ... FFDC files and return a list of generated files.
Gunnar Millsaca140d2016-10-26 13:05:10 -0500348 [Arguments] ${OS_HOST}=${OS_HOST} ${OS_USERNAME}=${OS_USERNAME}
Michael Walsh63b70c02017-10-30 15:02:09 -0500349 ... ${OS_PASSWORD}=${OS_PASSWORD}
Gunnar Mills7e2cda22016-10-11 15:37:34 -0500350
Michael Walsh63b70c02017-10-30 15:02:09 -0500351 @{ffdc_file_list}= Create List
Gunnar Millsaca140d2016-10-26 13:05:10 -0500352
Michael Walsh63b70c02017-10-30 15:02:09 -0500353 Run Keyword If '${OS_HOST}' == '${EMPTY}' Run Keywords
354 ... Print Timen No OS Host provided so no OS FFDC will be done. AND
355 ... Return From Keyword ${ffdc_file_list}
Gunnar Millsaca140d2016-10-26 13:05:10 -0500356
Michael Walsh63b70c02017-10-30 15:02:09 -0500357 ${match_state}= Create Dictionary os_ping=^1$ os_login=^1$
358 ... os_run_cmd=^1$
359 ${status} ${ret_values}= Run Keyword and Ignore Error Check State
360 ... ${match_state} quiet=0
361
362 Run Keyword If '${status}' == 'FAIL' Run Keywords
Michael Walshc3b28d72017-11-16 10:43:14 -0600363 ... Print Timen The OS is not communicating so no OS FFDC will be done.\n
Michael Walsh63b70c02017-10-30 15:02:09 -0500364 ... AND
365 ... Return From Keyword ${ffdc_file_list}
Gunnar Millscce185d2016-10-17 17:04:15 -0500366
Michael Walshe53e47a2017-06-30 17:03:24 -0500367 ${stdout} ${stderr} ${rc}= OS Execute Command
368 ... . /etc/os-release; echo $ID ignore_err=${0}
369 Set Global Variable ${linux_distro} ${stdout}
Gunnar Millsaca140d2016-10-26 13:05:10 -0500370
Michael Walshe53e47a2017-06-30 17:03:24 -0500371 Rpvars linux_distro
Gunnar Millsaca140d2016-10-26 13:05:10 -0500372
Michael Walsh63b70c02017-10-30 15:02:09 -0500373 @{entries}= Get FFDC OS All Distros Index
Gunnar Mills7e2cda22016-10-11 15:37:34 -0500374 :FOR ${index} IN @{entries}
Michael Walsh63b70c02017-10-30 15:02:09 -0500375 \ ${ffdc_file_sub_list}= Log OS All distros FFDC ${index}
376 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list}
377 ... ${ffdc_file_sub_list}
Gunnar Millscce185d2016-10-17 17:04:15 -0500378
Jeff Whitlock7d805b22017-01-20 14:04:33 -0600379 Return From Keyword If
380 ... '${linux_distro}' == '${EMPTY}' or '${linux_distro}' == 'None'
Michael Walsh63b70c02017-10-30 15:02:09 -0500381 ... ${ffdc_file_list}
Gunnar Millscce185d2016-10-17 17:04:15 -0500382
383 @{entries}= Get ffdc os distro index ${linux_distro}
384 :FOR ${index} IN @{entries}
Michael Walsh63b70c02017-10-30 15:02:09 -0500385 \ ${ffdc_file_sub_list}= Log OS SPECIFIC DISTRO FFDC ${index}
386 ... ${linux_distro}
387 \ ${ffdc_file_list}= Smart Combine Lists ${ffdc_file_list}
388 ... ${ffdc_file_sub_list}
389
390 [Return] ${ffdc_file_list}
George Keishing7a520222017-02-27 09:44:30 -0600391
392
Steven Sombar96de5732017-08-17 09:04:52 -0500393System Inventory Files
Michael Walsh63b70c02017-10-30 15:02:09 -0500394 [Documentation] Copy systest os_inventory files and return a list of
395 ... generated files..
Steven Sombar96de5732017-08-17 09:04:52 -0500396 # The os_inventory files are the result of running
397 # systest/htx_hardbootme_test. If these files exist
398 # they are copied to the FFDC directory.
399 # Global variable ffdc_dir_path is the path name of the
400 # directory they are copied to.
Michael Walsh63b70c02017-10-30 15:02:09 -0500401
402 @{ffdc_file_list}= Create List
403
404 ${globex}= Set Variable os_inventory_*.json
405
406 @{file_list}= OperatingSystem.List Files In Directory . ${globex}
407
408 Copy Files ${globex} ${ffdc_dir_path}
409
410 : FOR ${file_name} IN @{file_list}
411 \ Append To List ${ffdc_file_list} ${ffdc_dir_path}${file_name}
412
413 Run Keyword and Ignore Error Remove Files ${globex}
414
415 [Return] ${ffdc_file_list}
Steven Sombar96de5732017-08-17 09:04:52 -0500416
417
George Keishing7a520222017-02-27 09:44:30 -0600418SCP Coredump Files
Michael Walsh63b70c02017-10-30 15:02:09 -0500419 [Documentation] Copy core dump files from BMC to local system and return a
420 ... list of generated file names.
421
422 @{ffdc_file_list}= Create List
Michael Walshe53e47a2017-06-30 17:03:24 -0500423
George Keishing7a520222017-02-27 09:44:30 -0600424 # Check if core dump exist in the /tmp
Michael Walshe53e47a2017-06-30 17:03:24 -0500425 ${core_files} ${stderr} ${rc}= BMC Execute Command ls /tmp/core_*
Michael Walsh63b70c02017-10-30 15:02:09 -0500426 ... ignore_err=${1}
427 Run Keyword If '${rc}' != '${0}' Return From Keyword ${ffdc_file_list}
428
429 @{core_list}= Split String ${core_files}
George Keishing7a520222017-02-27 09:44:30 -0600430 # Copy the core files
Michael Walsh6bad8412017-06-27 14:09:36 -0500431 Run Key U Open Connection for SCP
George Keishing7a520222017-02-27 09:44:30 -0600432 :FOR ${index} IN @{core_list}
Michael Walsh63b70c02017-10-30 15:02:09 -0500433 \ ${ffdc_file_path}= Catenate ${LOG_PREFIX}${index.lstrip("/tmp/")}
434 \ ${status}= Run Keyword and Return Status
435 ... scp.Get File ${index} ${ffdc_file_path}
436 \ Run Keyword If '${status}' == '${False}' Continue For Loop
437 \ Append To List ${ffdc_file_list} ${ffdc_file_path}
George Keishing7a520222017-02-27 09:44:30 -0600438 # Remove the file from remote to avoid re-copying on next FFDC call
Michael Walsh63b70c02017-10-30 15:02:09 -0500439 \ BMC Execute Command rm ${index} ignore_err=${1}
Michael Walshe53e47a2017-06-30 17:03:24 -0500440 # I can't find a way to do this: scp.Close Connection
George Keishing7a520222017-02-27 09:44:30 -0600441
Michael Walsh63b70c02017-10-30 15:02:09 -0500442 [Return] ${ffdc_file_list}
443
Sweta Potthuria82efd62017-10-18 05:34:59 -0500444SCP Dump Files
445 [Documentation] Copy all dump files from BMC to local system.
446
447 # Check if dumps exist
448 ${ffdc_file_list}= Scp Dumps ${FFDC_DIR_PATH} ${FFDC_PREFIX}
449
450 [Return] ${ffdc_file_list}
451
452Collect Dump Log
453 [Documentation] Collect dumps from dump entry.
454 [Arguments] ${log_prefix_path}=${LOG_PREFIX}
455
456 ${data}= Read Properties ${DUMP_ENTRY_URI}/enumerate quiet=${1}
457
458 # Grab the list of entries from dump/entry/
459 # The data shown below is the result of the "Get Dictionary Keys".
460 # Example:
461 # /xyz/openbmc_project/dump/entry/1
462 # /xyz/openbmc_project/dump/entry/2
463
464 ${dump_list}= Get Dictionary Keys ${data}
George Keishingeb7b4bc2017-03-13 12:04:28 -0500465
Michael Walsh02c70602018-10-04 15:24:30 -0500466
George Keishingeb7b4bc2017-03-13 12:04:28 -0500467Collect eSEL Log
Michael Walsh02c70602018-10-04 15:24:30 -0500468 [Documentation] Create raw and formatted eSEL files.
Sridevi Rameshb180c9f2017-08-06 10:27:41 -0500469 [Arguments] ${log_prefix_path}=${LOG_PREFIX}
470
Michael Walsh02c70602018-10-04 15:24:30 -0500471 # NOTE: If no eSEL.pl program can be located, then no formatted eSEL file
472 # will be generated.
473
474 # Description of argument(s):
475 # log_prefix_path The path prefix to be used in creating
476 # eSEL file path names. For example, if
477 # log_prefix_path is
478 # "/tmp/user1/dummy.181001.120000.", then
479 # this keyword will create
480 # /tmp/user1/dummy.181001.120000.esel (raw)
481 # and
482 # /tmp/user1/dummy.181001.120000.esel.txt
483 # (formatted).
484
Michael Walsh63b70c02017-10-30 15:02:09 -0500485 @{ffdc_file_list}= Create List
486
Michael Walsh02c70602018-10-04 15:24:30 -0500487 ${esels}= Get Esels
488 ${num_esels}= Evaluate len(${esels})
489 Rprint Vars num_esels
490 Return From Keyword If ${num_esels} == ${0} ${ffdc_file_list}
George Keishingeb7b4bc2017-03-13 12:04:28 -0500491
Sridevi Rameshb180c9f2017-08-06 10:27:41 -0500492 ${logpath}= Catenate SEPARATOR= ${log_prefix_path} esel
George Keishingeb7b4bc2017-03-13 12:04:28 -0500493 Create File ${logpath}
George Keishingeb7b4bc2017-03-13 12:04:28 -0500494
Michael Walsh02c70602018-10-04 15:24:30 -0500495 :FOR ${esel} IN @{esels}
496 \ Write Data To File "${esel}"${\n} ${logpath}
George Keishingb1ca69b2017-03-31 14:36:42 -0500497
Michael Walsh63b70c02017-10-30 15:02:09 -0500498 Append To List ${ffdc_file_list} ${logpath}
Michael Walsh02c70602018-10-04 15:24:30 -0500499
500 ${rc} ${output}= Shell Cmd which eSEL.pl show_err=0
501 Return From Keyword If ${rc} != ${0} ${ffdc_file_list}
502
503 Convert eSEL To Elog Format ${logpath}
Michael Walsh0192e9b2017-11-14 15:14:15 -0600504 Append To List ${ffdc_file_list} ${logpath}.txt
Michael Walsh63b70c02017-10-30 15:02:09 -0500505
506 [Return] ${ffdc_file_list}
507
George Keishingb1ca69b2017-03-31 14:36:42 -0500508
George Keishingb1ca69b2017-03-31 14:36:42 -0500509Convert eSEL To Elog Format
510 [Documentation] Execute parser tool on the eSEL data file to generate
Michael Walsha30dac72017-04-04 17:56:23 -0500511 ... formatted error log.
George Keishingb1ca69b2017-03-31 14:36:42 -0500512 [Arguments] ${esel_file_path}
Michael Walsh02c70602018-10-04 15:24:30 -0500513 # Description of argument(s):
George Keishing7c6342b2018-11-02 14:27:13 -0500514 # esel_file_path The path to the file containing raw eSEL
Michael Walsh02c70602018-10-04 15:24:30 -0500515 # data (e.g.
516 # "/tmp/user1/dummy.181001.120000.esel").
George Keishingb1ca69b2017-03-31 14:36:42 -0500517
Michael Walsha30dac72017-04-04 17:56:23 -0500518 # Note: The only way to get eSEL.pl to put the output in a particular
519 # directory is to cd to that directory.
520 ${cmd_buf}= Catenate cd $(dirname ${esel_file_path}) ; eSEL.pl -l
521 ... ${esel_file_path} -p decode_obmc_data
Michael Walsh02c70602018-10-04 15:24:30 -0500522 Qprint Issuing ${cmd_buf}
Michael Walsha30dac72017-04-04 17:56:23 -0500523 Run ${cmd_buf}
Michael Walsh02c70602018-10-04 15:24:30 -0500524 # The .binary file, which is generated by eSEL.pl, is of no use to us.
525 Remove File ${esel_file_path}.binary