blob: 0fd88e83b6fc9968f865c367b0f3b8d7a3392838 [file] [log] [blame]
Chris Austenb29d2e82016-06-07 12:25:35 -05001*** Settings ***
2Documentation This suite is for testing System time in Open BMC.
3
Rahul Maheshwari93f68092016-10-24 02:42:12 -05004Resource ../lib/rest_client.robot
George Keishing4d6c1da2016-07-15 05:51:22 -05005Resource ../lib/ipmi_client.robot
George Keishingd55a4be2016-08-26 03:28:17 -05006Resource ../lib/openbmc_ffdc.robot
Rahul Maheshwari2c725042017-01-29 22:55:28 -06007Resource ../lib/state_manager.robot
George Keishingab1bd922016-12-05 05:29:59 -06008Resource ../lib/resource.txt
Chris Austenb29d2e82016-06-07 12:25:35 -05009
George Keishing4d6c1da2016-07-15 05:51:22 -050010Library OperatingSystem
11Library DateTime
Chris Austenb29d2e82016-06-07 12:25:35 -050012
Rahul Maheshwari06174f22017-03-06 03:17:09 -060013Test Setup Open Connection And Log In
14Test Teardown Post Test Case Execution
Chris Austenb29d2e82016-06-07 12:25:35 -050015
16*** Variables ***
Rahul Maheshwarif8785902016-12-12 01:23:13 -060017${SYSTEM_TIME_INVALID} 01/01/1969 00:00:00
18${SYSTEM_TIME_VALID} 02/29/2016 09:10:00
19${SYSTEM_TIME_VALID_EPOCH} 1456737000 #Equivalent epoch time for 02/29/2016 09:10:00
20${ALLOWED_TIME_DIFF} 3
21${SETTING_HOST} ${SETTINGS_URI}host0
George Keishingab1bd922016-12-05 05:29:59 -060022
Chris Austenb29d2e82016-06-07 12:25:35 -050023*** Test Cases ***
24
25Get System Time
Rahul Maheshwarif8785902016-12-12 01:23:13 -060026 [Documentation] Get system time using IPMI and verify that it matches
27 ... with BMC date time.
George Keishing845fb822016-11-01 13:23:19 -050028 [Tags] Get_System_Time
Chris Austenb29d2e82016-06-07 12:25:35 -050029
Rahul Maheshwarif8785902016-12-12 01:23:13 -060030 ${resp}= Run IPMI Standard Command sel time get
31 ${ipmidate}= Convert Date ${resp} date_format=%m/%d/%Y %H:%M:%S
32 ... exclude_millis=yes
33 ${bmcdate}= Get BMC Time Using IPMI
34 ${diff}= Subtract Date From Date ${bmcdate} ${ipmidate}
Sridevi Rameshae444822017-02-13 05:51:52 -060035 ${diff}= Convert To Number ${diff}
Rahul Maheshwarif8785902016-12-12 01:23:13 -060036 Should Be True ${diff} < ${ALLOWED_TIME_DIFF}
37 ... Open BMC time does not match with IPMI sel time
Chris Austenb29d2e82016-06-07 12:25:35 -050038
39Set Valid System Time
Rahul Maheshwarif8785902016-12-12 01:23:13 -060040 [Documentation] Set system time using IPMI and verify that it is
41 ... correctly set in BMC.
George Keishing845fb822016-11-01 13:23:19 -050042 [Tags] Set_Valid_System_Time
Chris Austenb29d2e82016-06-07 12:25:35 -050043
Rahul Maheshwari7588f872017-04-13 05:51:24 -050044 Set Time Owner HOST
45 Set Time Mode MANUAL
46
Rahul Maheshwarif8785902016-12-12 01:23:13 -060047 ${resp}= Run IPMI Standard Command sel time set "${SYSTEM_TIME_VALID}"
48 ${setdate}= Convert Date ${SYSTEM_TIME_VALID}
49 ... date_format=%m/%d/%Y %H:%M:%S exclude_millis=yes
50 ${bmcdate}= Get BMC Time Using IPMI
51 ${diff}= Subtract Date From Date ${bmcdate} ${setdate}
Sridevi Rameshae444822017-02-13 05:51:52 -060052 ${diff}= Convert To Number ${diff}
Rahul Maheshwarif8785902016-12-12 01:23:13 -060053 Should Be True ${diff} < ${ALLOWED_TIME_DIFF}
54 ... Open BMC time does not match with set time
Chris Austenb29d2e82016-06-07 12:25:35 -050055
56Set Invalid System Time
Rahul Maheshwarif8785902016-12-12 01:23:13 -060057 [Documentation] Set system time with invalid time using IPMI and verify
58 ... that it should throw error.
George Keishing845fb822016-11-01 13:23:19 -050059 [Tags] Set_Invalid_System_Time
Chris Austenb29d2e82016-06-07 12:25:35 -050060
Rahul Maheshwari7588f872017-04-13 05:51:24 -050061 Set Time Owner HOST
62 Set Time Mode MANUAL
63
Rahul Maheshwarif8785902016-12-12 01:23:13 -060064 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
65 ... sel time set "${SYSTEM_TIME_INVALID}"
66 Should Start With ${msg} Specified time could not be parsed
Chris Austenb29d2e82016-06-07 12:25:35 -050067
68Set System Time with no time
Rahul Maheshwarif8785902016-12-12 01:23:13 -060069 [Documentation] Set system time with no time using IPMI and verify
70 ... that it should throw error.
George Keishing845fb822016-11-01 13:23:19 -050071 [Tags] Set_System_Time_with_no_time
Chris Austenb29d2e82016-06-07 12:25:35 -050072
Rahul Maheshwari7588f872017-04-13 05:51:24 -050073 Set Time Owner HOST
74 Set Time Mode MANUAL
75
Rahul Maheshwarif8785902016-12-12 01:23:13 -060076 ${msg}= Run Keyword And Expect Error * Run IPMI Standard Command
77 ... sel time set ""
78 Should Start With ${msg} Specified time could not be parsed
Chris Austenb29d2e82016-06-07 12:25:35 -050079
Rahul Maheshwari93f68092016-10-24 02:42:12 -050080
Rahul Maheshwarif8785902016-12-12 01:23:13 -060081Set BMC Time With BMC And Manual
82 #Operation Owner Mode Status BMC Time Host Time
83 Set BMC Time BMC MANUAL ok Set Change
Rahul Maheshwari93f68092016-10-24 02:42:12 -050084
Rahul Maheshwarif8785902016-12-12 01:23:13 -060085 [Documentation] Set BMC time when time owner is BMC and time mode is
86 ... manual.
87 [Tags] Set_BMC_Time_With_BMC_And_Manual
88 [Template] Set Time Using REST
Rahul Maheshwari93f68092016-10-24 02:42:12 -050089
Rahul Maheshwarif8785902016-12-12 01:23:13 -060090Set BMC Time With Both And Manual
91 #Operation Owner Mode Status BMC Time Host Time
92 Set BMC Time BOTH MANUAL ok Set Change
Rahul Maheshwari93f68092016-10-24 02:42:12 -050093
Rahul Maheshwarif8785902016-12-12 01:23:13 -060094 [Documentation] Set BMC time when time owner is Both and time mode is
95 ... manual.
96 [Tags] Set_BMC_Time_With_Both_And_Manual
97 [Template] Set Time Using REST
Rahul Maheshwari93f68092016-10-24 02:42:12 -050098
Rahul Maheshwari93f68092016-10-24 02:42:12 -050099
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600100Set BMC Time With Split And Manual
101 #Operation Owner Mode Status BMC Time Host Time
102 Set BMC Time SPLIT MANUAL ok Set No Change
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500103
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600104 [Documentation] Set BMC time when time owner is Split and time mode is
105 ... manual.
106 [Tags] Set_BMC_Time_With_Split_And_Manual
107 [Template] Set Time Using REST
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500108
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600109Set BMC Time With BMC And NTP
110 #Operation Owner Mode Status BMC Time Host Time
111 Set BMC Time BMC NTP error Not Set No Change
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500112
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600113 [Documentation] Set BMC time when time owner is BMC and time mode is
114 ... NTP.
115 [Tags] Set_BMC_Time_With_BMC_And_NTP
116 [Template] Set Time Using REST
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500117
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600118Set BMC Time With Host And Manual
119 #Operation Owner Mode Status BMC Time Host Time
120 Set BMC Time HOST MANUAL error Not Set No Change
121 [Documentation] Set BMC time when time owner is Host and time mode is
122 ... Manual.
123 [Tags] Set_BMC_Time_With_Host_And_Manual
124 [Template] Set Time Using REST
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500125
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600126Set BMC Time With Both And NTP
127 #Operation Owner Mode Status BMC Time Host Time
128 Set BMC Time BOTH NTP error Not Set No Change
129
130 [Documentation] Set BMC time when time owner is Both and time mode is
131 ... NTP.
132 [Tags] Set_BMC_Time_With_Both_And_NTP
133 [Template] Set Time Using REST
134
135Set BMC Time With Split And NTP
136 #Operation Owner Mode Status BMC Time Host Time
137 Set BMC Time SPLIT NTP error Not Set No Change
138
139 [Documentation] Set BMC time when time owner is Split and time mode is
140 ... NTP.
141 [Tags] Set_BMC_Time_With_Split_And_NTP
142 [Template] Set Time Using REST
143
144Set Host Time With Host And Manual
145 #Operation Owner Mode Status BMC Time Host Time
146 Set Host Time HOST MANUAL ok Change Set
147
148 [Documentation] Set host time when time owner is host and time mode is
149 ... manual.
150 [Tags] Set_Host_Time_With_Host_And_Manual
151 [Template] Set Time Using REST
152
153Set Host Time With Both And Manual
154 #Operation Owner Mode Status BMC Time Host Time
155 Set Host Time BOTH MANUAL ok Change Set
156
157 [Documentation] Set host time when time owner is both and time mode is
158 ... manual.
159 [Tags] Set_Host_Time_With_Both_And_Manual
160 [Template] Set Time Using REST
161
162Set Host Time With Both And NTP
163 #Operation Owner Mode Status BMC Time Host Time
164 Set Host Time BOTH NTP ok No Change Set
165
166 [Documentation] Set host time when time owner is both and time mode is
167 ... NTP.
168 [Tags] Set_Host_Time_With_Both_And_NTP
169 [Template] Set Time Using REST
170
171Set Host Time With Split And Manual
172 #Operation Owner Mode Status BMC Time Host Time
173 Set Host Time SPLIT MANUAL ok No Change Set
174
175 [Documentation] Set host time when time owner is split and time mode is
176 ... manual.
177 [Tags] Set_Host_Time_With_Split_And_Manual
178 [Template] Set Time Using REST
179
180Set Host Time With Split And NTP
181 #Operation Owner Mode Status BMC Time HOST Time
182 Set Host Time SPLIT NTP ok No Change Set
183
184 [Documentation] Set host time when time owner is split and time mode is
185 ... NTP.
186 [Tags] Set_Host_Time_With_Split_And_NTP
187 [Template] Set Time Using REST
188
189Set Host Time With BMC And Manual
190 #Operation Owner Mode Status BMC Time HOST Time
191 Set Host Time BMC MANUAL error No Change Not Set
192 [Documentation] Set host time when time owner is BMC and time mode is
193 ... Manual.
194 [Tags] Set_Host_Time_With_BMC_And_Manual
195 [Template] Set Time Using REST
196
197Set Host Time With BMC Owner NTP
198 #Operation Owner Mode Status BMC Time HOST Time
199 Set Host Time BMC NTP error No Change Not Set
200 [Documentation] Set host time when time owner is BMC and time mode is
201 ... NTP.
202 [Tags] Set_Host_Time_With_BMC_And_NTP
203 [Template] Set Time Using REST
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500204
205Set Invalid Time Mode
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600206 [Documentation] Set time mode with invalid value using REST and verify
207 ... that it should throw error.
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500208 [Tags] Set_Invalid_Time_Mode
209
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600210 ${timemode}= Set Variable abc
211 ${valueDict}= Create Dictionary data=${timemode}
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500212
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600213 ${resp}= OpenBMC Put Request
214 ... ${SETTING_HOST}/attr/time_mode data=${valueDict}
215 ${jsondata}= to JSON ${resp.content}
216 Should Be Equal ${jsondata['status']} error
217
218 ${mode}= Read Attribute ${SETTING_HOST} time_mode
219 Should Not Be Equal ${mode} abc
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500220
221Set Invalid Time Owner
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600222 [Documentation] Set time owner with invalid value using REST and verify
223 ... that it should throw error.
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500224 [Tags] Set_Invalid_Time_Owner
225
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600226 ${timeowner}= Set Variable xyz
227 ${valueDict}= Create Dictionary data=${timeowner}
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500228
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600229 ${resp}= OpenBMC Put Request
230 ... ${SETTING_HOST}/attr/time_owner data=${valueDict}
231 ${jsondata}= to JSON ${resp.content}
232 Should Be Equal ${jsondata['status']} error
233
234 ${owner}= Read Attribute ${SETTING_HOST} time_owner
235 Should Not Be Equal ${owner} xyz
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500236
237
Chris Austenb29d2e82016-06-07 12:25:35 -0500238*** Keywords ***
239
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600240Get BMC Time Using IPMI
241 [Documentation] Returns BMC time of the system via IPMI
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500242
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600243 ${stdout} ${stderr} ${output}=
244 ... Execute Command date "+%m/%d/%Y %H:%M:%S"
245 ... return_stdout=True return_stderr= True return_rc=True
246 Should Be Equal ${output} ${0} msg=${stderr}
247
248 ${resp}= Convert Date ${stdout} date_format=%m/%d/%Y %H:%M:%S
249 ... exclude_millis=yes
250 Should Not Be Empty ${resp}
251 [Return] ${resp}
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500252
253Set Time Owner
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600254 [Arguments] ${args}
255 [Documentation] Set time owner of the system via REST
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500256
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600257 ${timeowner}= Set Variable ${args}
258 ${valueDict}= Create Dictionary data=${timeowner}
259
260 ${resp}= OpenBMC Put Request
261 ... ${SETTING_HOST}/attr/time_owner data=${valueDict}
262 ${jsondata}= to JSON ${resp.content}
263
Rahul Maheshwari2c725042017-01-29 22:55:28 -0600264 ${host_state}= Get Host State
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600265
Rahul Maheshwari2c725042017-01-29 22:55:28 -0600266 Run Keyword If '${host_state}' == 'Off'
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600267 ... Log System is in off state so owner change will get applied.
268 ... ELSE Run keyword
Rahul Maheshwari2c725042017-01-29 22:55:28 -0600269 ... Initiate Host PowerOff
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600270
271 ${owner}= Read Attribute ${SETTING_HOST} time_owner
272 Should Be Equal ${owner} ${args}
273
274 ${current_mode}=
275 ... Read Attribute ${TIME_MANAGER_URI.rstrip("/")} curr_time_owner
276 Should Be Equal ${current_mode} ${args}
277
278 [Return] ${jsondata['status']}
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500279
280Set Time Mode
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600281 [Arguments] ${args}
282 [Documentation] Set time mode of the system via REST
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500283
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600284 ${timemode}= Set Variable ${args}
285 ${valueDict}= Create Dictionary data=${timemode}
286
287 ${resp}= OpenBMC Put Request
288 ... ${SETTING_HOST}/attr/time_mode data=${valueDict}
289 ${jsondata}= to JSON ${resp.content}
290 Sleep 5s
291
292 ${mode}= Read Attribute ${SETTING_HOST} time_mode
293 Should Be Equal ${mode} ${args}
294
295 ${current_mode}=
296 ... Read Attribute ${TIME_MANAGER_URI.rstrip("/")} curr_time_mode
297 Should Be Equal ${current_mode} ${args}
298
299Get BMC Time Using REST
300 [Documentation] Returns BMC time of the system via REST
301 ... Time Format : YYYY-MM-DD hh:mm:ss.mil
302 ... eg. 2016-12-14 07:09:58.000
303
304 @{time_owner}= Create List BMC
305 ${data}= Create Dictionary data=@{time_owner}
306 ${resp}= OpenBMC Post Request
307 ... ${TIME_MANAGER_URI}action/GetTime data=${data}
308 ${jsondata}= To JSON ${resp.content}
309 ${time_epoch}= Get From List ${jsondata["data"]} 0
310 ${resp}= Convert Date
311 ... ${time_epoch} date_format=%a %b %d %H:%M:%S %Y %Z
312 [Return] ${resp}
313
314Get HOST Time Using REST
315 [Documentation] Returns HOST time of the system via REST
316 ... Time Format : YYYY-MM-DD hh:mm:ss.mil
317 ... eg. 2016-12-14 07:09:58.000
318
319 @{time_owner}= Create List HOST
320 ${data}= Create Dictionary data=@{time_owner}
321 ${resp}= OpenBMC Post Request
322 ... ${TIME_MANAGER_URI}action/GetTime data=${data}
323 ${jsondata}= To JSON ${resp.content}
324 ${time_epoch}= Get From List ${jsondata["data"]} 0
325 ${resp}= Convert Date
326 ... ${time_epoch} date_format=%a %b %d %H:%M:%S %Y %Z
327 [Return] ${resp}
328
329Set Time Using REST
330 [Arguments] ${operation} ${owner} ${mode} ${status} ${bmc_time}
331 ... ${host_time}
332 [Documentation] Set BMC or Host time on system via REST.
333 ... Description of arguments:
334 ... operation : Set BMC/Host time
335 ... owner: Time owner
336 ... mode: Time mode
337 ... status: Expected status of set BMC time URI
338 ... bmc_time: Status of BMC time after operation
339 ... host_time: Status of HOST time after operation
340 ... Set - Given time is set
341 ... Not Set - Given time is not set
342 ... Change - time is change
343 ... No Change - time is not change
344
345 Set Time Owner ${owner}
346 Set Time Mode ${mode}
347
348 ${setdate}= Convert Date ${SYSTEM_TIME_VALID}
349 ... date_format=%m/%d/%Y %H:%M:%S exclude_millis=yes
350
351 @{bmc_date_list}= Create List BMC ${setdate}
352 @{host_date_list}= Create List HOST ${SYSTEM_TIME_VALID_EPOCH}
353
354 ${time_owner_date}= Set Variable If
355 ... '${operation}' == 'Set BMC Time' ${bmc_date_list}
356 ... '${operation}' == 'Set Host Time' ${host_date_list}
357
Sridevi Rameshae444822017-02-13 05:51:52 -0600358 ${start_time}= Get Current Date
359
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600360 ${old_bmc_time}= Get BMC Time Using REST
361 ${old_host_time}= Get HOST Time Using REST
362
363 ${data}= Create Dictionary data=${time_owner_date}
364 ${resp}= OpenBMC Post Request
365 ... ${TIME_MANAGER_URI}action/SetTime data=${data}
366 ${jsondata}= To JSON ${resp.content}
367 Should Be Equal As Strings ${jsondata['status']} ${status}
368
369 ${new_bmc_time}= Get BMC Time Using REST
370 ${new_host_time}= Get HOST Time Using REST
371
Sridevi Rameshae444822017-02-13 05:51:52 -0600372 ${end_time}= Get Current Date
373 ${time_duration}= Subtract Date From Date ${start_time} ${end_time}
374 ${time_duration} Evaluate abs(${time_duration})
375
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600376 ${bmc_diff_set_new}=
377 ... Subtract Date From Date ${setdate} ${new_bmc_time}
378 ${bmc_diff_set_new}= Evaluate abs(${bmc_diff_set_new})
379 ${bmc_diff_old_new}=
380 ... Subtract Date From Date ${old_bmc_time} ${new_bmc_time}
381 ${bmc_diff_old_new}= Evaluate abs(${bmc_diff_old_new})
382
383 ${host_diff_set_new}=
384 ... Subtract Date From Date ${setdate} ${new_host_time}
385 ${host_diff_set_new}= Evaluate abs(${host_diff_set_new})
386 ${host_diff_old_new}=
387 ... Subtract Date From Date ${old_host_time} ${new_host_time}
388 ${host_diff_old_new}= Evaluate abs(${host_diff_old_new})
389
390 Run Keyword If '${bmc_time}' == 'Not Set'
Sridevi Rameshae444822017-02-13 05:51:52 -0600391 ... Should Be True ${bmc_diff_set_new} >= ${time_duration}
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600392 ... ELSE IF '${bmc_time}' == 'Set'
Sridevi Rameshae444822017-02-13 05:51:52 -0600393 ... Should Be True ${bmc_diff_set_new} <= ${time_duration}
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600394 ... ELSE IF '${bmc_time}' == 'No Change'
Sridevi Rameshae444822017-02-13 05:51:52 -0600395 ... Should Be True ${bmc_diff_old_new} <= ${time_duration}
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600396 ... ELSE IF '${bmc_time}' == 'Change'
Sridevi Rameshae444822017-02-13 05:51:52 -0600397 ... Should Be True ${bmc_diff_old_new} >= ${time_duration}
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600398
399 Run Keyword If '${host_time}' == 'No Change'
Sridevi Rameshae444822017-02-13 05:51:52 -0600400 ... Should Be True ${host_diff_old_new} <= ${time_duration}
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600401 ... ELSE IF '${host_time}' == 'Change'
Sridevi Rameshae444822017-02-13 05:51:52 -0600402 ... Should Be True ${host_diff_old_new} >= ${time_duration}
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600403 ... ELSE IF '${host_time}' == 'Not Set'
Sridevi Rameshae444822017-02-13 05:51:52 -0600404 ... Should Be True ${host_diff_set_new} >= ${time_duration}
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600405 ... ELSE IF '${host_time}' == 'Set'
Sridevi Rameshae444822017-02-13 05:51:52 -0600406 ... Should Be True ${host_diff_set_new} <= ${time_duration}
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500407
408
Rahul Maheshwari06174f22017-03-06 03:17:09 -0600409Post Test Case Execution
410 [Documentation] Do the post test teardown.
411 ... 1. Capture FFDC on test failure.
412 ... 2. Sets defaults for time mode and owner.
413 ... 3. Close all open SSH connections.
Rahul Maheshwari93f68092016-10-24 02:42:12 -0500414
Rahul Maheshwari06174f22017-03-06 03:17:09 -0600415 FFDC On Test Case Fail
Rahul Maheshwarif8785902016-12-12 01:23:13 -0600416 Set Time Owner BMC
417 Set Time Mode NTP
Rahul Maheshwari06174f22017-03-06 03:17:09 -0600418 Close All Connections