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