NGUYEN | 0192589 | 2017-09-11 14:13:51 -0700 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Library SSHLibrary |
| 3 | Library OperatingSystem |
| 4 | *** Variables *** |
| 5 | ${HOST} 104.130.138.49 |
| 6 | ${USERNAME} test |
| 7 | ${private_key} H:\\TestSuite\\testsuite\\robot\\testsuites |
| 8 | *** Test Cases *** |
| 9 | APPC 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 | |
| 17 | Tear Down |
| 18 | [Documentation] Close all connections |
| 19 | Close All connections |