George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Power cycle loop. This is to test where network service |
| 3 | ... becomes unavailable during AC-Cycle stress test. |
| 4 | |
| 5 | Resource ../lib/rest_client.robot |
| 6 | Resource ../lib/pdu/pdu.robot |
| 7 | Resource ../lib/utils.robot |
| 8 | Resource ../lib/openbmc_ffdc.robot |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 9 | Resource ../lib/state_manager.robot |
George Keishing | bf1500d | 2017-10-30 12:47:47 -0500 | [diff] [blame] | 10 | Resource ../lib/boot_utils.robot |
George Keishing | c26e74d | 2017-11-17 00:45:20 -0600 | [diff] [blame] | 11 | Resource ../lib/code_update_utils.robot |
George Keishing | 9867bed | 2018-02-04 22:31:36 -0600 | [diff] [blame] | 12 | Library ../lib/bmc_ssh_utils.py |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 13 | |
George Keishing | 94659a2 | 2017-11-17 00:03:05 -0600 | [diff] [blame] | 14 | Test Teardown Test Teardown Execution |
George Keishing | c26e74d | 2017-11-17 00:45:20 -0600 | [diff] [blame] | 15 | Suite Setup Suite Setup Execution |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 16 | |
| 17 | *** Variables *** |
| 18 | ${LOOP_COUNT} ${50} |
| 19 | |
| 20 | *** Test Cases *** |
| 21 | |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 22 | Run Multiple Power Cycle |
| 23 | [Documentation] Execute multiple power cycles. |
| 24 | [Setup] Validate Parameters |
| 25 | [Tags] Run_Multiple_Power_Cycle |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 26 | |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 27 | # By default run test for 50 loops, else user input iteration. |
| 28 | # Fails immediately if any of the execution rounds fail and |
| 29 | # check if BMC is still pinging and FFDC is collected. |
| 30 | Repeat Keyword ${LOOP_COUNT} times Power Cycle System Via PDU |
| 31 | |
| 32 | |
George Keishing | bf1500d | 2017-10-30 12:47:47 -0500 | [diff] [blame] | 33 | Run Multiple BMC Reset Via REST |
| 34 | [Documentation] Execute multiple reboots via REST. |
| 35 | [Tags] Run_Multiple_BMC_Reset_Via_REST |
| 36 | |
| 37 | # By default run test for 50 loops, else user input iteration. |
| 38 | # Fails immediately if any of the execution rounds fail and |
| 39 | # check if BMC is still pinging and FFDC is collected. |
| 40 | Repeat Keyword ${LOOP_COUNT} times BMC REST Reset Cycle |
| 41 | |
| 42 | |
| 43 | Run Multiple BMC Reset Via Reboot |
| 44 | [Documentation] Execute multiple reboots via "reboot" command. |
| 45 | [Tags] Run_Multiple_BMC_Reset_Via_Reboot |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 46 | |
| 47 | # By default run test for 50 loops, else user input iteration. |
| 48 | # Fails immediately if any of the execution rounds fail and |
| 49 | # check if BMC is still pinging and FFDC is collected. |
| 50 | Repeat Keyword ${LOOP_COUNT} times BMC Reboot Cycle |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 51 | |
| 52 | |
| 53 | *** Keywords *** |
| 54 | |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 55 | Power Cycle System Via PDU |
| 56 | [Documentation] Power cycle system and wait for BMC to reach Ready state. |
| 57 | Log "Doing power cycle" |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 58 | PDU Power Cycle |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 59 | Check If BMC Is Up 5 min 10 sec |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 60 | |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 61 | Wait Until Keyword Succeeds 10 min 10 sec Is BMC Ready |
George Keishing | b39a679 | 2017-11-10 22:58:52 -0600 | [diff] [blame] | 62 | Verify BMC RTC And UTC Time Drift |
George Keishing | c26e74d | 2017-11-17 00:45:20 -0600 | [diff] [blame] | 63 | Field Mode Should Be Enabled |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 64 | |
| 65 | |
George Keishing | bf1500d | 2017-10-30 12:47:47 -0500 | [diff] [blame] | 66 | BMC REST Reset Cycle |
| 67 | [Documentation] Reset BMC via REST and wait for ready state. |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 68 | Log "Doing Reboot cycle" |
George Keishing | 137882c | 2017-10-28 09:19:05 -0500 | [diff] [blame] | 69 | ${bmc_version_before}= Get BMC Version |
George Keishing | ca709b0 | 2017-02-02 11:38:19 -0600 | [diff] [blame] | 70 | Initiate BMC Reboot |
| 71 | Wait Until Keyword Succeeds 10 min 10 sec Is BMC Ready |
George Keishing | 137882c | 2017-10-28 09:19:05 -0500 | [diff] [blame] | 72 | ${bmc_version_after}= Get BMC Version |
| 73 | Should Be Equal ${bmc_version_before} ${bmc_version_after} |
George Keishing | b39a679 | 2017-11-10 22:58:52 -0600 | [diff] [blame] | 74 | Verify BMC RTC And UTC Time Drift |
George Keishing | c26e74d | 2017-11-17 00:45:20 -0600 | [diff] [blame] | 75 | Field Mode Should Be Enabled |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 76 | |
| 77 | |
George Keishing | bf1500d | 2017-10-30 12:47:47 -0500 | [diff] [blame] | 78 | BMC Reboot Cycle |
| 79 | [Documentation] Reboot BMC and wait for ready state. |
| 80 | Log "Doing Reboot cycle" |
| 81 | ${bmc_version_before}= Get BMC Version |
| 82 | OBMC Reboot (off) stack_mode=normal |
| 83 | ${bmc_version_after}= Get BMC Version |
| 84 | Should Be Equal ${bmc_version_before} ${bmc_version_after} |
George Keishing | b39a679 | 2017-11-10 22:58:52 -0600 | [diff] [blame] | 85 | Verify BMC RTC And UTC Time Drift |
George Keishing | c26e74d | 2017-11-17 00:45:20 -0600 | [diff] [blame] | 86 | Field Mode Should Be Enabled |
George Keishing | bf1500d | 2017-10-30 12:47:47 -0500 | [diff] [blame] | 87 | |
| 88 | |
George Keishing | 94659a2 | 2017-11-17 00:03:05 -0600 | [diff] [blame] | 89 | Test Teardown Execution |
| 90 | [Documentation] Do test case tear-down. |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 91 | Ping Host ${OPENBMC_HOST} |
Gunnar Mills | eac1af2 | 2016-11-14 15:30:09 -0600 | [diff] [blame] | 92 | FFDC On Test Case Fail |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 93 | |
George Keishing | 9867bed | 2018-02-04 22:31:36 -0600 | [diff] [blame] | 94 | # Example of the u-boot-env o/p: |
| 95 | # root@witherspoon:~# grep fieldmode /dev/mtd/u-boot-env |
| 96 | # fieldmode=true |
| 97 | # fieldmode=true |
| 98 | ${field_mode}= |
| 99 | ... BMC Execute Command grep fieldmode /dev/mtd/u-boot-env |
| 100 | Should Contain "${field_mode[0]}" fieldmode=true |
| 101 | ... msg=u-boot-env shows "fieldmode" is not set to true. |
| 102 | |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 103 | |
| 104 | Validate Parameters |
George Keishing | 94659a2 | 2017-11-17 00:03:05 -0600 | [diff] [blame] | 105 | [Documentation] Validate PDU parameters. |
George Keishing | 92abc99 | 2016-10-18 13:29:25 -0500 | [diff] [blame] | 106 | Should Not Be Empty ${PDU_IP} |
| 107 | Should Not Be Empty ${PDU_TYPE} |
| 108 | Should Not Be Empty ${PDU_SLOT_NO} |
| 109 | Should Not Be Empty ${PDU_USERNAME} |
| 110 | Should Not Be Empty ${PDU_PASSWORD} |
| 111 | |
George Keishing | c26e74d | 2017-11-17 00:45:20 -0600 | [diff] [blame] | 112 | |
| 113 | Suite Setup Execution |
| 114 | [Documentation] Enable field mode. |
| 115 | Enable Field Mode And Verify Unmount |
| 116 | Field Mode Should Be Enabled |