blob: 677bbc8eb1bc487d4af7d15d2e9ca4599375ee34 [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 Keishingfcc6d782018-01-24 00:44:03 -060013Test Setup Test Setup Execution
George Keishing2f0f4b32018-01-21 23:25:47 -060014Test Teardown Test Teardown Execution
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 Keishing78ce8dc2018-03-30 11:49:06 -050033Verify Front And Rear LED At Standby
34 [Documentation] Front and Rear LED should be off at standby.
35 [Tags] Verify_Front_And_Rear_LED_At_Standby
36
37 REST Power Off stack_mode=skip quiet=1
38 Verify Identify LED State Off
39
George Keishing0a46d022017-01-30 08:11:43 -060040Power On Test
41 [Documentation] Power off and on.
42 [Tags] Power_On_Test
George Keishingeefc07a2016-07-26 03:25:35 -050043
George Keishing0af24412017-03-10 13:33:23 -060044 Repeat Keyword ${LOOP_COUNT} times Host Off And On
George Keishing97e96532016-10-06 12:44:52 -050045
George Keishing32ed4122017-05-13 03:06:39 -050046Check For Application Failures
47 [Documentation] Parse the journal log and check for failures.
48 [Tags] Check_For_Application_Failures
49
50 Open Connection And Log In
51
52 ${journal_log}= Execute Command On BMC
53 ... journalctl --no-pager | egrep '${ERROR_REGEX}'
54
55 Should Be Empty ${journal_log}
56
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
63 # Example output:
64 # Startup finished in 10.074s (kernel) + 2min 23.506s (userspace) = 2min 33.581s.
65 ${startup_time} ${stderr} ${rc}= BMC Execute Command
66 ... journalctl --no-pager | egrep '${STANDBY_REGEX}' | tail -1
67 Should Not Be Empty ${startup_time}
68
69 # Example time conversion:
70 # Get the "2min 33.581s" string total time taken to reach standby.
71 # Convert time "2min 33.581s" to unit 153.581.
72 ${startup_time}= Convert Time ${startup_time.split("= ",1)[1].strip(".")}
73
74 Should Be True ${startup_time} < ${startup_time_threshold}
75 ... msg=${startup_time} greater than threshold value of ${startup_time_threshold}.
Michael Tritzcb64a7c2018-02-05 15:25:17 -060076
George Keishing8a5f1472018-04-04 10:08:47 -050077Test SSH And IPMI Connections
78 [Documentation] Try SSH and IPMI commands to verify each connection.
79 [Tags] Test_SSH_And_IPMI_Connections
80
81 Check If BMC Is Up 3 min 20 sec
82 Wait Until Keyword Succeeds
83 ... 3 min 30 sec Wait for BMC state Ready
84
85 BMC Execute Command true
86 Run IPMI Standard Command chassis status
87
George Keishing97e96532016-10-06 12:44:52 -050088*** Keywords ***
George Keishing0a46d022017-01-30 08:11:43 -060089
George Keishingfcc6d782018-01-24 00:44:03 -060090Test Setup Execution
91 [Documentation] Do test case setup tasks.
92 Start SOL Console Logging
93 Set Auto Reboot ${0}
94
George Keishing2f0f4b32018-01-21 23:25:47 -060095Test Teardown Execution
George Keishing0a46d022017-01-30 08:11:43 -060096 [Documentation] Collect FFDC and SOL log.
Gunnar Millseac1af22016-11-14 15:30:09 -060097 FFDC On Test Case Fail
George Keishing97e96532016-10-06 12:44:52 -050098 ${sol_log}= Stop SOL Console Logging
99 Log ${sol_log}
George Keishing2f0f4b32018-01-21 23:25:47 -0600100 Set Auto Reboot ${1}
George Keishing0af24412017-03-10 13:33:23 -0600101
102Host Off And On
103 [Documentation] Verify power off and on.
104
105 Initiate Host PowerOff
George Keishing0af24412017-03-10 13:33:23 -0600106
107 Initiate Host Boot
George Keishing766c6232018-02-02 11:42:55 -0600108 Verify OCC State
George Keishing383d29b2017-03-25 11:10:52 -0500109
George Keishing5f2f7f52017-06-30 09:17:53 -0500110 # TODO: Host shutdown race condition.
111 # Wait 30 seconds before Powering Off.
112 Sleep 30s
Michael Tritzcb64a7c2018-02-05 15:25:17 -0600113
114Measure BMC Boot Time
115 [Documentation] Reboot the BMC and collect uptime.
116
117 Open Connection And Log In
118 ${uptime}=
119 ... Execute Command cut -d " " -f 1 /proc/uptime| cut -d "." -f 1
120 ${uptime}= Convert To Integer ${uptime}
121 [return] ${uptime}