Update and rename MantenerFIFO to MantenerFIFO.md
[vsorcdistro/.git] / mininet / examples / test / test_hwintf.py
1 #!/usr/bin/env python
2
3 """
4 Test for hwintf.py
5 """
6
7 import unittest
8 import re
9
10 from mininet.util import pexpect
11
12 from mininet.log import setLogLevel
13 from mininet.node import Node
14 from mininet.link import Link
15
16
17 class testHwintf( unittest.TestCase ):
18
19     prompt = 'mininet>'
20
21     def setUp( self ):
22         self.h3 = Node( 't0', ip='10.0.0.3/8' )
23         self.n0 = Node( 't1', inNamespace=False )
24         Link( self.h3, self.n0 )
25         self.h3.configDefault()
26
27     def testLocalPing( self ):
28         "Verify connectivity between virtual hosts using pingall"
29         p = pexpect.spawn( 'python -m mininet.examples.hwintf %s' % self.n0.intf() )
30         p.expect( self.prompt )
31         p.sendline( 'pingall' )
32         p.expect ( '(\d+)% dropped' )
33         percent = int( p.match.group( 1 ) ) if p.match else -1
34         self.assertEqual( percent, 0 )
35         p.expect( self.prompt )
36         p.sendline( 'exit' )
37         p.wait()
38
39     def testExternalPing( self ):
40         "Verify connnectivity between virtual host and virtual-physical 'external' host "
41         p = pexpect.spawn( 'python -m mininet.examples.hwintf %s' % self.n0.intf() )
42         p.expect( self.prompt )
43         # test ping external to internal
44         expectStr = '(\d+) packets transmitted, (\d+) received'
45         m = re.search( expectStr, self.h3.cmd( 'ping -v -c 1 10.0.0.1' ) )
46         tx = m.group( 1 )
47         rx = m.group( 2 )
48         self.assertEqual( tx, rx )
49         # test ping internal to external
50         p.sendline( 'h1 ping -c 1 10.0.0.3')
51         p.expect( expectStr )
52         tx = p.match.group( 1 )
53         rx = p.match.group( 2 )
54         self.assertEqual( tx, rx )
55         p.expect( self.prompt )
56         p.sendline( 'exit' )
57         p.wait()
58
59     def tearDown( self ):
60         self.h3.stop( deleteIntfs=True )
61         self.n0.stop( deleteIntfs=True )
62
63 if __name__ == '__main__':
64     setLogLevel( 'warning' )
65     unittest.main()