blob: 3d2d708db5657a6098bfd5be4dd661c22394491a [file] [log] [blame]
beierlm107d16a2020-05-15 21:47:43 -04001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10# See the License for the specific language governing permissions and
11# limitations under the License.
12
13*** Keywords ***
14Test SSH Connection
15 [Arguments] ${host} ${username} ${password} ${privatekey}
16
17 Open Connection ${host}
18 Run Keyword If '${password}'!='${EMPTY}' Login ${username} ${password}
19 ... ELSE Login With Public Key ${username} ${privatekey}
20 Execute Command hostname
21 Close All Connections
22
23Check If remote File Exists
24 [Arguments] ${host} ${username} ${password} ${privatekey} ${file}
25
26 Open Connection ${host}
27 Run Keyword If '${password}'!='${EMPTY}' Login ${username} ${password}
28 ... ELSE Login With Public Key ${username} ${privatekey}
29 ${rc}= Execute Command ls ${file} >& /dev/null return_stdout=False return_rc=True
30 Close All Connections
31 Should Be Equal As Integers ${rc} 0
32
33Get Remote File Content
34 [Arguments] ${host} ${username} ${password} ${privatekey} ${file}
35
36 Open Connection ${host}
37 Run Keyword If '${password}'!='${EMPTY}' Login ${username} ${password}
38 ... ELSE Login With Public Key ${username} ${privatekey}
39 ${output}= Execute Command cat ${file}
40 Close All Connections
41 [Return] ${output}
42
43Execute Remote Command Check Rc Return Output
44 [Arguments] ${host} ${username} ${password} ${privatekey} ${command}
45
46 Open Connection ${host}
47 Run Keyword If '${password}'!='${EMPTY}' Login ${username} ${password}
48 ... ELSE Login With Public Key ${username} ${privatekey}
49 ${stdout} ${rc}= Execute Command ${command} return_rc=True return_stdout=True
50 log ${rc}
51 log ${stdout}
52 Close All Connections
53 Should Be Equal As Integers ${rc} 0
54 [Return] ${stdout}