fixed git download for testRemoteController in test_walkthrough.py

This commit is contained in:
Brian O'Connor
2013-09-17 11:28:10 -07:00
parent 47b24beb6c
commit fc2a8fd59a
+5 -3
View File
@@ -313,12 +313,14 @@ class testWalkthrough( unittest.TestCase ):
p.sendline( 'exit' )
p.wait()
@unittest.skipUnless( '1 received' in quietRun( 'ping -c 1 github.com' ),
@unittest.skipUnless( os.path.exists( '/tmp/pox' ) or
'1 received' in quietRun( 'ping -c 1 github.com' ),
'Github is not reachable; cannot download Pox' )
def testRemoteController( self ):
"Test Mininet using Pox controller"
p = pexpect.spawn( 'test ! -d /tmp/pox && git clone https://github.com/noxrepo/pox.git /tmp/pox')
p.wait()
if not os.path.exists( '/tmp/pox' ):
p = pexpect.spawn( 'git clone https://github.com/noxrepo/pox.git /tmp/pox' )
p.expect( pexpect.EOF )
pox = pexpect.spawn( '/tmp/pox/pox.py forwarding.l2_learning' )
net = pexpect.spawn( 'mn --controller=remote,ip=127.0.0.1,port=6633 --test pingall' )
net.expect( '0% dropped' )