| *** Settings *** |
| Resource ../lib/utils.robot |
| Variables ../data/variables.py |
| |
| *** Variables *** |
| |
| ${BMC_READY_STATE} Ready |
| ${BMC_NOT_READY_STATE} NotReady |
| ${QUIET} ${0} |
| |
| # "0" indicates that the new "xyz" interface should be used. |
| ${OBMC_STATES_VERSION} ${0} |
| |
| *** Keywords *** |
| |
| Initiate Host Boot |
| [Documentation] Initiate host power on. |
| ${args}= Create Dictionary data=${HOST_POWERON_TRANS} |
| Write Attribute |
| ... ${HOST_STATE_URI} RequestedHostTransition data=${args} |
| |
| Wait Until Keyword Succeeds |
| ... 10 min 10 sec Is Host Running |
| |
| |
| Initiate Host PowerOff |
| [Documentation] Initiate host power off. |
| ${args}= Create Dictionary data=${HOST_POWEROFF_TRANS} |
| Write Attribute |
| ... ${HOST_STATE_URI} RequestedHostTransition data=${args} |
| |
| Wait Until Keyword Succeeds |
| ... 3 min 10 sec Is Host Off |
| |
| |
| Is Host Running |
| [Documentation] Check if Chassis and Host state is ON. |
| ${power_state}= Get Chassis Power State |
| Should Be Equal On ${power_state} |
| ${host_state}= Get Host State |
| Should Be Equal Running ${host_state} |
| |
| |
| Is Host Off |
| [Documentation] Check if Chassis and Host state is OFF. |
| ${power_state}= Get Chassis Power State |
| Should Be Equal Off ${power_state} |
| ${host_state}= Get Host State |
| Should Be Equal Off ${host_state} |
| |
| |
| Get Host State |
| [Documentation] Return the state of the host as a string. |
| [Arguments] ${quiet}=${QUIET} |
| # quiet - Suppress REST output logging to console. |
| ${state}= |
| ... Read Attribute ${HOST_STATE_URI} CurrentHostState |
| ... quiet=${quiet} |
| [Return] ${state.rsplit('.', 1)[1]} |
| |
| |
| Get Chassis Power State |
| [Documentation] Return the power state of the Chassis |
| ... as a string. |
| [Arguments] ${quiet}=${QUIET} |
| # quiet - Suppress REST output logging to console. |
| ${state}= |
| ... Read Attribute ${CHASSIS_STATE_URI} CurrentPowerState |
| ... quiet=${quiet} |
| [Return] ${state.rsplit('.', 1)[1]} |
| |
| |
| Get BMC State |
| [Documentation] Return the state of the BMC. |
| [Arguments] ${quiet}=${QUIET} |
| # quiet - Suppress REST output logging to console. |
| ${state}= |
| ... Read Attribute ${BMC_STATE_URI} CurrentBMCState quiet=${quiet} |
| [Return] ${state.rsplit('.', 1)[1]} |
| |
| |
| Put BMC State |
| [Documentation] Put BMC in given state. |
| [Arguments] ${expected_state} |
| # expected_state - expected BMC state |
| |
| ${bmc_state}= Get BMC State |
| Run Keyword If '${bmc_state}' == '${expected_state}' |
| ... Log BMC is already in ${expected_state} state |
| ... ELSE Run Keywords Initiate BMC Reboot AND |
| ... Wait for BMC state ${expected_state} |
| |
| |
| Initiate BMC Reboot |
| [Documentation] Initiate BMC reboot. |
| ${args}= Create Dictionary data=${BMC_REBOOT_TRANS} |
| Write Attribute |
| ... ${BMC_STATE_URI} RequestedBMCTransition data=${args} |
| |
| ${session_active}= Check If BMC Reboot Is Initiated |
| Run Keyword If '${session_active}' == '${True}' |
| ... Fail msg=BMC Reboot didn't occur |
| |
| Check If BMC is Up |
| |
| Check If BMC Reboot Is Initiated |
| [Documentation] Checks whether BMC Reboot is initiated by checking |
| ... BMC connection loss. |
| # Reboot adds 3 seconds delay before forcing reboot |
| # To minimize race conditions, we wait for 7 seconds |
| Sleep 7s |
| ${alive}= Run Keyword and Return Status |
| ... Open Connection And Log In |
| Return From Keyword If '${alive}' == '${False}' ${False} |
| [Return] ${True} |
| |
| Is BMC Ready |
| [Documentation] Check if BMC state is Ready. |
| ${bmc_state}= Get BMC State |
| Should Be Equal ${BMC_READY_STATE} ${bmc_state} |
| |
| Is BMC Not Ready |
| [Documentation] Check if BMC state is Not Ready. |
| ${bmc_state}= Get BMC State |
| Should Be Equal ${BMC_NOT_READY_STATE} ${bmc_state} |
| |
| Wait for BMC state |
| [Documentation] Wait until given BMC state is reached. |
| [Arguments] ${state} |
| # state - BMC state to wait for |
| Run Keyword If '${state}' == '${BMC_READY_STATE}' |
| ... Wait Until Keyword Succeeds |
| ... 10 min 10 sec Is BMC Ready |
| ... ELSE IF '${state}' == '${BMC_NOT_READY_STATE}' |
| ... Wait Until Keyword Succeeds |
| ... 10 min 10 sec Is BMC Not Ready |
| ... ELSE Fail msg=Invalid BMC state |
| |
| |
| Set State Interface Version |
| [Documentation] Set version to indicate which interface to use. |
| ${resp}= Openbmc Get Request ${CONTROL_URI}chassis0 |
| ${status}= Run Keyword And Return Status |
| ... Should Be Equal As Strings ${resp.status_code} ${HTTP_OK} |
| Run Keyword If '${status}' == '${True}' |
| ... Set Global Variable ${OBMC_STATES_VERSION} ${1} |
| ... ELSE |
| ... Set Global Variable ${OBMC_STATES_VERSION} ${0} |
| |
| |
| Power Off Request |
| [Documentation] Select appropriate poweroff keyword. |
| Run Keyword If '${OBMC_STATES_VERSION}' == '${1}' |
| ... Initiate Power Off |
| ... ELSE |
| ... Initiate Host PowerOff |
| |
| |
| Wait For BMC Ready |
| [Documentation] Check BMC state and wait for BMC Ready. |
| @{states}= Create List BMC_READY HOST_POWERED_OFF |
| Run Keyword If '${OBMC_STATES_VERSION}' == '${1}' |
| ... Wait Until Keyword Succeeds 10 min 10 sec |
| ... Verify BMC State ${states} |
| ... ELSE |
| ... Wait Until Keyword Succeeds 10 min 10 sec |
| ... Is BMC Ready |
| |
| |