George Keishing | eefc07a | 2016-07-26 03:25:35 -0500 | [diff] [blame] | 1 | *** Settings *** |
George Keishing | 0a46d02 | 2017-01-30 08:11:43 -0600 | [diff] [blame] | 2 | Documentation Test power on for HW CI. |
George Keishing | eefc07a | 2016-07-26 03:25:35 -0500 | [diff] [blame] | 3 | |
George Keishing | 22e57e1 | 2018-04-18 09:39:31 -0500 | [diff] [blame] | 4 | Library DateTime |
| 5 | |
George Keishing | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 6 | Resource ../lib/openbmc_ffdc.robot |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 7 | Resource ../lib/utils.robot |
George Keishing | 0a46d02 | 2017-01-30 08:11:43 -0600 | [diff] [blame] | 8 | Resource ../lib/state_manager.robot |
George Keishing | 766c623 | 2018-02-02 11:42:55 -0600 | [diff] [blame] | 9 | Resource ../lib/open_power_utils.robot |
Michael Tritz | 96ed277 | 2018-01-17 15:38:38 -0600 | [diff] [blame] | 10 | Resource ../lib/ipmi_client.robot |
George Keishing | 78ce8dc | 2018-03-30 11:49:06 -0500 | [diff] [blame] | 11 | Resource ../lib/boot_utils.robot |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 12 | |
George Keishing | bde0915 | 2018-06-14 14:53:08 -0500 | [diff] [blame] | 13 | Test Teardown FFDC On Test Case Fail |
George Keishing | 83ada4f | 2016-08-09 03:15:08 -0500 | [diff] [blame] | 14 | |
causten | 147f575 | 2016-08-11 16:24:45 -0500 | [diff] [blame] | 15 | Force Tags chassisboot |
George Keishing | eefc07a | 2016-07-26 03:25:35 -0500 | [diff] [blame] | 16 | |
George Keishing | 0af2441 | 2017-03-10 13:33:23 -0600 | [diff] [blame] | 17 | *** Variables *** |
| 18 | |
| 19 | # User may pass LOOP_COUNT. |
| 20 | # By default 2 cycle for CI/CT. |
| 21 | ${LOOP_COUNT} ${2} |
| 22 | |
George Keishing | 32ed412 | 2017-05-13 03:06:39 -0500 | [diff] [blame] | 23 | # Error strings to check from journald. |
George Keishing | 22e57e1 | 2018-04-18 09:39:31 -0500 | [diff] [blame] | 24 | ${ERROR_REGEX} SEGV|core-dump |
| 25 | ${STANDBY_REGEX} Startup finished in |
| 26 | |
| 27 | # 3 minutes standby boot time. |
| 28 | ${startup_time_threshold} 180 |
George Keishing | 32ed412 | 2017-05-13 03:06:39 -0500 | [diff] [blame] | 29 | |
Gunnar Mills | 7c8923f | 2016-12-12 21:19:52 -0600 | [diff] [blame] | 30 | *** Test Cases *** |
George Keishing | eefc07a | 2016-07-26 03:25:35 -0500 | [diff] [blame] | 31 | |
George Keishing | 78ce8dc | 2018-03-30 11:49:06 -0500 | [diff] [blame] | 32 | Verify 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 Keishing | 0a46d02 | 2017-01-30 08:11:43 -0600 | [diff] [blame] | 39 | Power On Test |
| 40 | [Documentation] Power off and on. |
| 41 | [Tags] Power_On_Test |
George Keishing | bde0915 | 2018-06-14 14:53:08 -0500 | [diff] [blame] | 42 | [Setup] Test Setup Execution |
| 43 | [Teardown] Test Teardown Execution |
George Keishing | eefc07a | 2016-07-26 03:25:35 -0500 | [diff] [blame] | 44 | |
George Keishing | 0af2441 | 2017-03-10 13:33:23 -0600 | [diff] [blame] | 45 | Repeat Keyword ${LOOP_COUNT} times Host Off And On |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 46 | |
George Keishing | 32ed412 | 2017-05-13 03:06:39 -0500 | [diff] [blame] | 47 | Check For Application Failures |
| 48 | [Documentation] Parse the journal log and check for failures. |
| 49 | [Tags] Check_For_Application_Failures |
| 50 | |
Joy Onyerikwu | b992261 | 2018-05-14 12:36:57 -0500 | [diff] [blame] | 51 | ${journal_log} ${stderr} ${rc}= BMC Execute Command |
| 52 | ... journalctl --no-pager | egrep '${ERROR_REGEX}' ignore_err=1 |
George Keishing | 32ed412 | 2017-05-13 03:06:39 -0500 | [diff] [blame] | 53 | |
| 54 | Should Be Empty ${journal_log} |
| 55 | |
George Keishing | 3e53aa0 | 2018-07-12 10:07:52 -0500 | [diff] [blame] | 56 | |
Michael Tritz | cb64a7c | 2018-02-05 15:25:17 -0600 | [diff] [blame] | 57 | Verify 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 Keishing | 22e57e1 | 2018-04-18 09:39:31 -0500 | [diff] [blame] | 62 | |
George Keishing | 3e53aa0 | 2018-07-12 10:07:52 -0500 | [diff] [blame] | 63 | Wait Until Keyword Succeeds |
| 64 | ... 1 min 30 sec Check BMC Uptime Journald |
George Keishing | 22e57e1 | 2018-04-18 09:39:31 -0500 | [diff] [blame] | 65 | |
Michael Tritz | cb64a7c | 2018-02-05 15:25:17 -0600 | [diff] [blame] | 66 | |
George Keishing | 8a5f147 | 2018-04-04 10:08:47 -0500 | [diff] [blame] | 67 | Test 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 Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 78 | *** Keywords *** |
George Keishing | 0a46d02 | 2017-01-30 08:11:43 -0600 | [diff] [blame] | 79 | |
George Keishing | fcc6d78 | 2018-01-24 00:44:03 -0600 | [diff] [blame] | 80 | Test Setup Execution |
| 81 | [Documentation] Do test case setup tasks. |
| 82 | Start SOL Console Logging |
| 83 | Set Auto Reboot ${0} |
| 84 | |
George Keishing | 2f0f4b3 | 2018-01-21 23:25:47 -0600 | [diff] [blame] | 85 | Test Teardown Execution |
George Keishing | 0a46d02 | 2017-01-30 08:11:43 -0600 | [diff] [blame] | 86 | [Documentation] Collect FFDC and SOL log. |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 87 | FFDC On Test Case Fail |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 88 | ${sol_log}= Stop SOL Console Logging |
| 89 | Log ${sol_log} |
George Keishing | 2f0f4b3 | 2018-01-21 23:25:47 -0600 | [diff] [blame] | 90 | Set Auto Reboot ${1} |
George Keishing | 0af2441 | 2017-03-10 13:33:23 -0600 | [diff] [blame] | 91 | |
| 92 | Host Off And On |
| 93 | [Documentation] Verify power off and on. |
| 94 | |
| 95 | Initiate Host PowerOff |
George Keishing | 0af2441 | 2017-03-10 13:33:23 -0600 | [diff] [blame] | 96 | |
| 97 | Initiate Host Boot |
George Keishing | 766c623 | 2018-02-02 11:42:55 -0600 | [diff] [blame] | 98 | Verify OCC State |
George Keishing | 383d29b | 2017-03-25 11:10:52 -0500 | [diff] [blame] | 99 | |
George Keishing | 5f2f7f5 | 2017-06-30 09:17:53 -0500 | [diff] [blame] | 100 | # TODO: Host shutdown race condition. |
| 101 | # Wait 30 seconds before Powering Off. |
| 102 | Sleep 30s |
Michael Tritz | cb64a7c | 2018-02-05 15:25:17 -0600 | [diff] [blame] | 103 | |
George Keishing | 3e53aa0 | 2018-07-12 10:07:52 -0500 | [diff] [blame] | 104 | |
| 105 | Check 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 | |