Skip to content
Snippets Groups Projects
Commit 2ceb5791 authored by Bob Lantz's avatar Bob Lantz
Browse files

Merge branch 'cdburkard-patches/test_walkthrough'

parents 8537e8d9 61c144b9
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@
import unittest
import pexpect
import os
import re
from mininet.util import quietRun
class testWalkthrough( unittest.TestCase ):
......@@ -25,10 +26,10 @@ def testHelp( self ):
def testWireshark( self ):
"Use tshark to test the of dissector"
tshark = pexpect.spawn( 'tshark -i lo -R of' )
tshark.expect( 'Capturing on lo' )
tshark.expect( [ 'Capturing on lo', "Capturing on 'Loopback'" ] )
mn = pexpect.spawn( 'mn --test pingall' )
mn.expect( '0% dropped' )
tshark.expect( 'OFP 74 Hello' )
tshark.expect( [ '74 Hello', '74 of_hello' ] )
tshark.sendintr()
def testBasic( self ):
......@@ -64,7 +65,7 @@ def testBasic( self ):
node = p.match.group( 1 )
actual.append( node )
p.expect( '\n' )
self.assertEqual( actual.sort(), nodes.sort(), '"nodes" and "dump" differ' )
self.assertEqual( actual.sort(), nodes.sort(), '"nodes" and "dump" differ' )
p.expect( self.prompt )
p.sendline( 'exit' )
p.wait()
......@@ -101,11 +102,11 @@ def testHostCommands( self ):
break
self.assertEqual( ifcount, 3, 'Missing interfaces on s1')
# h1 ps
p.sendline( 'h1 ps -a' )
p.sendline( "h1 ps -a | egrep -v 'ps|grep'" )
p.expect( self.prompt )
h1Output = p.before
# s1 ps
p.sendline( 's1 ps -a' )
p.sendline( "s1 ps -a | egrep -v 'ps|grep'" )
p.expect( self.prompt )
s1Output = p.before
# strip command from ps output
......@@ -208,7 +209,7 @@ def testVerbosity( self ):
p = pexpect.spawn( 'mn -v debug --test none' )
p.expect( pexpect.EOF )
lines = p.before.split( '\n' )
self.assertTrue( len( lines ) > 100, "Debug output is too short" )
self.assertTrue( len( lines ) > 70, "Debug output is too short" )
def testCustomTopo( self ):
"Start Mininet using a custom topo, then run pingall"
......@@ -327,5 +328,6 @@ def testRemoteController( self ):
pox.sendintr()
pox.wait()
if __name__ == '__main__':
unittest.main()
\ No newline at end of file
unittest.main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment