blob: 5544fb56578adc9c2f64dd73c64d3142c526c7e7 [file] [log] [blame]
NGUYEN01925892017-09-11 14:13:51 -07001*** Settings ***
2Library SSHLibrary
3Library OperatingSystem
4*** Variables ***
5${HOST} 104.130.138.49
6${USERNAME} test
7${private_key} H:\\TestSuite\\testsuite\\robot\\testsuites
8*** Test Cases ***
9APPC Netstat
10 Open Connection ${HOST}
11 ${password}= Get File ${private_key}
12 Login ${USERNAME} ${password}
13 log to console \nConnected Successfully
14 ${cmd} = set variable netstat -a | grep -E '8443 | grep LISTEN
15 execute command ${cmd}
16
17Tear Down
18 [Documentation] Close all connections
19 Close All connections