blob: 6a9cb9ae5034eab0563eef50996ca681b74e36f0 [file] [log] [blame]
pingping-linea32cf82015-10-08 22:37:37 -07001
2def checkRouteNum( main, routeNumExpected ):
3 main.step( "Check routes installed" )
4 main.log.info( "Route number expected:" )
5 main.log.info( routeNumExpected )
6 main.log.info( "Route number from ONOS CLI:" )
7
8 routeNumActual = main.ONOScli.ipv4RouteNumber()
9 main.log.info( routeNumActual )
10 utilities.assertEquals( \
11 expect = routeNumExpected, actual = routeNumActual,
12 onpass = "Route number is correct!",
13 onfail = "Route number is wrong!" )
14
15def checkM2SintentNum( main, intentNumExpected ):
16 main.step( "Check M2S intents installed" )
17 main.log.info( "Intent number expected:" )
18 main.log.info( intentNumExpected )
19 main.log.info( "Intent number from ONOS CLI:" )
20 jsonResult = main.ONOScli.intents( jsonFormat = True, summary = True,
21 TYPE = "multiPointToSinglePoint" )
22 intentNumActual = jsonResult['installed']
23 main.log.info( intentNumActual )
24 utilities.assertEquals( \
25 expect = intentNumExpected, actual = intentNumActual,
26 onpass = "M2S intent number is correct!",
27 onfail = "M2S intent number is wrong!" )
28
29def checkP2PintentNum( main, intentNumExpected ):
30 main.step( "Check P2P intents installed" )
31 main.log.info( "Intent number expected:" )
32 main.log.info( intentNumExpected )
33 main.log.info( "Intent number from ONOS CLI:" )
34 jsonResult = main.ONOScli.intents( jsonFormat = True, summary = True,
35 TYPE = "pointToPoint" )
36 intentNumActual = jsonResult['installed']
37 main.log.info( intentNumActual )
38 utilities.assertEquals( \
39 expect = intentNumExpected, actual = intentNumActual,
40 onpass = "P2P intent number is correct!",
41 onfail = "P2P intent number is wrong!" )
42
43def checkFlowNum( main, switch, flowNumExpected ):
44 main.step( "Check flow entry number in " + switch )
45 main.log.info( "Flow number expected:" )
46 main.log.info( flowNumExpected )
47 main.log.info( "Flow number actual:" )
48 flowNumActual = main.Mininet.getSwitchFlowCount( switch )
49 main.log.info( flowNumActual )
50 utilities.assertEquals( \
51 expect = flowNumExpected, actual = flowNumActual,
52 onpass = "Flow number in " + switch + " is correct!",
53 onfail = "Flow number in " + switch + " is wrong!" )
54
55
56def pingSpeakerToPeer( main, speakers = ["speaker1"],
57 peers = ["peer64514", "peer64515", "peer64516"],
58 expectAllSuccess = True ):
59 """
60 Carry out ping test between each BGP speaker and peer pair
61 Optional argument:
62 * speakers - BGP speakers
63 * peers - BGP peers
64 * expectAllSuccess - boolean indicating if you expect all results
65 succeed if True, otherwise expect all results fail if False
66 """
67 if len( speakers ) == 0:
68 main.log.error( "Parameter speakers can not be empty." )
69 main.cleanup()
70 main.exit()
71 if len( peers ) == 0:
72 main.log.error( "Parameter speakers can not be empty." )
73 main.cleanup()
74 main.exit()
75
76 if expectAllSuccess:
77 main.step( "BGP speakers ping peers, expect all tests to succeed" )
78 else:
79 main.step( "BGP speakers ping peers, expect all tests to fail" )
80
81 result = True
82 if expectAllSuccess:
83 for speaker in speakers:
84 for peer in peers:
85 tmpResult = main.Mininet.pingHost( src = speaker,
86 target = peer )
87 result = result and ( tmpResult == main.TRUE )
88 else:
89 for speaker in speakers:
90 for peer in peers:
91 tmpResult = main.Mininet.pingHost( src = speaker,
92 target = peer )
93
94 utilities.assert_equals( expect = True, actual = result,
95 onpass = "Ping test results are expected",
96 onfail = "Ping test results are Not expected" )
97
98 if result == False:
99 main.cleanup()
100 main.exit()
101
102
103def pingHostToHost( main, hosts = ["host64514", "host64515", "host64516"],
104 expectAllSuccess = True ):
105 """
106 Carry out ping test between each BGP host pair
107 Optional argument:
108 * hosts - hosts behind BGP peer routers
109 * expectAllSuccess - boolean indicating if you expect all results
110 succeed if True, otherwise expect all results fail if False
111 """
112 main.step( "Check ping between each host pair" )
113 if len( hosts ) == 0:
114 main.log.error( "Parameter hosts can not be empty." )
115 main.cleanup()
116 main.exit()
117
118 result = True
119 if expectAllSuccess:
120 for srcHost in hosts:
121 for targetHost in hosts:
122 if srcHost != targetHost:
123 tmpResult = main.Mininet.pingHost( src = srcHost,
124 target = targetHost )
125 result = result and ( tmpResult == main.TRUE )
126 else:
127 for srcHost in hosts:
128 for targetHost in hosts:
129 if srcHost != targetHost:
130 tmpResult = main.Mininet.pingHost( src = srcHost,
131 target = targetHost )
132 result = result and ( tmpResult == main.FALSE )
133
134 utilities.assert_equals( expect = True, actual = result,
135 onpass = "Ping test results are expected",
136 onfail = "Ping test results are Not expected" )
137
138 '''
139 if result == False:
140 main.cleanup()
141 main.exit()
142 '''
143
144
145def setupTunnel( main, srcIp, srcPort, dstIp, dstPort ):
146 """
147 Create a tunnel from Mininet host to host outside Mininet
148 """
149 main.step( "Set up tunnel from Mininet node " +
150 str( srcIp ) + ":" + str( srcPort ) + " to ONOS node "
151 + str(dstIp) + ":" + str(dstPort) )
152 forwarding = '%s:%s:%s:%s' % ( srcIp, srcPort, dstIp, dstPort )
153 command = 'ssh -nNT -o "PasswordAuthentication no" \
154 -o "StrictHostKeyChecking no" -l sdn -L %s %s & ' % ( forwarding, dstIp )
155
156
157 tunnelResult = main.TRUE
158 tunnelResult = main.Mininet.node( "root", command )
159 utilities.assert_equals( expect = True,
160 actual = ( "PasswordAuthentication" in tunnelResult ),
161 onpass = "Created tunnel succeeded",
162 onfail = "Create tunnel failed" )
163 if ( "PasswordAuthentication" not in tunnelResult ) :
164 main.cleanup()
165 main.exit()
166