blob: 147af86e20ffefffb3e741f20fc74c68c55a510a [file] [log] [blame]
George Keishingeefc07a2016-07-26 03:25:35 -05001*** Settings ***
George Keishing0a46d022017-01-30 08:11:43 -06002Documentation Test power on for HW CI.
George Keishingeefc07a2016-07-26 03:25:35 -05003
George Keishing22e57e12018-04-18 09:39:31 -05004Library DateTime
5
George Keishingd55a4be2016-08-26 03:28:17 -05006Resource ../lib/openbmc_ffdc.robot
George Keishing97e96532016-10-06 12:44:52 -05007Resource ../lib/utils.robot
George Keishing0a46d022017-01-30 08:11:43 -06008Resource ../lib/state_manager.robot
George Keishing766c6232018-02-02 11:42:55 -06009Resource ../lib/open_power_utils.robot
Michael Tritz96ed2772018-01-17 15:38:38 -060010Resource ../lib/ipmi_client.robot
George Keishing78ce8dc2018-03-30 11:49:06 -050011Resource ../lib/boot_utils.robot
George Keishing97e96532016-10-06 12:44:52 -050012
George Keishingbde09152018-06-14 14:53:08 -050013Test Teardown FFDC On Test Case Fail
George Keishing83ada4f2016-08-09 03:15:08 -050014
causten147f5752016-08-11 16:24:45 -050015Force Tags chassisboot
George Keishingeefc07a2016-07-26 03:25:35 -050016
George Keishing0af24412017-03-10 13:33:23 -060017*** Variables ***
18
19# User may pass LOOP_COUNT.
20# By default 2 cycle for CI/CT.
21${LOOP_COUNT} ${2}
22
George Keishing32ed4122017-05-13 03:06:39 -050023# Error strings to check from journald.
George Keishing22e57e12018-04-18 09:39:31 -050024${ERROR_REGEX} SEGV|core-dump
25${STANDBY_REGEX} Startup finished in
26
27# 3 minutes standby boot time.
28${startup_time_threshold} 180
George Keishing32ed4122017-05-13 03:06:39 -050029
Gunnar Mills7c8923f2016-12-12 21:19:52 -060030*** Test Cases ***
George Keishingeefc07a2016-07-26 03:25:35 -050031
George Keishing78ce8dc2018-03-30 11:49:06 -050032Verify Front And Rear LED At Standby
33 [Documentation] Front and Rear LED should be off at standby.
34 [Tags] Verify_Front_And_Rear_LED_At_Standby
35
36 REST Power Off stack_mode=skip quiet=1
37 Verify Identify LED State Off
38
George Keishing0a46d022017-01-30 08:11:43 -060039Power On Test
40 [Documentation] Power off and on.
41 [Tags] Power_On_Test
George Keishingbde09152018-06-14 14:53:08 -050042 [Setup] Test Setup Execution
43 [Teardown] Test Teardown Execution
George Keishingeefc07a2016-07-26 03:25:35 -050044
George Keishing0af24412017-03-10 13:33:23 -060045 Repeat Keyword ${LOOP_COUNT} times Host Off And On
George Keishing97e96532016-10-06 12:44:52 -050046
George Keishing32ed4122017-05-13 03:06:39 -050047Check For Application Failures
48 [Documentation] Parse the journal log and check for failures.
49 [Tags] Check_For_Application_Failures
50
Joy Onyerikwub9922612018-05-14 12:36:57 -050051 ${journal_log} ${stderr} ${rc}= BMC Execute Command
52 ... journalctl --no-pager | egrep '${ERROR_REGEX}' ignore_err=1
George Keishing32ed4122017-05-13 03:06:39 -050053
54 Should Be Empty ${journal_log}
55
George Keishing3e53aa02018-07-12 10:07:52 -050056
Michael Tritzcb64a7c2018-02-05 15:25:17 -060057Verify Uptime Average Against Threshold
58 [Documentation] Compare BMC average boot time to a constant threshold.
59 [Tags] Verify_Uptime_Average_Against_Threshold
60
61 OBMC Reboot (off)
George Keishing22e57e12018-04-18 09:39:31 -050062
George Keishing3e53aa02018-07-12 10:07:52 -050063 Wait Until Keyword Succeeds
64 ... 1 min 30 sec Check BMC Uptime Journald
George Keishing22e57e12018-04-18 09:39:31 -050065
Michael Tritzcb64a7c2018-02-05 15:25:17 -060066
George Keishing8a5f1472018-04-04 10:08:47 -050067Test SSH And IPMI Connections
68 [Documentation] Try SSH and IPMI commands to verify each connection.
69 [Tags] Test_SSH_And_IPMI_Connections
70
71 Check If BMC Is Up 3 min 20 sec
72 Wait Until Keyword Succeeds
73 ... 3 min 30 sec Wait for BMC state Ready
74
75 BMC Execute Command true
76 Run IPMI Standard Command chassis status
77
George Keishing97e96532016-10-06 12:44:52 -050078*** Keywords ***
George Keishing0a46d022017-01-30 08:11:43 -060079
George Keishingfcc6d782018-01-24 00:44:03 -060080Test Setup Execution
81 [Documentation] Do test case setup tasks.
82 Start SOL Console Logging
83 Set Auto Reboot ${0}
84
George Keishing2f0f4b32018-01-21 23:25:47 -060085Test Teardown Execution
George Keishing0a46d022017-01-30 08:11:43 -060086 [Documentation] Collect FFDC and SOL log.
Gunnar Millseac1af22016-11-14 15:30:09 -060087 FFDC On Test Case Fail
George Keishing97e96532016-10-06 12:44:52 -050088 ${sol_log}= Stop SOL Console Logging
89 Log ${sol_log}
George Keishing2f0f4b32018-01-21 23:25:47 -060090 Set Auto Reboot ${1}
George Keishing0af24412017-03-10 13:33:23 -060091
92Host Off And On
93 [Documentation] Verify power off and on.
94
95 Initiate Host PowerOff
George Keishing0af24412017-03-10 13:33:23 -060096
97 Initiate Host Boot
George Keishing766c6232018-02-02 11:42:55 -060098 Verify OCC State
George Keishing383d29b2017-03-25 11:10:52 -050099
George Keishing5f2f7f52017-06-30 09:17:53 -0500100 # TODO: Host shutdown race condition.
101 # Wait 30 seconds before Powering Off.
102 Sleep 30s
Michael Tritzcb64a7c2018-02-05 15:25:17 -0600103
George Keishing3e53aa02018-07-12 10:07:52 -0500104
105Check BMC Uptime Journald
106 [Documentation] Check BMC journald uptime entry.
107
108 # Example output:
109 # Startup finished in 10.074s (kernel) + 2min 23.506s (userspace) = 2min 33.581s.
110 ${startup_time} ${stderr} ${rc}= BMC Execute Command
111 ... journalctl --no-pager | egrep '${STANDBY_REGEX}' | tail -1
112 Should Not Be Empty ${startup_time}
113
114 # Example time conversion:
115 # Get the "2min 33.581s" string total time taken to reach standby.
116 # Convert time "2min 33.581s" to unit 153.581.
117 ${startup_time}= Convert Time ${startup_time.split("= ",1)[1].strip(".")}
118
119 Should Be True ${startup_time} < ${startup_time_threshold}
120 ... msg=${startup_time} greater than threshold value of ${startup_time_threshold}.
121