admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 2 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 3 | Created on 24-Oct-2012 |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 4 | |
| 5 | author:s: Anil Kumar ( anilkumar.s@paxterrasolutions.com ), |
| 6 | Raghav Kashyap( raghavkashyap@paxterrasolutions.com ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 7 | |
| 8 | |
| 9 | TestON is free software: you can redistribute it and/or modify |
| 10 | it under the terms of the GNU General Public License as published by |
| 11 | the Free Software Foundation, either version 2 of the License, or |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 12 | ( at your option ) any later version. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 13 | |
| 14 | TestON is distributed in the hope that it will be useful, |
| 15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | GNU General Public License for more details. |
| 18 | |
| 19 | You should have received a copy of the GNU General Public License |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 20 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 21 | |
| 22 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 23 | |
| 24 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 25 | import pexpect |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 26 | import re |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 27 | |
| 28 | from drivers.component import Component |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 29 | |
| 30 | |
| 31 | class CLI( Component ): |
| 32 | |
| 33 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 34 | This will define common functions for CLI included. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 35 | """ |
| 36 | def __init__( self ): |
| 37 | super( Component, self ).__init__() |
| 38 | |
| 39 | def connect( self, **connectargs ): |
| 40 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 41 | Connection will establish to the remote host using ssh. |
| 42 | It will take user_name ,ip_address and password as arguments<br> |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 43 | and will return the handle. |
| 44 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 45 | for key in connectargs: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 46 | vars( self )[ key ] = connectargs[ key ] |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 47 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 48 | connect_result = super( CLI, self ).connect() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 49 | ssh_newkey = 'Are you sure you want to continue connecting' |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 50 | refused = "ssh: connect to host " + \ |
| 51 | self.ip_address + " port 22: Connection refused" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 52 | if self.port: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 53 | self.handle = pexpect.spawn( |
| 54 | 'ssh -p ' + |
| 55 | self.port + |
| 56 | ' ' + |
| 57 | self.user_name + |
| 58 | '@' + |
| 59 | self.ip_address, |
Jon Hall | 9aaba88 | 2015-01-19 15:05:15 -0800 | [diff] [blame] | 60 | env={ "TERM": "xterm-mono" }, |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 61 | maxread=50000 ) |
| 62 | else: |
| 63 | self.handle = pexpect.spawn( |
| 64 | 'ssh -X ' + |
| 65 | self.user_name + |
| 66 | '@' + |
| 67 | self.ip_address, |
Jon Hall | 9aaba88 | 2015-01-19 15:05:15 -0800 | [diff] [blame] | 68 | env={ "TERM": "xterm-mono" }, |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 69 | maxread=1000000, |
| 70 | timeout=60 ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 71 | |
| 72 | self.handle.logfile = self.logfile_handler |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 73 | i = 5 |
| 74 | while i == 5: |
| 75 | i = self.handle.expect( [ |
acsmars | e2be32c | 2015-06-29 16:16:28 -0700 | [diff] [blame] | 76 | ssh_newkey, |
Jon Hall | 05f8868 | 2015-06-09 14:57:53 -0700 | [diff] [blame] | 77 | 'password:|Password:', |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 78 | pexpect.EOF, |
| 79 | pexpect.TIMEOUT, |
| 80 | refused, |
| 81 | 'teston>', |
| 82 | '>|#|\$' ], |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 83 | 120 ) |
acsmars | 32de0bc | 2015-06-30 09:57:12 -0700 | [diff] [blame] | 84 | if i == 0: # Accept key, then expect either a password prompt or access |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 85 | main.log.info( "ssh key confirmation received, send yes" ) |
| 86 | self.handle.sendline( 'yes' ) |
acsmars | 32de0bc | 2015-06-30 09:57:12 -0700 | [diff] [blame] | 87 | i = 5 # Run the loop again |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 88 | continue |
| 89 | if i == 1: # Password required |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 90 | if self.pwd: |
| 91 | main.log.info( |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 92 | "ssh connection asked for password, gave password" ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 93 | else: |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 94 | main.log.info( "Server asked for password, but none was " |
| 95 | "given in the .topo file. Trying " |
| 96 | "no password.") |
| 97 | self.pwd = "" |
| 98 | self.handle.sendline( self.pwd ) |
| 99 | j = self.handle.expect( [ |
| 100 | '>|#|\$', |
| 101 | 'password:|Password:', |
| 102 | pexpect.EOF, |
| 103 | pexpect.TIMEOUT ], |
| 104 | 120 ) |
| 105 | if j != 0: |
| 106 | main.log.error( "Incorrect Password" ) |
| 107 | return main.FALSE |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 108 | elif i == 2: |
| 109 | main.log.error( "Connection timeout" ) |
| 110 | return main.FALSE |
| 111 | elif i == 3: # timeout |
| 112 | main.log.error( |
| 113 | "No route to the Host " + |
| 114 | self.user_name + |
| 115 | "@" + |
| 116 | self.ip_address ) |
| 117 | return main.FALSE |
| 118 | elif i == 4: |
| 119 | main.log.error( |
| 120 | "ssh: connect to host " + |
| 121 | self.ip_address + |
| 122 | " port 22: Connection refused" ) |
| 123 | return main.FALSE |
| 124 | elif i == 6: |
| 125 | main.log.info( "Password not required logged in" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 126 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 127 | self.handle.sendline( "" ) |
| 128 | self.handle.expect( '>|#|\$' ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 129 | return self.handle |
| 130 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 131 | def disconnect( self ): |
| 132 | result = super( CLI, self ).disconnect( self ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 133 | result = main.TRUE |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 134 | # self.execute( cmd="exit",timeout=120,prompt="(.*)" ) |
| 135 | |
| 136 | def execute( self, **execparams ): |
| 137 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 138 | It facilitates the command line execution of a given command. It has arguments as : |
| 139 | cmd => represents command to be executed, |
| 140 | prompt => represents expect command prompt or output, |
| 141 | timeout => timeout for command execution, |
| 142 | more => to provide a key press if it is on. |
| 143 | |
| 144 | It will return output of command exection. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 145 | """ |
| 146 | result = super( CLI, self ).execute( self ) |
admin | aef0055 | 2014-05-08 09:18:36 -0700 | [diff] [blame] | 147 | defaultPrompt = '.*[$>\#]' |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 148 | args = utilities.parse_args( [ "CMD", |
| 149 | "TIMEOUT", |
| 150 | "PROMPT", |
| 151 | "MORE" ], |
| 152 | **execparams ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 153 | |
| 154 | expectPrompt = args[ "PROMPT" ] if args[ "PROMPT" ] else defaultPrompt |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 155 | self.LASTRSP = "" |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 156 | timeoutVar = args[ "TIMEOUT" ] if args[ "TIMEOUT" ] else 10 |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 157 | cmd = '' |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 158 | if args[ "CMD" ]: |
| 159 | cmd = args[ "CMD" ] |
| 160 | else: |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 161 | return 0 |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 162 | if args[ "MORE" ] is None: |
| 163 | args[ "MORE" ] = " " |
| 164 | self.handle.sendline( cmd ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 165 | self.lastCommand = cmd |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 166 | index = self.handle.expect( [ expectPrompt, |
| 167 | "--More--", |
| 168 | 'Command not found.', |
| 169 | pexpect.TIMEOUT, |
| 170 | "^:$" ], |
| 171 | timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 172 | if index == 0: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 173 | self.LASTRSP = self.LASTRSP + \ |
| 174 | self.handle.before + self.handle.after |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 175 | main.log.info( "Executed :" + str(cmd ) + |
| 176 | " \t\t Expected Prompt '" + str( expectPrompt) + |
| 177 | "' Found" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 178 | elif index == 1: |
| 179 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 180 | self.handle.send( args[ "MORE" ] ) |
| 181 | main.log.info( |
| 182 | "Found More screen to go , Sending a key to proceed" ) |
| 183 | indexMore = self.handle.expect( |
| 184 | [ "--More--", expectPrompt ], timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 185 | while indexMore == 0: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 186 | main.log.info( |
| 187 | "Found anoother More screen to go , Sending a key to proceed" ) |
| 188 | self.handle.send( args[ "MORE" ] ) |
| 189 | indexMore = self.handle.expect( |
| 190 | [ "--More--", expectPrompt ], timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 191 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 192 | elif index == 2: |
| 193 | main.log.error( "Command not found" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 194 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 195 | elif index == 3: |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 196 | main.log.error( "Expected Prompt not found, Time Out!!" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 197 | main.log.error( expectPrompt ) |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 198 | self.LASTRSP = self.LASTRSP + self.handle.before |
| 199 | return self.LASTRSP |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 200 | elif index == 4: |
| 201 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 202 | # self.handle.send( args[ "MORE" ] ) |
| 203 | self.handle.sendcontrol( "D" ) |
| 204 | main.log.info( |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 205 | "Found More screen to go, Sending a key to proceed" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 206 | indexMore = self.handle.expect( |
| 207 | [ "^:$", expectPrompt ], timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 208 | while indexMore == 0: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 209 | main.log.info( |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 210 | "Found another More screen to go, Sending a key to proceed" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 211 | self.handle.sendcontrol( "D" ) |
| 212 | indexMore = self.handle.expect( |
| 213 | [ "^:$", expectPrompt ], timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 214 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 215 | main.last_response = self.remove_contol_chars( self.LASTRSP ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 216 | return self.LASTRSP |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 217 | |
| 218 | def remove_contol_chars( self, response ): |
| 219 | # RE_XML_ILLEGAL = '([\u0000-\u0008\u000b-\u000c\u000e-\u001f\ufffe-\uffff])|([%s-%s][^%s-%s])|([^%s-%s][%s-%s])|([%s-%s]$)|(^[%s-%s])'%( unichr( 0xd800 ),unichr( 0xdbff ),unichr( 0xdc00 ),unichr( 0xdfff ),unichr( 0xd800 ),unichr( 0xdbff ),unichr( 0xdc00 ),unichr( 0xdfff ),unichr( 0xd800 ),unichr( 0xdbff ),unichr( 0xdc00 ),unichr( 0xdfff ) ) |
| 220 | # response = re.sub( RE_XML_ILLEGAL, "\n", response ) |
| 221 | response = re.sub( r"[\x01-\x1F\x7F]", "", response ) |
| 222 | # response = re.sub( r"\[\d+\;1H", "\n", response ) |
| 223 | response = re.sub( r"\[\d+\;\d+H", "", response ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 224 | return response |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 225 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 226 | def runAsSudoUser( self, handle, pwd, default ): |
| 227 | |
| 228 | i = handle.expect( [ ".ssword:*", default, pexpect.EOF ] ) |
| 229 | if i == 0: |
| 230 | handle.sendline( pwd ) |
Jon Hall | 5ec6b1b | 2015-09-17 18:20:14 -0700 | [diff] [blame] | 231 | handle.sendline( "\n" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 232 | |
| 233 | if i == 1: |
| 234 | handle.expect( default ) |
| 235 | |
| 236 | if i == 2: |
| 237 | main.log.error( "Unable to run as Sudo user" ) |
| 238 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 239 | return handle |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 240 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 241 | def onfail( self ): |
| 242 | if 'onfail' in main.componentDictionary[ self.name ]: |
| 243 | commandList = main.componentDictionary[ |
| 244 | self.name ][ 'onfail' ].split( "," ) |
| 245 | for command in commandList: |
| 246 | response = self.execute( |
| 247 | cmd=command, |
| 248 | prompt="(.*)", |
| 249 | timeout=120 ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 250 | |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 251 | def secureCopy( self, userName, ipAddress, filePath, dstPath, pwd="", |
| 252 | direction="from" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 253 | """ |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 254 | Definition: |
| 255 | Execute scp command in linux to copy to/from a remote host |
| 256 | Required: |
| 257 | str userName - User name of the remote host |
| 258 | str ipAddress - IP address of the remote host |
| 259 | str filePath - File path including the file it self |
| 260 | str dstPath - Destination path |
| 261 | Optional: |
| 262 | str pwd - Password of the host |
| 263 | str direction - Direction of the scp, default to "from" which means |
| 264 | copy "from" the remote machine to local machine, |
| 265 | while "to" means copy "to" the remote machine from |
| 266 | local machine |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 267 | """ |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 268 | returnVal = main.TRUE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 269 | ssh_newkey = 'Are you sure you want to continue connecting' |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 270 | refused = "ssh: connect to host " + \ |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 271 | ipAddress + " port 22: Connection refused" |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 272 | |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 273 | if direction == "from": |
| 274 | cmd = 'scp ' + str( userName ) + '@' + str( ipAddress ) + ':' + \ |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 275 | str( filePath ) + ' ' + str( dstPath ) |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 276 | elif direction == "to": |
| 277 | cmd = 'scp ' + str( filePath ) + ' ' + str( userName ) + \ |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 278 | '@' + str( ipAddress ) + ':' + str( dstPath ) |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 279 | else: |
| 280 | main.log.debug( "Wrong direction using secure copy command!" ) |
| 281 | return main.FALSE |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 282 | |
| 283 | main.log.info( "Sending: " + cmd ) |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 284 | self.handle.sendline( cmd ) |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 285 | i = 0 |
| 286 | while i < 2: |
| 287 | i = self.handle.expect( [ |
| 288 | ssh_newkey, |
| 289 | 'password:', |
| 290 | "100%", |
| 291 | refused, |
| 292 | "No such file or directory", |
| 293 | pexpect.EOF, |
| 294 | pexpect.TIMEOUT ], |
| 295 | 120 ) |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 296 | if i == 0: # ask for ssh key confirmation |
| 297 | main.log.info( "ssh key confirmation received, sending yes" ) |
| 298 | self.handle.sendline( 'yes' ) |
| 299 | elif i == 1: # Asked for ssh password |
| 300 | main.log.info( "ssh connection asked for password, gave password" ) |
| 301 | self.handle.sendline( pwd ) |
| 302 | elif i == 2: # File finished transfering |
| 303 | main.log.info( "Secure copy successful" ) |
| 304 | returnVal = main.TRUE |
| 305 | elif i == 3: # Connection refused |
| 306 | main.log.error( |
| 307 | "ssh: connect to host " + |
| 308 | ipAddress + |
| 309 | " port 22: Connection refused" ) |
| 310 | returnVal = main.FALSE |
| 311 | elif i == 4: # File Not found |
| 312 | main.log.error( "No such file found" ) |
| 313 | returnVal = main.FALSE |
| 314 | elif i == 5: # EOF |
| 315 | main.log.error( "Pexpect.EOF found!!!" ) |
| 316 | main.cleanup() |
| 317 | main.exit() |
| 318 | elif i == 6: # timeout |
| 319 | main.log.error( |
| 320 | "No route to the Host " + |
| 321 | userName + |
| 322 | "@" + |
| 323 | ipAddress ) |
| 324 | returnVal = main.FALSE |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 325 | self.handle.expect( "\$" ) |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 326 | return returnVal |
| 327 | |
| 328 | def scp( self, remoteHost, filePath, dstPath, direction="from" ): |
| 329 | """ |
| 330 | Definition: |
| 331 | Execute scp command in linux to copy to/from a remote host |
| 332 | Required: |
| 333 | * remoteHost - Test ON component to be parsed |
| 334 | str filePath - File path including the file it self |
| 335 | str dstPath - Destination path |
| 336 | Optional: |
| 337 | str direction - Direction of the scp, default to "from" which means |
| 338 | copy "from" the remote machine to local machine, |
| 339 | while "to" means copy "to" the remote machine from |
| 340 | local machine |
| 341 | """ |
| 342 | return self.secureCopy( remoteHost.user_name, |
| 343 | remoteHost.ip_address, |
| 344 | filePath, |
| 345 | dstPath, |
| 346 | pwd=remoteHost.pwd, |
| 347 | direction=direction ) |