xref: /openbmc/openbmc-test-automation/extended/test_ac_cycles.robot (revision b0208f2c014bedfabb266496180fa528cfac57e1)
1*** Settings ***
2
3Documentation     Test file corruption on hard power cycle.
4
5Resource          ../lib/pdu/pdu.robot
6Resource          ../lib/utils.robot
7Resource          ../lib/connection_client.robot
8Resource          ../lib/openbmc_ffdc.robot
9
10Suite Setup       Open Connection And Log In
11Suite Teardown    Close All Connections
12Test Teardown     FFDC On Test Case Fail
13
14Test Tags  AC_Cycles
15
16*** Test Cases ***
17
18Test OpenBMC Buster
19    [Documentation]  Test the OpenBMC buster.
20    [Tags]  Test_OpenBMC_Buster
21
22    Validate PDU Parameters
23    ${output}=  Execute Command
24    ...  find /var/lib -type f |xargs -n 1 touch
25    PDU Power Cycle
26    Wait For Host To Ping  ${OPENBMC_HOST}
27    Sleep   1min
28
29    # Need to re connect the session
30    Open Connection And Log In
31    ${stdout}   ${stderr}   ${rc}=  Execute Command  echo "hello world"
32    ...  return_stderr=True  return_rc=True
33    Should Be Equal As Integers  ${rc}    ${0}
34
35*** Keywords ***
36
37Validate PDU Parameters
38    [Documentation]  Validate the PDU parameters.
39
40    Should Not Be Empty  ${PDU_IP}
41    Should Not Be Empty  ${PDU_TYPE}
42    Should Not Be Empty  ${PDU_SLOT_NO}
43    Should Not Be Empty  ${PDU_USERNAME}
44    Should Not Be Empty  ${PDU_PASSWORD}
45