George Keishing | 6c2ac91 | 2017-05-12 06:36:21 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Module to test OS reboot functionality. |
| 3 | |
George Keishing | 60b5e61 | 2019-07-05 12:11:51 -0500 | [diff] [blame] | 4 | Resource ../../lib/bmc_redfish_resource.robot |
George Keishing | aae72aa | 2019-07-05 11:56:49 -0500 | [diff] [blame] | 5 | Resource ../../lib/openbmc_ffdc.robot |
| 6 | Resource ../../lib/boot_utils.robot |
George Keishing | 6c2ac91 | 2017-05-12 06:36:21 -0500 | [diff] [blame] | 7 | |
George Keishing | 329aac3 | 2017-06-05 12:03:26 -0500 | [diff] [blame] | 8 | Suite Setup Run Key Start SOL Console Logging |
ganesanb | 70aab07 | 2022-08-04 07:40:42 +0000 | [diff] [blame] | 9 | Test Setup Redfish.Login |
Steven Sombar | fac31e9 | 2017-12-15 09:40:34 -0600 | [diff] [blame] | 10 | Test Teardown Test Teardown Execution |
George Keishing | 6c2ac91 | 2017-05-12 06:36:21 -0500 | [diff] [blame] | 11 | |
| 12 | *** Variables *** |
| 13 | |
| 14 | # User defined boot test iteration. |
George Keishing | 329aac3 | 2017-06-05 12:03:26 -0500 | [diff] [blame] | 15 | ${BOOT_LOOP_COUNT} ${1} |
George Keishing | 6c2ac91 | 2017-05-12 06:36:21 -0500 | [diff] [blame] | 16 | |
| 17 | *** Test Cases *** |
| 18 | |
| 19 | Host Reboot Loop |
| 20 | [Documentation] Boot OS and trigger reboot and expect |
| 21 | ... OS to boot back. |
George Keishing | d316625 | 2018-10-24 12:10:27 -0500 | [diff] [blame] | 22 | [Tags] Host_Reboot_Loop |
| 23 | |
George Keishing | 6c2ac91 | 2017-05-12 06:36:21 -0500 | [diff] [blame] | 24 | # 1. Boot OS |
| 25 | # 2. Verify OS is booted |
| 26 | # 3. Issue "reboot" from OS |
| 27 | # 4. Verify if OS is booted back |
| 28 | |
George Keishing | 329aac3 | 2017-06-05 12:03:26 -0500 | [diff] [blame] | 29 | # By default run test for 1 loop, else user input iteration. |
George Keishing | 6c2ac91 | 2017-05-12 06:36:21 -0500 | [diff] [blame] | 30 | # Fails immediately if any of the execution rounds fail. |
| 31 | |
| 32 | # Note: Host Reboot is implemented by the OBMC Boot Test tool. |
| 33 | # OBMC Boot Test will take the necessary steps to get the OBMC |
| 34 | # to a host powered on state before attempting the Host Reboot. |
George Keishing | e523fc0 | 2020-03-23 12:28:01 -0500 | [diff] [blame] | 35 | Repeat Keyword ${BOOT_LOOP_COUNT} times RF SYS GracefulRestart |
George Keishing | 6c2ac91 | 2017-05-12 06:36:21 -0500 | [diff] [blame] | 36 | |
| 37 | *** Keywords *** |
George Keishing | 329aac3 | 2017-06-05 12:03:26 -0500 | [diff] [blame] | 38 | |
Steven Sombar | fac31e9 | 2017-12-15 09:40:34 -0600 | [diff] [blame] | 39 | Test Teardown Execution |
George Keishing | 329aac3 | 2017-06-05 12:03:26 -0500 | [diff] [blame] | 40 | [Documentation] Do the post test teardown. |
| 41 | # 1. Capture FFDC on test failure. |
| 42 | # 2. Stop SOL logging. |
| 43 | # 3. Close all open SSH connections. |
| 44 | |
| 45 | FFDC On Test Case Fail |
| 46 | |
| 47 | ${keyword_buf}= Catenate Stop SOL Console Logging |
| 48 | ... \ targ_file_path=${EXECDIR}${/}logs${/}SOL.log |
| 49 | Run Key ${keyword_buf} |
| 50 | |
| 51 | Close All Connections |