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 | d55a4be | 2016-08-26 03:28:17 -0500 | [diff] [blame] | 4 | Resource ../lib/openbmc_ffdc.robot |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 5 | Resource ../lib/utils.robot |
George Keishing | 0a46d02 | 2017-01-30 08:11:43 -0600 | [diff] [blame] | 6 | Resource ../lib/state_manager.robot |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 7 | |
| 8 | Test Setup Start SOL Console Logging |
| 9 | Test Teardown Test Exit Logs |
George Keishing | 83ada4f | 2016-08-09 03:15:08 -0500 | [diff] [blame] | 10 | |
causten | 147f575 | 2016-08-11 16:24:45 -0500 | [diff] [blame] | 11 | Force Tags chassisboot |
George Keishing | eefc07a | 2016-07-26 03:25:35 -0500 | [diff] [blame] | 12 | |
George Keishing | 0af2441 | 2017-03-10 13:33:23 -0600 | [diff] [blame] | 13 | *** Variables *** |
| 14 | |
| 15 | # User may pass LOOP_COUNT. |
| 16 | # By default 2 cycle for CI/CT. |
| 17 | ${LOOP_COUNT} ${2} |
| 18 | |
George Keishing | 32ed412 | 2017-05-13 03:06:39 -0500 | [diff] [blame] | 19 | # Error strings to check from journald. |
| 20 | ${ERROR_REGEX} SEGV|core-dump |
| 21 | |
Gunnar Mills | 7c8923f | 2016-12-12 21:19:52 -0600 | [diff] [blame] | 22 | *** Test Cases *** |
George Keishing | eefc07a | 2016-07-26 03:25:35 -0500 | [diff] [blame] | 23 | |
George Keishing | 0a46d02 | 2017-01-30 08:11:43 -0600 | [diff] [blame] | 24 | Power On Test |
| 25 | [Documentation] Power off and on. |
| 26 | [Tags] Power_On_Test |
George Keishing | eefc07a | 2016-07-26 03:25:35 -0500 | [diff] [blame] | 27 | |
George Keishing | 0af2441 | 2017-03-10 13:33:23 -0600 | [diff] [blame] | 28 | Repeat Keyword ${LOOP_COUNT} times Host Off And On |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 29 | |
George Keishing | 32ed412 | 2017-05-13 03:06:39 -0500 | [diff] [blame] | 30 | |
| 31 | Check For Application Failures |
| 32 | [Documentation] Parse the journal log and check for failures. |
| 33 | [Tags] Check_For_Application_Failures |
| 34 | |
| 35 | Open Connection And Log In |
| 36 | |
| 37 | ${journal_log}= Execute Command On BMC |
| 38 | ... journalctl --no-pager | egrep '${ERROR_REGEX}' |
| 39 | |
| 40 | Should Be Empty ${journal_log} |
| 41 | |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 42 | *** Keywords *** |
George Keishing | 0a46d02 | 2017-01-30 08:11:43 -0600 | [diff] [blame] | 43 | |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 44 | Test Exit Logs |
George Keishing | 0a46d02 | 2017-01-30 08:11:43 -0600 | [diff] [blame] | 45 | [Documentation] Collect FFDC and SOL log. |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 46 | FFDC On Test Case Fail |
George Keishing | 97e9653 | 2016-10-06 12:44:52 -0500 | [diff] [blame] | 47 | ${sol_log}= Stop SOL Console Logging |
| 48 | Log ${sol_log} |
George Keishing | 0af2441 | 2017-03-10 13:33:23 -0600 | [diff] [blame] | 49 | |
| 50 | Host Off And On |
| 51 | [Documentation] Verify power off and on. |
| 52 | |
| 53 | Initiate Host PowerOff |
George Keishing | 0af2441 | 2017-03-10 13:33:23 -0600 | [diff] [blame] | 54 | |
| 55 | Initiate Host Boot |
George Keishing | 383d29b | 2017-03-25 11:10:52 -0500 | [diff] [blame] | 56 | |
George Keishing | 5f2f7f5 | 2017-06-30 09:17:53 -0500 | [diff] [blame] | 57 | # TODO: Host shutdown race condition. |
| 58 | # Wait 30 seconds before Powering Off. |
| 59 | Sleep 30s |