diff options
Diffstat (limited to 'vnf-sdk-function-test/src/test/resources/RobotScript/main.robot')
-rw-r--r-- | vnf-sdk-function-test/src/test/resources/RobotScript/main.robot | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vnf-sdk-function-test/src/test/resources/RobotScript/main.robot b/vnf-sdk-function-test/src/test/resources/RobotScript/main.robot new file mode 100644 index 0000000..4e5705e --- /dev/null +++ b/vnf-sdk-function-test/src/test/resources/RobotScript/main.robot @@ -0,0 +1,31 @@ +*** Settings *** +Suite Teardown Close All Connections +Library String +Library OperatingSystem +Library SSHLibrary +Library BuiltIn +Library Collections + +*** Test Cases *** +Ping Remote Machine + ${PingResult} = Run ping ${SUT} -c 4 + Should Contain ${PingResult} 4 received + +Open SSH Connection to Remote machine + Open Connection ${SUT} ${SUT_NAME} + Login ${SUT_USERNAME} ${SUT_PASSWORD} + +Block ICMP ping from Test machine + ${PingResult} = Execute Command iptables -A INPUT -p icmp -s ${TEST_MACHINE} --icmp-type 8 -j DROP + +Ping Remote Machine Should Fail + ${PingResult} = Run ping ${SUT} -c 4 + Should Contain ${PingResult} 0 received + +UnBlock ICMP ping from Test machine + ${PingResult} = Execute Command iptables -D INPUT -p icmp -s ${TEST_MACHINE} --icmp-type 8 -j DROP + +Ping Remote Machine Should Now Pass + ${PingResult} = Run ping ${SUT} -c 4 + Should Contain ${PingResult} 4 received + |