George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Trigger code update to a target BMC. |
| 3 | ... Execution Method : |
| 4 | ... python -m robot -v OPENBMC_HOST:<hostname> |
| 5 | ... -v FILE_PATH:<path/*all.tar> update_bmc.robot |
| 6 | ... |
| 7 | ... Code update method BMC using REST |
| 8 | ... Update work flow sequence: |
| 9 | ... - User input BMC File existence check |
| 10 | ... - Ping Test and REST authentication |
George Keishing | 8db0e1b | 2016-10-20 13:46:54 -0500 | [diff] [blame] | 11 | ... - Set Host Power host setting Policy to RESTORE_LAST_STATE |
| 12 | ... On reboot this policy would ensure the BMC comes |
| 13 | ... online and stays at HOST_POWERED_OFF state. |
George Keishing | dc5aa58e9 | 2016-09-27 01:35:11 -0500 | [diff] [blame] | 14 | ... - Issue poweroff |
George Keishing | 0bd59f1 | 2016-12-14 10:39:21 -0600 | [diff] [blame] | 15 | ... - Prune archived journal logs |
George Keishing | dc5aa58e9 | 2016-09-27 01:35:11 -0500 | [diff] [blame] | 16 | ... - Prepare for Update |
George Keishing | dc5aa58e9 | 2016-09-27 01:35:11 -0500 | [diff] [blame] | 17 | ... - Wait for BMC to come online clean |
George Keishing | 1b15020 | 2016-09-29 08:51:58 -0500 | [diff] [blame] | 18 | ... - Wait for BMC_READY state |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 19 | ... - Apply preserve BMC Network setting |
| 20 | ... - SCP image to BMC |
| 21 | ... - Activate the flash image |
| 22 | ... - Warm Reset BMC to activate code |
| 23 | ... - Wait for BMC to come online time out 30 minutes |
| 24 | ... - Version check post update |
| 25 | |
| 26 | Resource code_update_utils.robot |
George Keishing | 8db0e1b | 2016-10-20 13:46:54 -0500 | [diff] [blame] | 27 | Resource ../../lib/boot/boot_resource_master.robot |
George Keishing | 43a021f | 2017-01-30 11:10:13 -0600 | [diff] [blame] | 28 | Resource ../../lib/state_manager.robot |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 29 | Resource ../../lib/utils.robot |
Sweta Potthuri | 3a8ae26 | 2017-03-10 00:02:09 -0600 | [diff] [blame] | 30 | Resource ../../lib/openbmc_ffdc.robot |
| 31 | |
| 32 | Test Teardown FFDC On Test Case Fail |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 33 | |
| 34 | *** Variables *** |
| 35 | |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 36 | ${FILE_PATH} ${EMPTY} |
| 37 | |
| 38 | # There are two reboots issued by code update. |
| 39 | ${MAX_BOOT_COUNT} ${2} |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 40 | |
Gunnar Mills | 7c8923f | 2016-12-12 21:19:52 -0600 | [diff] [blame] | 41 | *** Test Cases *** |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 42 | |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 43 | Test Basic BMC Performance Before Code Update |
| 44 | [Documentation] Check performance of memory, CPU & file system of BMC. |
| 45 | [Tags] Test_Basic_BMC_Performance_Before_Code_Update |
| 46 | Open Connection And Log In |
| 47 | Check BMC CPU Performance |
| 48 | Check BMC Mem Performance |
| 49 | Check BMC File System Performance |
| 50 | |
| 51 | Initiate Code Update BMC |
George Keishing | 43a021f | 2017-01-30 11:10:13 -0600 | [diff] [blame] | 52 | [Documentation] BMC code update process initiation |
| 53 | [Setup] Set State Interface Version |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 54 | [Tags] Initiate_Code_Update_BMC |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 55 | |
George Keishing | 43a021f | 2017-01-30 11:10:13 -0600 | [diff] [blame] | 56 | Check If File Exist ${FILE_PATH} |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 57 | System Readiness Test |
George Keishing | 50787fc | 2016-09-21 03:44:26 -0500 | [diff] [blame] | 58 | |
George Keishing | fb10f49 | 2017-03-07 21:34:18 -0600 | [diff] [blame] | 59 | # TODO: Disabling version check until new logic are in place. |
| 60 | # ${status}= Run Keyword and Return Status |
| 61 | # ... Validate BMC Version before |
| 62 | |
| 63 | # Run Keyword if '${status}' == '${False}' |
| 64 | # ... Pass Execution Same Driver version installed |
George Keishing | 50787fc | 2016-09-21 03:44:26 -0500 | [diff] [blame] | 65 | |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 66 | Check Boot Count And Time |
George Keishing | 0bd59f1 | 2016-12-14 10:39:21 -0600 | [diff] [blame] | 67 | Prune Journal Log |
George Keishing | 43a021f | 2017-01-30 11:10:13 -0600 | [diff] [blame] | 68 | Power Off Request |
Rahul Maheshwari | 4c1b99f | 2016-12-19 17:52:04 -0600 | [diff] [blame] | 69 | Run Keyword And Ignore Error |
| 70 | ... Set Policy Setting RESTORE_LAST_STATE |
George Keishing | dc5aa58e9 | 2016-09-27 01:35:11 -0500 | [diff] [blame] | 71 | Prepare For Update |
Rahul Maheshwari | d0fd883 | 2016-10-14 03:15:51 -0500 | [diff] [blame] | 72 | |
Michael Walsh | 2b70ead | 2017-02-20 16:27:11 -0600 | [diff] [blame] | 73 | Check If BMC is Up 20 min 10 sec |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 74 | Check Boot Count And Time |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 75 | |
George Keishing | 43a021f | 2017-01-30 11:10:13 -0600 | [diff] [blame] | 76 | Wait For BMC Ready |
George Keishing | 1b15020 | 2016-09-29 08:51:58 -0500 | [diff] [blame] | 77 | |
George Keishing | 2582bee | 2016-11-17 21:41:49 -0600 | [diff] [blame] | 78 | # TODO: openbmc/openbmc#815 |
| 79 | Sleep 1 min |
| 80 | |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 81 | Preserve BMC Network Setting |
| 82 | SCP Tar Image File to BMC ${FILE_PATH} |
| 83 | |
| 84 | Activate BMC flash image |
| 85 | |
George Keishing | b370081 | 2016-08-31 03:03:30 -0500 | [diff] [blame] | 86 | Run Keyword And Ignore Error Trigger Warm Reset |
George Keishing | f68c9eb | 2016-12-01 08:09:58 -0600 | [diff] [blame] | 87 | # Warm reset adds 3 seconds delay before forcing reboot |
| 88 | # To minimize race conditions, we wait for 7 seconds |
| 89 | Sleep 7s |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 90 | ${session_active}= Check If warmReset is Initiated |
| 91 | Run Keyword If '${session_active}' == '${True}' |
| 92 | ... Trigger Warm Reset via Reboot |
| 93 | |
George Keishing | c4d3dc0 | 2016-09-19 03:45:55 -0500 | [diff] [blame] | 94 | Check If BMC is Up 30 min 10 sec |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 95 | Check Boot Count And Time |
George Keishing | 5e870cd | 2016-08-24 10:05:47 -0500 | [diff] [blame] | 96 | Sleep 1 min |
George Keishing | fb10f49 | 2017-03-07 21:34:18 -0600 | [diff] [blame] | 97 | # Validate BMC Version |
George Keishing | 43a021f | 2017-01-30 11:10:13 -0600 | [diff] [blame] | 98 | |
| 99 | # Now that the code update is completed, make sure we use the correct |
| 100 | # interface while checking for BMC ready state. |
| 101 | Set State Interface Version |
| 102 | Wait For BMC Ready |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 103 | Check Boot Count And Time |
| 104 | Run Keyword If ${BOOT_COUNT} == ${1} |
| 105 | ... Log Boot Time not Updated by Kernel!!! level=WARN |
Sivas SRR | ea85d1f | 2016-11-13 22:44:28 -0600 | [diff] [blame] | 106 | |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 107 | |
| 108 | Test Basic BMC Performance At Ready State |
| 109 | [Documentation] Check performance of memory, CPU & file system of BMC. |
| 110 | [Tags] Test_Basic_BMC_Performance_At_Ready_State |
George Keishing | 128643a | 2016-12-15 11:36:46 -0600 | [diff] [blame] | 111 | Open Connection And Log In |
Sivas SRR | ea85d1f | 2016-11-13 22:44:28 -0600 | [diff] [blame] | 112 | Check BMC CPU Performance |
| 113 | Check BMC Mem Performance |
Sivas SRR | aca5571 | 2016-12-21 04:32:35 -0600 | [diff] [blame] | 114 | Check BMC File System Performance |
| 115 | |
George Keishing | 80dd5af | 2017-02-08 07:01:25 -0600 | [diff] [blame] | 116 | *** Keywords *** |
| 117 | |
| 118 | Check Boot Count And Time |
| 119 | [Documentation] Check for unexpected reboots. |
| 120 | Set BMC Reset Reference Time |
| 121 | Log To Console \n Boot Count: ${BOOT_COUNT} |
| 122 | Log To Console \n Boot Time: ${BOOT_TIME} |
| 123 | Run Keyword If ${BOOT_COUNT} > ${MAX_BOOT_COUNT} |
| 124 | ... Log Phantom Reboot!!! Unexpected reboot detected level=WARN |
| 125 | |