blob: 1102fd7927f058a3ad1b245b6f2c5e0ad77300fd [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 Keishingcd3df882018-09-20 12:18:18 -050012Resource ../lib/remote_logging_utils.robot
George Keishing97e96532016-10-06 12:44:52 -050013
George Keishingbde09152018-06-14 14:53:08 -050014Test Teardown FFDC On Test Case Fail
George Keishing83ada4f2016-08-09 03:15:08 -050015
causten147f5752016-08-11 16:24:45 -050016Force Tags chassisboot
George Keishingeefc07a2016-07-26 03:25:35 -050017
George Keishing0af24412017-03-10 13:33:23 -060018*** Variables ***
19
20# User may pass LOOP_COUNT.
21# By default 2 cycle for CI/CT.
22${LOOP_COUNT} ${2}
23
George Keishing32ed4122017-05-13 03:06:39 -050024# Error strings to check from journald.
George Keishing22e57e12018-04-18 09:39:31 -050025${ERROR_REGEX} SEGV|core-dump
26${STANDBY_REGEX} Startup finished in
27
28# 3 minutes standby boot time.
29${startup_time_threshold} 180
George Keishing32ed4122017-05-13 03:06:39 -050030
Gunnar Mills7c8923f2016-12-12 21:19:52 -060031*** Test Cases ***
George Keishingeefc07a2016-07-26 03:25:35 -050032
George Keishingcd3df882018-09-20 12:18:18 -050033Test Remote Logging Configuration
34 [Documentation] Configure remote log server and verify configuration.
35 [Tags] Test_Remote_Logging_Configuration
36
37 # Dummy IP and port to update /etc/rsyslog.d/server.conf
38 Configure Remote Log Server With Parameters
39 ... remote_host=10.10.10.10 remote_port=514
40
41 Verify Rsyslog Config On BMC remote_host=10.10.10.10 remote_port=514
42
43 # Reset to default configuration.
44 Configure Remote Log Server With Parameters
45 ... remote_host=${EMPTY} remote_port=0
46
47
George Keishing78ce8dc2018-03-30 11:49:06 -050048Verify Front And Rear LED At Standby
49 [Documentation] Front and Rear LED should be off at standby.
50 [Tags] Verify_Front_And_Rear_LED_At_Standby
51
52 REST Power Off stack_mode=skip quiet=1
53 Verify Identify LED State Off
54
George Keishingc5fef582018-07-18 08:41:28 -050055
George Keishingc3d23432018-08-28 00:36:38 -050056Verify Application Services Running At Standby
57 [Documentation] Check if there are services that have not completed.
58 [Tags] Verify_Application_Services_Running_At_Standby
59
60 # Application services running on the BMC are not tightly coupled.
61 # At standby, there shouldn't be any pending job waiting to complete.
62 # Examples:
63 # Failure o/p:
64 # root@witherspoon:~# systemctl list-jobs --no-pager | cat
65 # JOB UNIT TYPE STATE
66 # 35151 xyz.openbmc_project.ObjectMapper.service start running
67 # 1 jobs listed.
68 #
69 # Success o/p:
70 # root@witherspoon:~# systemctl list-jobs --no-pager | cat
71 # No jobs running.
72
73 REST Power Off stack_mode=skip quiet=1
74 ${stdout} ${stderr} ${rc}= BMC Execute Command
75 ... systemctl list-jobs --no-pager | cat
76 Should Be Equal As Strings ${stdout} No jobs running.
77
78
George Keishing0a46d022017-01-30 08:11:43 -060079Power On Test
80 [Documentation] Power off and on.
81 [Tags] Power_On_Test
George Keishingbde09152018-06-14 14:53:08 -050082 [Setup] Test Setup Execution
83 [Teardown] Test Teardown Execution
George Keishingeefc07a2016-07-26 03:25:35 -050084
George Keishing0af24412017-03-10 13:33:23 -060085 Repeat Keyword ${LOOP_COUNT} times Host Off And On
George Keishing97e96532016-10-06 12:44:52 -050086
George Keishingc5fef582018-07-18 08:41:28 -050087
George Keishing32ed4122017-05-13 03:06:39 -050088Check For Application Failures
89 [Documentation] Parse the journal log and check for failures.
90 [Tags] Check_For_Application_Failures
91
George Keishingc5fef582018-07-18 08:41:28 -050092 Check For Regex In Journald ${ERROR_REGEX} error_check=${0}
George Keishing32ed4122017-05-13 03:06:39 -050093
George Keishing3e53aa02018-07-12 10:07:52 -050094
Michael Tritzcb64a7c2018-02-05 15:25:17 -060095Verify Uptime Average Against Threshold
96 [Documentation] Compare BMC average boot time to a constant threshold.
97 [Tags] Verify_Uptime_Average_Against_Threshold
98
99 OBMC Reboot (off)
George Keishing22e57e12018-04-18 09:39:31 -0500100
George Keishing3e53aa02018-07-12 10:07:52 -0500101 Wait Until Keyword Succeeds
102 ... 1 min 30 sec Check BMC Uptime Journald
George Keishing22e57e12018-04-18 09:39:31 -0500103
Michael Tritzcb64a7c2018-02-05 15:25:17 -0600104
George Keishing8a5f1472018-04-04 10:08:47 -0500105Test SSH And IPMI Connections
106 [Documentation] Try SSH and IPMI commands to verify each connection.
107 [Tags] Test_SSH_And_IPMI_Connections
108
109 Check If BMC Is Up 3 min 20 sec
110 Wait Until Keyword Succeeds
111 ... 3 min 30 sec Wait for BMC state Ready
112
113 BMC Execute Command true
114 Run IPMI Standard Command chassis status
115
George Keishing97e96532016-10-06 12:44:52 -0500116*** Keywords ***
George Keishing0a46d022017-01-30 08:11:43 -0600117
George Keishingfcc6d782018-01-24 00:44:03 -0600118Test Setup Execution
119 [Documentation] Do test case setup tasks.
120 Start SOL Console Logging
121 Set Auto Reboot ${0}
122
George Keishing2f0f4b32018-01-21 23:25:47 -0600123Test Teardown Execution
George Keishing0a46d022017-01-30 08:11:43 -0600124 [Documentation] Collect FFDC and SOL log.
Gunnar Millseac1af22016-11-14 15:30:09 -0600125 FFDC On Test Case Fail
George Keishing97e96532016-10-06 12:44:52 -0500126 ${sol_log}= Stop SOL Console Logging
127 Log ${sol_log}
George Keishing2f0f4b32018-01-21 23:25:47 -0600128 Set Auto Reboot ${1}
George Keishing0af24412017-03-10 13:33:23 -0600129
130Host Off And On
131 [Documentation] Verify power off and on.
132
133 Initiate Host PowerOff
George Keishing0af24412017-03-10 13:33:23 -0600134
135 Initiate Host Boot
George Keishing766c6232018-02-02 11:42:55 -0600136 Verify OCC State
George Keishing383d29b2017-03-25 11:10:52 -0500137
George Keishing5f2f7f52017-06-30 09:17:53 -0500138 # TODO: Host shutdown race condition.
139 # Wait 30 seconds before Powering Off.
140 Sleep 30s
Michael Tritzcb64a7c2018-02-05 15:25:17 -0600141
George Keishing3e53aa02018-07-12 10:07:52 -0500142
143Check BMC Uptime Journald
144 [Documentation] Check BMC journald uptime entry.
145
146 # Example output:
147 # Startup finished in 10.074s (kernel) + 2min 23.506s (userspace) = 2min 33.581s.
148 ${startup_time} ${stderr} ${rc}= BMC Execute Command
149 ... journalctl --no-pager | egrep '${STANDBY_REGEX}' | tail -1
150 Should Not Be Empty ${startup_time}
151
152 # Example time conversion:
153 # Get the "2min 33.581s" string total time taken to reach standby.
154 # Convert time "2min 33.581s" to unit 153.581.
155 ${startup_time}= Convert Time ${startup_time.split("= ",1)[1].strip(".")}
156
157 Should Be True ${startup_time} < ${startup_time_threshold}
158 ... msg=${startup_time} greater than threshold value of ${startup_time_threshold}.