Code update compatibility check
The aim here is to seamlessly make code update available for both
old interface and new (i.e. "org" and "xyz").
The logic is based on if the old org power control path exists.
If it does exist, continue to use the old keywords, else switch to
new xyz keywords.
Resolves openbmc/openbmc-test-automation#306
Change-Id: I05829f61538e26bbc4b3724d2e6f64fd5b670832
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/extended/code_update/update_bmc.robot b/extended/code_update/update_bmc.robot
index 7de2114..205264f 100644
--- a/extended/code_update/update_bmc.robot
+++ b/extended/code_update/update_bmc.robot
@@ -25,6 +25,7 @@
Resource code_update_utils.robot
Resource ../../lib/boot/boot_resource_master.robot
+Resource ../../lib/state_manager.robot
*** Variables ***
@@ -41,10 +42,11 @@
Check BMC File System Performance
Initiate Code Update BMC
- [Documentation] BMC code update process initiation
+ [Documentation] BMC code update process initiation
+ [Setup] Set State Interface Version
[Tags] Initiate_Code_Update_BMC
- Check If File Exist ${FILE_PATH}
+ Check If File Exist ${FILE_PATH}
System Readiness Test
${status}= Run Keyword and Return Status
... Validate BMC Version before
@@ -53,7 +55,7 @@
... Pass Execution Same Driver version installed
Prune Journal Log
- Initiate Power Off
+ Power Off Request
Run Keyword And Ignore Error
... Set Policy Setting RESTORE_LAST_STATE
Prepare For Update
@@ -62,9 +64,7 @@
# to openbmc/openbmc#673
Check If BMC is Up 10 min 10 sec
- @{states}= Create List BMC_READY HOST_POWERED_OFF
- Wait Until Keyword Succeeds
- ... 10 min 10 sec Verify BMC State ${states}
+ Wait For BMC Ready
# TODO: openbmc/openbmc#815
Sleep 1 min
@@ -85,8 +85,11 @@
Check If BMC is Up 30 min 10 sec
Sleep 1 min
Validate BMC Version
- Wait Until Keyword Succeeds
- ... 10 min 10 sec Verify BMC State BMC_READY
+
+ # Now that the code update is completed, make sure we use the correct
+ # interface while checking for BMC ready state.
+ Set State Interface Version
+ Wait For BMC Ready
Test Basic BMC Performance At Ready State
@@ -97,4 +100,3 @@
Check BMC Mem Performance
Check BMC File System Performance
-