admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 2 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 3 | Created on 12-Feb-2013 |
| 4 | |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 5 | author:: Anil Kumar ( anilkumar.s@paxterrasolutions.com ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 6 | |
| 7 | |
| 8 | TestON is free software: you can redistribute it and/or modify |
| 9 | it under the terms of the GNU General Public License as published by |
| 10 | the Free Software Foundation, either version 2 of the License, or |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 11 | ( at your option ) any later version. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 12 | |
| 13 | TestON is distributed in the hope that it will be useful, |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | GNU General Public License for more details. |
| 17 | |
| 18 | You should have received a copy of the GNU General Public License |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 19 | along with TestON. If not, see <http://www.gnu.org/licenses/>. |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 20 | |
| 21 | |
| 22 | FloodLightCliDriver is the basic driver which will handle the Mininet functions |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 23 | """ |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 24 | import pexpect |
| 25 | import struct |
| 26 | import fcntl |
| 27 | import os |
| 28 | import signal |
| 29 | import re |
| 30 | import sys |
| 31 | import time |
| 32 | |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 33 | sys.path.append( "../" ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 34 | |
| 35 | from drivers.common.cli.remotetestbeddriver import RemoteTestBedDriver |
| 36 | |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 37 | |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 38 | class FloodLightCliDriver( RemoteTestBedDriver ): |
| 39 | |
| 40 | """ |
| 41 | FloodLightCliDriver is the basic driver which will handle the Mininet functions |
| 42 | """ |
| 43 | def __init__( self ): |
| 44 | super( RemoteTestBedDriver, self ).__init__() |
| 45 | |
| 46 | def connect( self, **connectargs ): |
| 47 | for key in connectargs: |
| 48 | vars( self )[ key ] = connectargs[ key ] |
| 49 | |
| 50 | self.name = self.options[ 'name' ] |
| 51 | |
| 52 | self.handle = super( |
| 53 | FloodLightCliDriver, |
| 54 | self ).connect( |
| 55 | user_name=self.user_name, |
| 56 | ip_address=self.ip_address, |
| 57 | port=self.port, |
| 58 | pwd=self.pwd ) |
| 59 | if self.handle: |
| 60 | main.log.info( "Connected " + self.name ) |
| 61 | self.execute( cmd="\r", prompt="\$", timeout=10 ) |
| 62 | self.execute( |
| 63 | cmd="cd /home/openflow/floodlight/", |
| 64 | prompt="floodlight\$", |
| 65 | timeout=3 ) |
| 66 | self.execute( |
| 67 | cmd="java -jar target/floodlight.jar &", |
| 68 | prompt="\$", |
| 69 | timeout=3 ) |
| 70 | self.execute( cmd="\r", prompt="\$", timeout=10 ) |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 71 | return self.handle |
kelvin-onlab | 898a6c6 | 2015-01-16 14:13:53 -0800 | [diff] [blame] | 72 | else: |
admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 73 | return main.FALSE |