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 |
Jeremy Ronquillo | 4d5f1d0 | 2017-10-13 20:23:57 +0000 | [diff] [blame] | 4 | Copyright 2012 Open Networking Foundation (ONF) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 5 | |
Jeremy Songster | ae01bba | 2016-07-11 15:39:17 -0700 | [diff] [blame] | 6 | Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>, |
| 7 | the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>, |
| 8 | or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg> |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 9 | |
| 10 | TestON is free software: you can redistribute it and/or modify |
| 11 | it under the terms of the GNU General Public License as published by |
| 12 | the Free Software Foundation, either version 2 of the License, or |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 13 | (at your option) any later version. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 14 | |
| 15 | TestON is distributed in the hope that it will be useful, |
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | GNU General Public License for more details. |
| 19 | |
| 20 | You should have received a copy of the GNU General Public License |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 21 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 22 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 23 | import pexpect |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 24 | import re |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 25 | |
| 26 | from drivers.component import Component |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 27 | |
| 28 | |
| 29 | class CLI( Component ): |
| 30 | |
| 31 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 32 | This will define common functions for CLI included. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 33 | """ |
| 34 | def __init__( self ): |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 35 | super( CLI, self ).__init__() |
Jon Hall | ca31989 | 2017-06-15 15:25:22 -0700 | [diff] [blame] | 36 | |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 37 | def checkPrompt( self ): |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 38 | for key in self.options: |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 39 | if key == "prompt" and self.options[ 'prompt' ] is not None: |
| 40 | self.prompt = self.options[ 'prompt' ] |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 41 | break |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 42 | |
| 43 | def connect( self, **connectargs ): |
| 44 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 45 | Connection will establish to the remote host using ssh. |
| 46 | It will take user_name ,ip_address and password as arguments<br> |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 47 | and will return the handle. |
| 48 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 49 | for key in connectargs: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 50 | vars( self )[ key ] = connectargs[ key ] |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 51 | self.checkPrompt() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 52 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 53 | connect_result = super( CLI, self ).connect() |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 54 | ssh_newkey = 'Are you sure you want to continue connecting' |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 55 | refused = "ssh: connect to host " + \ |
| 56 | self.ip_address + " port 22: Connection refused" |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 57 | if self.port: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 58 | self.handle = pexpect.spawn( |
Jon Hall | 7a5e0a2 | 2017-12-11 10:35:50 -0800 | [diff] [blame] | 59 | 'ssh -X -p ' + |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 60 | self.port + |
| 61 | ' ' + |
| 62 | self.user_name + |
| 63 | '@' + |
Jon Hall | 7a5e0a2 | 2017-12-11 10:35:50 -0800 | [diff] [blame] | 64 | self.ip_address + |
| 65 | ' -o ServerAliveInterval=120 -o TCPKeepAlive=yes', |
Jon Hall | 9aaba88 | 2015-01-19 15:05:15 -0800 | [diff] [blame] | 66 | env={ "TERM": "xterm-mono" }, |
Jon Hall | 7a5e0a2 | 2017-12-11 10:35:50 -0800 | [diff] [blame] | 67 | maxread=1000000 ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 68 | else: |
| 69 | self.handle = pexpect.spawn( |
| 70 | 'ssh -X ' + |
| 71 | self.user_name + |
| 72 | '@' + |
Jon Hall | 7a5e0a2 | 2017-12-11 10:35:50 -0800 | [diff] [blame] | 73 | self.ip_address + |
| 74 | ' -o ServerAliveInterval=120 -o TCPKeepAlive=yes', |
Jon Hall | 9aaba88 | 2015-01-19 15:05:15 -0800 | [diff] [blame] | 75 | env={ "TERM": "xterm-mono" }, |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 76 | maxread=1000000, |
| 77 | timeout=60 ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 78 | |
Jon Hall | 73057ee | 2016-08-23 09:57:26 -0700 | [diff] [blame] | 79 | # set tty window size |
| 80 | self.handle.setwinsize( 24, 250 ) |
| 81 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 82 | self.handle.logfile = self.logfile_handler |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 83 | i = 5 |
| 84 | while i == 5: |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 85 | i = self.handle.expect( [ ssh_newkey, |
| 86 | 'password:|Password:', |
| 87 | pexpect.EOF, |
| 88 | pexpect.TIMEOUT, |
| 89 | refused, |
| 90 | 'teston>', |
Jon Hall | d906613 | 2018-03-01 14:52:53 -0800 | [diff] [blame] | 91 | 'Permission denied, please try again.', |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 92 | self.prompt ], |
| 93 | 120 ) |
acsmars | 32de0bc | 2015-06-30 09:57:12 -0700 | [diff] [blame] | 94 | if i == 0: # Accept key, then expect either a password prompt or access |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 95 | main.log.info( "ssh key confirmation received, send yes" ) |
| 96 | self.handle.sendline( 'yes' ) |
acsmars | 32de0bc | 2015-06-30 09:57:12 -0700 | [diff] [blame] | 97 | i = 5 # Run the loop again |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 98 | continue |
| 99 | if i == 1: # Password required |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 100 | if self.pwd: |
| 101 | main.log.info( |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 102 | "ssh connection asked for password, gave password" ) |
Jon Hall | 6360493 | 2015-02-26 17:09:50 -0800 | [diff] [blame] | 103 | else: |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 104 | main.log.info( "Server asked for password, but none was " |
| 105 | "given in the .topo file. Trying " |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 106 | "no password." ) |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 107 | self.pwd = "" |
| 108 | self.handle.sendline( self.pwd ) |
| 109 | j = self.handle.expect( [ |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 110 | 'password:|Password:', |
Jon Hall | d906613 | 2018-03-01 14:52:53 -0800 | [diff] [blame] | 111 | 'Permission denied, please try again.', |
| 112 | self.prompt, |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 113 | pexpect.EOF, |
| 114 | pexpect.TIMEOUT ], |
| 115 | 120 ) |
Jon Hall | d906613 | 2018-03-01 14:52:53 -0800 | [diff] [blame] | 116 | if j != 2: |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 117 | main.log.error( "Incorrect Password" ) |
| 118 | return main.FALSE |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 119 | elif i == 2: |
| 120 | main.log.error( "Connection timeout" ) |
| 121 | return main.FALSE |
| 122 | elif i == 3: # timeout |
| 123 | main.log.error( |
| 124 | "No route to the Host " + |
| 125 | self.user_name + |
| 126 | "@" + |
| 127 | self.ip_address ) |
| 128 | return main.FALSE |
| 129 | elif i == 4: |
| 130 | main.log.error( |
| 131 | "ssh: connect to host " + |
| 132 | self.ip_address + |
| 133 | " port 22: Connection refused" ) |
| 134 | return main.FALSE |
Jon Hall | d906613 | 2018-03-01 14:52:53 -0800 | [diff] [blame] | 135 | elif i == 6: # Incorrect Password |
| 136 | main.log.error( "Incorrect Password" ) |
| 137 | return main.FALSE |
| 138 | elif i == 7: # Prompt |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 139 | main.log.info( "Password not required logged in" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 140 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 141 | self.handle.sendline( "" ) |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 142 | self.handle.expect( self.prompt ) |
Jeremy Ronquillo | 0f2008a | 2017-06-23 15:32:51 -0700 | [diff] [blame] | 143 | self.handle.sendline( "cd" ) |
| 144 | self.handle.expect( self.prompt ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 145 | return self.handle |
| 146 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 147 | def disconnect( self ): |
| 148 | result = super( CLI, self ).disconnect( self ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 149 | result = main.TRUE |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 150 | # self.execute( cmd="exit",timeout=120,prompt="(.*)" ) |
| 151 | |
| 152 | def execute( self, **execparams ): |
| 153 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 154 | It facilitates the command line execution of a given command. It has arguments as : |
| 155 | cmd => represents command to be executed, |
| 156 | prompt => represents expect command prompt or output, |
| 157 | timeout => timeout for command execution, |
| 158 | more => to provide a key press if it is on. |
| 159 | |
| 160 | It will return output of command exection. |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 161 | """ |
| 162 | result = super( CLI, self ).execute( self ) |
admin | aef0055 | 2014-05-08 09:18:36 -0700 | [diff] [blame] | 163 | defaultPrompt = '.*[$>\#]' |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 164 | args = utilities.parse_args( [ "CMD", |
| 165 | "TIMEOUT", |
| 166 | "PROMPT", |
| 167 | "MORE" ], |
| 168 | **execparams ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 169 | |
| 170 | expectPrompt = args[ "PROMPT" ] if args[ "PROMPT" ] else defaultPrompt |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 171 | self.LASTRSP = "" |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 172 | timeoutVar = args[ "TIMEOUT" ] if args[ "TIMEOUT" ] else 10 |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 173 | cmd = '' |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 174 | if args[ "CMD" ]: |
| 175 | cmd = args[ "CMD" ] |
| 176 | else: |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 177 | return 0 |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 178 | if args[ "MORE" ] is None: |
| 179 | args[ "MORE" ] = " " |
| 180 | self.handle.sendline( cmd ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 181 | self.lastCommand = cmd |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 182 | index = self.handle.expect( [ expectPrompt, |
| 183 | "--More--", |
| 184 | 'Command not found.', |
| 185 | pexpect.TIMEOUT, |
| 186 | "^:$" ], |
| 187 | timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 188 | if index == 0: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 189 | self.LASTRSP = self.LASTRSP + \ |
| 190 | self.handle.before + self.handle.after |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 191 | main.log.info( "Executed :" + str( cmd ) + |
| 192 | " \t\t Expected Prompt '" + str( expectPrompt ) + |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 193 | "' Found" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 194 | elif index == 1: |
| 195 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 196 | self.handle.send( args[ "MORE" ] ) |
| 197 | main.log.info( |
| 198 | "Found More screen to go , Sending a key to proceed" ) |
| 199 | indexMore = self.handle.expect( |
| 200 | [ "--More--", expectPrompt ], timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 201 | while indexMore == 0: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 202 | main.log.info( |
| 203 | "Found anoother More screen to go , Sending a key to proceed" ) |
| 204 | self.handle.send( args[ "MORE" ] ) |
| 205 | indexMore = self.handle.expect( |
| 206 | [ "--More--", expectPrompt ], timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 207 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 208 | elif index == 2: |
| 209 | main.log.error( "Command not found" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 210 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 211 | elif index == 3: |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 212 | main.log.error( "Expected Prompt not found, Time Out!!" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 213 | main.log.error( expectPrompt ) |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 214 | self.LASTRSP = self.LASTRSP + self.handle.before |
| 215 | return self.LASTRSP |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 216 | elif index == 4: |
| 217 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 218 | # self.handle.send( args[ "MORE" ] ) |
| 219 | self.handle.sendcontrol( "D" ) |
| 220 | main.log.info( |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 221 | "Found More screen to go, Sending a key to proceed" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 222 | indexMore = self.handle.expect( |
| 223 | [ "^:$", expectPrompt ], timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 224 | while indexMore == 0: |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 225 | main.log.info( |
Jon Hall | 3b489db | 2015-10-05 14:38:37 -0700 | [diff] [blame] | 226 | "Found another More screen to go, Sending a key to proceed" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 227 | self.handle.sendcontrol( "D" ) |
| 228 | indexMore = self.handle.expect( |
| 229 | [ "^:$", expectPrompt ], timeout=timeoutVar ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 230 | self.LASTRSP = self.LASTRSP + self.handle.before |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 231 | main.last_response = self.remove_contol_chars( self.LASTRSP ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 232 | return self.LASTRSP |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 233 | |
| 234 | def remove_contol_chars( self, response ): |
| 235 | # 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 ) ) |
| 236 | # response = re.sub( RE_XML_ILLEGAL, "\n", response ) |
| 237 | response = re.sub( r"[\x01-\x1F\x7F]", "", response ) |
| 238 | # response = re.sub( r"\[\d+\;1H", "\n", response ) |
| 239 | response = re.sub( r"\[\d+\;\d+H", "", response ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 240 | return response |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 241 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 242 | def runAsSudoUser( self, handle, pwd, default ): |
| 243 | |
| 244 | i = handle.expect( [ ".ssword:*", default, pexpect.EOF ] ) |
| 245 | if i == 0: |
| 246 | handle.sendline( pwd ) |
Jon Hall | 5ec6b1b | 2015-09-17 18:20:14 -0700 | [diff] [blame] | 247 | handle.sendline( "\n" ) |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 248 | |
| 249 | if i == 1: |
| 250 | handle.expect( default ) |
| 251 | |
| 252 | if i == 2: |
| 253 | main.log.error( "Unable to run as Sudo user" ) |
| 254 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 255 | return handle |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 256 | |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 257 | def onfail( self ): |
| 258 | if 'onfail' in main.componentDictionary[ self.name ]: |
| 259 | commandList = main.componentDictionary[ |
| 260 | self.name ][ 'onfail' ].split( "," ) |
| 261 | for command in commandList: |
| 262 | response = self.execute( |
| 263 | cmd=command, |
| 264 | prompt="(.*)", |
| 265 | timeout=120 ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 266 | |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 267 | def secureCopy( self, userName, ipAddress, filePath, dstPath, pwd="", |
| 268 | direction="from" ): |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 269 | """ |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 270 | Definition: |
| 271 | Execute scp command in linux to copy to/from a remote host |
| 272 | Required: |
| 273 | str userName - User name of the remote host |
| 274 | str ipAddress - IP address of the remote host |
| 275 | str filePath - File path including the file it self |
| 276 | str dstPath - Destination path |
| 277 | Optional: |
| 278 | str pwd - Password of the host |
| 279 | str direction - Direction of the scp, default to "from" which means |
| 280 | copy "from" the remote machine to local machine, |
| 281 | while "to" means copy "to" the remote machine from |
| 282 | local machine |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 283 | """ |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 284 | returnVal = main.TRUE |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 285 | ssh_newkey = 'Are you sure you want to continue connecting' |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 286 | refused = "ssh: connect to host " + \ |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 287 | ipAddress + " port 22: Connection refused" |
acsmars | 07f9d39 | 2015-07-15 10:30:58 -0700 | [diff] [blame] | 288 | |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 289 | if direction == "from": |
| 290 | cmd = 'scp ' + str( userName ) + '@' + str( ipAddress ) + ':' + \ |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 291 | str( filePath ) + ' ' + str( dstPath ) |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 292 | elif direction == "to": |
| 293 | cmd = 'scp ' + str( filePath ) + ' ' + str( userName ) + \ |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 294 | '@' + str( ipAddress ) + ':' + str( dstPath ) |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 295 | else: |
| 296 | main.log.debug( "Wrong direction using secure copy command!" ) |
| 297 | return main.FALSE |
kelvin | 8ec7144 | 2015-01-15 16:57:00 -0800 | [diff] [blame] | 298 | |
| 299 | main.log.info( "Sending: " + cmd ) |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 300 | self.handle.sendline( cmd ) |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 301 | i = 0 |
| 302 | while i < 2: |
| 303 | i = self.handle.expect( [ |
| 304 | ssh_newkey, |
| 305 | 'password:', |
| 306 | "100%", |
| 307 | refused, |
| 308 | "No such file or directory", |
Jon Hall | 53c5e66 | 2016-04-13 16:06:56 -0700 | [diff] [blame] | 309 | "Permission denied", |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 310 | self.prompt, |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 311 | pexpect.EOF, |
| 312 | pexpect.TIMEOUT ], |
| 313 | 120 ) |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 314 | if i == 0: # ask for ssh key confirmation |
| 315 | main.log.info( "ssh key confirmation received, sending yes" ) |
| 316 | self.handle.sendline( 'yes' ) |
| 317 | elif i == 1: # Asked for ssh password |
| 318 | main.log.info( "ssh connection asked for password, gave password" ) |
| 319 | self.handle.sendline( pwd ) |
| 320 | elif i == 2: # File finished transfering |
| 321 | main.log.info( "Secure copy successful" ) |
| 322 | returnVal = main.TRUE |
| 323 | elif i == 3: # Connection refused |
| 324 | main.log.error( |
| 325 | "ssh: connect to host " + |
| 326 | ipAddress + |
| 327 | " port 22: Connection refused" ) |
| 328 | returnVal = main.FALSE |
| 329 | elif i == 4: # File Not found |
| 330 | main.log.error( "No such file found" ) |
| 331 | returnVal = main.FALSE |
Jon Hall | 53c5e66 | 2016-04-13 16:06:56 -0700 | [diff] [blame] | 332 | elif i == 5: # Permission denied |
| 333 | main.log.error( "Permission denied. Check folder permissions" ) |
| 334 | returnVal = main.FALSE |
| 335 | elif i == 6: # prompt returned |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 336 | return returnVal |
Jon Hall | 53c5e66 | 2016-04-13 16:06:56 -0700 | [diff] [blame] | 337 | elif i == 7: # EOF |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 338 | main.log.error( "Pexpect.EOF found!!!" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 339 | main.cleanAndExit() |
Jon Hall | 53c5e66 | 2016-04-13 16:06:56 -0700 | [diff] [blame] | 340 | elif i == 8: # timeout |
Jon Hall | 547e058 | 2015-09-21 17:35:40 -0700 | [diff] [blame] | 341 | main.log.error( |
| 342 | "No route to the Host " + |
| 343 | userName + |
| 344 | "@" + |
| 345 | ipAddress ) |
| 346 | returnVal = main.FALSE |
Devin Lim | dc78e20 | 2017-06-09 18:30:07 -0700 | [diff] [blame] | 347 | self.handle.expect( self.prompt ) |
kelvin-onlab | d9e23de | 2015-08-06 10:34:44 -0700 | [diff] [blame] | 348 | return returnVal |
| 349 | |
| 350 | def scp( self, remoteHost, filePath, dstPath, direction="from" ): |
| 351 | """ |
| 352 | Definition: |
| 353 | Execute scp command in linux to copy to/from a remote host |
| 354 | Required: |
| 355 | * remoteHost - Test ON component to be parsed |
| 356 | str filePath - File path including the file it self |
| 357 | str dstPath - Destination path |
| 358 | Optional: |
| 359 | str direction - Direction of the scp, default to "from" which means |
| 360 | copy "from" the remote machine to local machine, |
| 361 | while "to" means copy "to" the remote machine from |
| 362 | local machine |
| 363 | """ |
| 364 | return self.secureCopy( remoteHost.user_name, |
| 365 | remoteHost.ip_address, |
| 366 | filePath, |
| 367 | dstPath, |
| 368 | pwd=remoteHost.pwd, |
| 369 | direction=direction ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 370 | |
| 371 | def sshToNode( self, ipAddress, uName="sdn", pwd="rocks" ): |
| 372 | ssh_newkey = 'Are you sure you want to continue connecting' |
| 373 | refused = "ssh: connect to host " + ipAddress + " port 22: Connection refused" |
| 374 | handle = pexpect.spawn( 'ssh -X ' + |
| 375 | uName + |
| 376 | '@' + |
| 377 | ipAddress, |
| 378 | env={ "TERM": "xterm-mono" }, |
| 379 | maxread=1000000, |
| 380 | timeout=60 ) |
| 381 | |
| 382 | # set tty window size |
| 383 | handle.setwinsize( 24, 250 ) |
| 384 | |
| 385 | i = 5 |
| 386 | while i == 5: |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 387 | i = handle.expect( [ ssh_newkey, |
| 388 | 'password:|Password:', |
| 389 | pexpect.EOF, |
| 390 | pexpect.TIMEOUT, |
| 391 | refused, |
| 392 | 'teston>', |
| 393 | self.prompt ], |
| 394 | 120 ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 395 | if i == 0: # Accept key, then expect either a password prompt or access |
| 396 | main.log.info( "ssh key confirmation received, send yes" ) |
| 397 | handle.sendline( 'yes' ) |
| 398 | i = 5 # Run the loop again |
| 399 | continue |
| 400 | if i == 1: # Password required |
| 401 | if pwd: |
| 402 | main.log.info( |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 403 | "ssh connection asked for password, gave password" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 404 | else: |
| 405 | main.log.info( "Server asked for password, but none was " |
| 406 | "given in the .topo file. Trying " |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 407 | "no password." ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 408 | pwd = "" |
| 409 | handle.sendline( pwd ) |
| 410 | j = handle.expect( [ self.prompt, |
| 411 | 'password:|Password:', |
| 412 | pexpect.EOF, |
| 413 | pexpect.TIMEOUT ], |
| 414 | 120 ) |
| 415 | if j != 0: |
| 416 | main.log.error( "Incorrect Password" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 417 | main.cleanAndExit() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 418 | elif i == 2: |
| 419 | main.log.error( "Connection timeout" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 420 | main.cleanAndExit() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 421 | elif i == 3: # timeout |
| 422 | main.log.error( |
| 423 | "No route to the Host " + |
| 424 | uName + |
| 425 | "@" + |
| 426 | ipAddress ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 427 | main.cleanAndExit() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 428 | elif i == 4: |
| 429 | main.log.error( |
| 430 | "ssh: connect to host " + |
| 431 | ipAddress + |
| 432 | " port 22: Connection refused" ) |
Devin Lim | 4407596 | 2017-08-11 10:56:37 -0700 | [diff] [blame] | 433 | main.cleanAndExit() |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 434 | elif i == 6: |
| 435 | main.log.info( "Password not required logged in" ) |
| 436 | |
| 437 | handle.sendline( "" ) |
| 438 | handle.expect( self.prompt ) |
| 439 | handle.sendline( "cd" ) |
| 440 | handle.expect( self.prompt ) |
| 441 | |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 442 | main.log.info( "Successfully ssh to " + ipAddress + "." ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 443 | return handle |
| 444 | |
| 445 | def exitFromSsh( self, handle, ipAddress ): |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 446 | try: |
Jon Hall | 4f360bc | 2017-09-07 10:19:52 -0700 | [diff] [blame] | 447 | handle.sendline( "logout" ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 448 | handle.expect( "closed." ) |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 449 | main.log.info( "Successfully closed ssh connection from " + ipAddress ) |
Devin Lim | 142b534 | 2017-07-20 15:22:39 -0700 | [diff] [blame] | 450 | except pexpect.EOF: |
| 451 | main.log.error( "Failed to close the connection from " + ipAddress ) |
Jon Hall | 4f360bc | 2017-09-07 10:19:52 -0700 | [diff] [blame] | 452 | try: |
| 453 | # check that this component handle still works |
| 454 | self.handle.sendline( "" ) |
| 455 | self.handle.expect( self.prompt ) |
| 456 | except pexpect.EOF: |
| 457 | main.log.error( self.handle.before ) |
| 458 | main.log.error( "EOF after closing ssh connection" ) |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 459 | |
| 460 | def folderSize( self, path, size='10', unit='M', ignoreRoot=True ): |
| 461 | """ |
| 462 | Run `du -h` on the folder path and verifies the folder(s) size is |
| 463 | less than the given size. Note that if multiple subdirectories are |
| 464 | present, the result will be the OR of all the individual subdirectories. |
| 465 | |
| 466 | Arguments: |
| 467 | path - A string containing the path supplied to the du command |
| 468 | size - The number portion of the file size that the results will be compared to |
| 469 | unit - The unit portion of the file size that the results will be compared to |
| 470 | ignoreRoot - If True, will ignore the "root" of the path supplied to du. I.E. will ignore `.` |
| 471 | |
| 472 | Returns True if the folder(s) size(s) are less than SIZE UNITS, else returns False |
| 473 | """ |
| 474 | sizeRe = r'(?P<number>\d+\.*\d*)(?P<unit>\D)' |
| 475 | unitsList = [ 'K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y' ] |
| 476 | try: |
| 477 | # make sure we convert units if size is too big |
| 478 | size = float( size ) |
| 479 | if size >= 1000: |
| 480 | size = size / 1000 |
| 481 | unit = unitsList[ unitsList.index( unit + 1 ) ] |
| 482 | cmdStr = "du -h " + path |
| 483 | self.handle.sendline( cmdStr ) |
| 484 | self.handle.expect( self.prompt ) |
| 485 | output = self.handle.before |
| 486 | assert "cannot access" not in output |
| 487 | assert "command not found" not in output |
| 488 | main.log.debug( output ) |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 489 | lines = [ line for line in output.split( '\r\n' ) ] |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 490 | retValue = True |
| 491 | if ignoreRoot: |
| 492 | lastIndex = -2 |
| 493 | else: |
| 494 | lastIndex = -1 |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 495 | for line in lines[ 1:lastIndex ]: |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 496 | parsed = line.split() |
Jeremy Ronquillo | 8270549 | 2017-10-18 14:19:55 -0700 | [diff] [blame] | 497 | sizeMatch = parsed[ 0 ] |
| 498 | folder = parsed[ 1 ] |
Jon Hall | 4173b24 | 2017-09-12 17:04:38 -0700 | [diff] [blame] | 499 | match = re.search( sizeRe, sizeMatch ) |
| 500 | num = match.group( 'number' ) |
| 501 | unitMatch = match.group( 'unit' ) |
| 502 | if unitsList.index( unitMatch ) < unitsList.index( unit ): |
| 503 | retValue &= True |
| 504 | elif unitsList.index( unitMatch ) == unitsList.index( unit ): |
| 505 | if float( num ) < float( size ): |
| 506 | retValue &= True |
| 507 | else: |
| 508 | retValue &= False |
| 509 | elif unitsList.index( unitMatch ) > unitsList.index( unit ): |
| 510 | retValue &= False |
| 511 | return retValue |
| 512 | except AssertionError: |
| 513 | main.log.error( self.name + ": Could not execute command: " + output ) |
| 514 | return False |
| 515 | except pexpect.TIMEOUT: |
| 516 | main.log.exception( self.name + ": TIMEOUT exception found" ) |
| 517 | main.log.error( self.name + ": " + self.handle.before ) |
| 518 | return False |
| 519 | except pexpect.EOF: |
| 520 | main.log.error( self.name + ": EOF exception found" ) |
| 521 | main.log.error( self.name + ": " + self.handle.before ) |
| 522 | main.cleanAndExit() |
Jon Hall | 0e24037 | 2018-05-02 11:21:57 -0700 | [diff] [blame] | 523 | |
| 524 | def setEnv( self, variable, value=None ): |
| 525 | """ |
| 526 | Sets the environment variable to the given value for the current shell session. |
| 527 | If value is None, will unset the variable. |
| 528 | |
| 529 | Required Arguments: |
| 530 | variable - The name of the environment variable to set. |
| 531 | |
| 532 | Optional Arguments: |
| 533 | value - The value to set the variable to. ( Defaults to None, which unsets the variable ) |
| 534 | |
| 535 | Returns True if no errors are detected else returns False |
| 536 | """ |
| 537 | try: |
| 538 | if value: |
| 539 | cmd = "export {}={}".format( variable, value ) |
| 540 | else: |
| 541 | cmd = "unset {}".format( variable ) |
| 542 | self.handle.sendline( cmd ) |
| 543 | self.handle.expect( self.prompt ) |
| 544 | main.log.debug( self.handle.before ) |
| 545 | return True |
| 546 | except AssertionError: |
| 547 | main.log.error( self.name + ": Could not execute command: " + output ) |
| 548 | return False |
| 549 | except pexpect.TIMEOUT: |
| 550 | main.log.exception( self.name + ": TIMEOUT exception found" ) |
| 551 | main.log.error( self.name + ": " + self.handle.before ) |
| 552 | return False |
| 553 | except pexpect.EOF: |
| 554 | main.log.error( self.name + ": EOF exception found" ) |
| 555 | main.log.error( self.name + ": " + self.handle.before ) |
| 556 | main.cleanAndExit() |
You Wang | b65d237 | 2018-08-17 15:37:59 -0700 | [diff] [blame] | 557 | |
| 558 | def exitFromCmd( self, expect, retry=10 ): |
| 559 | """ |
| 560 | Call this function when sending ctrl+c is required to kill the current |
| 561 | command. It will retry multiple times until the running command is |
| 562 | completely killed and expected string is returned from the handle. |
| 563 | Required: |
You Wang | d4fae5c | 2018-08-22 13:56:49 -0700 | [diff] [blame] | 564 | expect: expected string or list of strings which indicates that the |
| 565 | previous command was killed successfully. |
You Wang | b65d237 | 2018-08-17 15:37:59 -0700 | [diff] [blame] | 566 | Optional: |
| 567 | retry: maximum number of ctrl+c that will be sent. |
| 568 | """ |
You Wang | d4fae5c | 2018-08-22 13:56:49 -0700 | [diff] [blame] | 569 | expect = [ expect ] if isinstance( expect, str ) else expect |
You Wang | b65d237 | 2018-08-17 15:37:59 -0700 | [diff] [blame] | 570 | try: |
| 571 | while retry >= 0: |
| 572 | main.log.debug( self.name + ": sending ctrl+c to kill the command" ) |
| 573 | self.handle.send( "\x03" ) |
You Wang | d4fae5c | 2018-08-22 13:56:49 -0700 | [diff] [blame] | 574 | i = self.handle.expect( expect + [ pexpect.TIMEOUT ], timeout=3 ) |
You Wang | b65d237 | 2018-08-17 15:37:59 -0700 | [diff] [blame] | 575 | main.log.debug( self.handle.before ) |
You Wang | d4fae5c | 2018-08-22 13:56:49 -0700 | [diff] [blame] | 576 | if i < len( expect ): |
You Wang | b65d237 | 2018-08-17 15:37:59 -0700 | [diff] [blame] | 577 | main.log.debug( self.name + ": successfully killed the command" ) |
| 578 | return main.TRUE |
| 579 | retry -= 1 |
| 580 | main.log.warn( self.name + ": failed to kill the command" ) |
| 581 | return main.FALSE |
| 582 | except pexpect.EOF: |
| 583 | main.log.error( self.name + ": EOF exception found" ) |
| 584 | main.log.error( self.name + ": " + self.handle.before ) |
| 585 | return main.FALSE |
| 586 | except Exception: |
| 587 | main.log.exception( self.name + ": Uncaught exception!" ) |
| 588 | return main.FALSE |