blob: 0b16f2f44252ca0a832c0fd60809b5bd2307360e [file] [log] [blame]
Dan Talaycodba244e2010-02-15 14:08:53 -08001"""
Dan Talayco79f36082010-03-11 16:53:53 -08002Basic protocol and dataplane test cases
Dan Talaycodba244e2010-02-15 14:08:53 -08003
Dan Talayco48370102010-03-03 15:17:33 -08004It is recommended that these definitions be kept in their own
5namespace as different groups of tests will likely define
6similar identifiers.
7
Dan Talaycodba244e2010-02-15 14:08:53 -08008Current Assumptions:
9
Dan Talayco41eae8b2010-03-10 13:57:06 -080010 The function test_set_init is called with a complete configuration
11dictionary prior to the invocation of any tests from this file.
12
Dan Talaycodba244e2010-02-15 14:08:53 -080013 The switch is actively attempting to contact the controller at the address
14indicated oin oft_config
15
16"""
17
Dan Talaycodba244e2010-02-15 14:08:53 -080018import time
Dan Talayco710438c2010-02-18 15:16:07 -080019import signal
Dan Talaycodba244e2010-02-15 14:08:53 -080020import sys
Dan Talayco48370102010-03-03 15:17:33 -080021import logging
Dan Talaycodba244e2010-02-15 14:08:53 -080022
Dan Talayco2c0dba32010-03-06 22:47:06 -080023import unittest
Ken Chiang1bf01602012-04-04 10:48:23 -070024import random
Dan Talayco2c0dba32010-03-06 22:47:06 -080025
26import oftest.controller as controller
27import oftest.cstruct as ofp
28import oftest.message as message
29import oftest.dataplane as dataplane
30import oftest.action as action
31
Dan Talayco6ce963a2010-03-07 21:58:13 -080032from testutils import *
33
34#@var basic_port_map Local copy of the configuration map from OF port
35# numbers to OS interfaces
Dan Talayco48370102010-03-03 15:17:33 -080036basic_port_map = None
Dan Talayco6ce963a2010-03-07 21:58:13 -080037#@var basic_logger Local logger object
Dan Talayco48370102010-03-03 15:17:33 -080038basic_logger = None
Dan Talayco6ce963a2010-03-07 21:58:13 -080039#@var basic_config Local copy of global configuration data
Dan Talayco48370102010-03-03 15:17:33 -080040basic_config = None
41
Dan Talaycoc24aaae2010-07-08 14:05:24 -070042test_prio = {}
43
Dan Talayco48370102010-03-03 15:17:33 -080044def test_set_init(config):
45 """
46 Set up function for basic test classes
47
48 @param config The configuration dictionary; see oft
Dan Talayco48370102010-03-03 15:17:33 -080049 """
50
51 global basic_port_map
52 global basic_logger
53 global basic_config
54
55 basic_logger = logging.getLogger("basic")
56 basic_logger.info("Initializing test set")
57 basic_port_map = config["port_map"]
58 basic_config = config
Dan Talayco48370102010-03-03 15:17:33 -080059
Dan Talayco6ce963a2010-03-07 21:58:13 -080060class SimpleProtocol(unittest.TestCase):
Dan Talaycodba244e2010-02-15 14:08:53 -080061 """
62 Root class for setting up the controller
63 """
64
Dan Talaycoef701f42010-05-07 09:22:35 -070065 def sig_handler(self, v1, v2):
Dan Talayco48370102010-03-03 15:17:33 -080066 basic_logger.critical("Received interrupt signal; exiting")
Dan Talayco710438c2010-02-18 15:16:07 -080067 print "Received interrupt signal; exiting"
Dan Talayco2c0dba32010-03-06 22:47:06 -080068 self.clean_shutdown = False
69 self.tearDown()
Rich Lane58cf05f2012-07-11 16:41:47 -070070 raise KeyboardInterrupt
Dan Talayco710438c2010-02-18 15:16:07 -080071
Dan Talaycodba244e2010-02-15 14:08:53 -080072 def setUp(self):
Dan Talayco551befa2010-07-15 17:05:32 -070073 self.logger = basic_logger
Dan Talayco285a8382010-07-20 14:06:55 -070074 self.config = basic_config
Dan Talayco710438c2010-02-18 15:16:07 -080075 signal.signal(signal.SIGINT, self.sig_handler)
Dan Talayco9f47f4d2010-06-03 13:54:37 -070076 basic_logger.info("** START TEST CASE " + str(self))
Dan Talayco2c0dba32010-03-06 22:47:06 -080077 self.controller = controller.Controller(
78 host=basic_config["controller_host"],
79 port=basic_config["controller_port"])
Dan Talaycof8f41402010-03-12 22:17:39 -080080 # clean_shutdown should be set to False to force quit app
Dan Talayco2c0dba32010-03-06 22:47:06 -080081 self.clean_shutdown = True
Dan Talayco710438c2010-02-18 15:16:07 -080082 self.controller.start()
Dan Talaycoef701f42010-05-07 09:22:35 -070083 #@todo Add an option to wait for a pkt transaction to ensure version
84 # compatibilty?
Dan Talayco710438c2010-02-18 15:16:07 -080085 self.controller.connect(timeout=20)
Dan Talaycoef701f42010-05-07 09:22:35 -070086 if not self.controller.active:
Rich Lane58cf05f2012-07-11 16:41:47 -070087 raise Exception("Controller startup failed")
Dan Talayco677c0b72011-08-23 22:53:38 -070088 if self.controller.switch_addr is None:
Rich Lane58cf05f2012-07-11 16:41:47 -070089 raise Exception("Controller startup failed (no switch addr)")
Dan Talayco48370102010-03-03 15:17:33 -080090 basic_logger.info("Connected " + str(self.controller.switch_addr))
Dan Talaycodba244e2010-02-15 14:08:53 -080091
Dan Talayco677cc112012-03-27 10:28:58 -070092 def inheritSetup(self, parent):
93 """
94 Inherit the setup of a parent
95
96 This allows running at test from within another test. Do the
97 following:
98
99 sub_test = SomeTestClass() # Create an instance of the test class
100 sub_test.inheritSetup(self) # Inherit setup of parent
101 sub_test.runTest() # Run the test
102
103 Normally, only the parent's setUp and tearDown are called and
104 the state after the sub_test is run must be taken into account
105 by subsequent operations.
106 """
107 self.logger = parent.logger
108 self.config = parent.config
109 basic_logger.info("** Setup " + str(self) + " inheriting from "
110 + str(parent))
111 self.controller = parent.controller
112
Dan Talaycodba244e2010-02-15 14:08:53 -0800113 def tearDown(self):
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700114 basic_logger.info("** END TEST CASE " + str(self))
Dan Talaycodba244e2010-02-15 14:08:53 -0800115 self.controller.shutdown()
Dan Talayco2c0dba32010-03-06 22:47:06 -0800116 #@todo Review if join should be done on clean_shutdown
Dan Talaycof8f41402010-03-12 22:17:39 -0800117 if self.clean_shutdown:
118 self.controller.join()
Dan Talaycodba244e2010-02-15 14:08:53 -0800119
120 def runTest(self):
Dan Talayco710438c2010-02-18 15:16:07 -0800121 # Just a simple sanity check as illustration
Dan Talayco48370102010-03-03 15:17:33 -0800122 basic_logger.info("Running simple proto test")
Dan Talayco710438c2010-02-18 15:16:07 -0800123 self.assertTrue(self.controller.switch_socket is not None,
Dan Talaycodba244e2010-02-15 14:08:53 -0800124 str(self) + 'No connection to switch')
125
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700126 def assertTrue(self, cond, msg):
127 if not cond:
128 basic_logger.error("** FAILED ASSERTION: " + msg)
129 unittest.TestCase.assertTrue(self, cond, msg)
130
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700131test_prio["SimpleProtocol"] = 1
132
Dan Talayco6ce963a2010-03-07 21:58:13 -0800133class SimpleDataPlane(SimpleProtocol):
Dan Talaycodba244e2010-02-15 14:08:53 -0800134 """
135 Root class that sets up the controller and dataplane
136 """
137 def setUp(self):
Dan Talayco6ce963a2010-03-07 21:58:13 -0800138 SimpleProtocol.setUp(self)
Jeffrey Townsend4d5ca922012-07-11 11:37:35 -0700139 self.dataplane = dataplane.DataPlane(self.config)
Dan Talayco48370102010-03-03 15:17:33 -0800140 for of_port, ifname in basic_port_map.items():
Dan Talaycodba244e2010-02-15 14:08:53 -0800141 self.dataplane.port_add(ifname, of_port)
142
Dan Talayco677cc112012-03-27 10:28:58 -0700143 def inheritSetup(self, parent):
144 """
145 Inherit the setup of a parent
146
147 See SimpleProtocol.inheritSetup
148 """
149 SimpleProtocol.inheritSetup(self, parent)
150 self.dataplane = parent.dataplane
151
Dan Talaycodba244e2010-02-15 14:08:53 -0800152 def tearDown(self):
Dan Talayco48370102010-03-03 15:17:33 -0800153 basic_logger.info("Teardown for simple dataplane test")
Dan Talayco6ce963a2010-03-07 21:58:13 -0800154 SimpleProtocol.tearDown(self)
Rich Lane58cf05f2012-07-11 16:41:47 -0700155 if hasattr(self, 'dataplane'):
156 self.dataplane.kill(join_threads=self.clean_shutdown)
Dan Talayco48370102010-03-03 15:17:33 -0800157 basic_logger.info("Teardown done")
Dan Talaycodba244e2010-02-15 14:08:53 -0800158
159 def runTest(self):
Dan Talayco710438c2010-02-18 15:16:07 -0800160 self.assertTrue(self.controller.switch_socket is not None,
Dan Talaycodba244e2010-02-15 14:08:53 -0800161 str(self) + 'No connection to switch')
162 # self.dataplane.show()
163 # Would like an assert that checks the data plane
164
Dan Talayco551befa2010-07-15 17:05:32 -0700165class DataPlaneOnly(unittest.TestCase):
166 """
167 Root class that sets up only the dataplane
168 """
169
170 def sig_handler(self, v1, v2):
171 basic_logger.critical("Received interrupt signal; exiting")
172 print "Received interrupt signal; exiting"
173 self.clean_shutdown = False
174 self.tearDown()
Rich Lane58cf05f2012-07-11 16:41:47 -0700175 raise KeyboardInterrupt
Dan Talayco551befa2010-07-15 17:05:32 -0700176
177 def setUp(self):
178 self.clean_shutdown = False
179 self.logger = basic_logger
Dan Talayco285a8382010-07-20 14:06:55 -0700180 self.config = basic_config
Dan Talayco551befa2010-07-15 17:05:32 -0700181 signal.signal(signal.SIGINT, self.sig_handler)
182 basic_logger.info("** START DataPlaneOnly CASE " + str(self))
Jeffrey Townsend4d5ca922012-07-11 11:37:35 -0700183 self.dataplane = dataplane.DataPlane(self.config)
Dan Talayco551befa2010-07-15 17:05:32 -0700184 for of_port, ifname in basic_port_map.items():
185 self.dataplane.port_add(ifname, of_port)
186
187 def tearDown(self):
188 basic_logger.info("Teardown for simple dataplane test")
189 self.dataplane.kill(join_threads=self.clean_shutdown)
190 basic_logger.info("Teardown done")
191
192 def runTest(self):
Dan Talaycoba4fd4f2010-07-21 21:49:41 -0700193 basic_logger.info("DataPlaneOnly")
Dan Talayco285a8382010-07-20 14:06:55 -0700194 # self.dataplane.show()
Dan Talayco551befa2010-07-15 17:05:32 -0700195 # Would like an assert that checks the data plane
196
Dan Talayco6ce963a2010-03-07 21:58:13 -0800197class Echo(SimpleProtocol):
Dan Talaycodba244e2010-02-15 14:08:53 -0800198 """
199 Test echo response with no data
200 """
201 def runTest(self):
Dan Talayco2c0dba32010-03-06 22:47:06 -0800202 request = message.echo_request()
Dan Talaycoe226eb12010-02-18 23:06:30 -0800203 response, pkt = self.controller.transact(request)
Dan Talayco2c0dba32010-03-06 22:47:06 -0800204 self.assertEqual(response.header.type, ofp.OFPT_ECHO_REPLY,
Dan Talaycoa92e75b2010-02-16 20:53:56 -0800205 'response is not echo_reply')
Dan Talaycodba244e2010-02-15 14:08:53 -0800206 self.assertEqual(request.header.xid, response.header.xid,
207 'response xid != request xid')
208 self.assertEqual(len(response.data), 0, 'response data non-empty')
209
Dan Talayco6ce963a2010-03-07 21:58:13 -0800210class EchoWithData(SimpleProtocol):
Dan Talaycodba244e2010-02-15 14:08:53 -0800211 """
212 Test echo response with short string data
213 """
214 def runTest(self):
Dan Talayco2c0dba32010-03-06 22:47:06 -0800215 request = message.echo_request()
Dan Talaycodba244e2010-02-15 14:08:53 -0800216 request.data = 'OpenFlow Will Rule The World'
Dan Talaycoe226eb12010-02-18 23:06:30 -0800217 response, pkt = self.controller.transact(request)
Dan Talayco2c0dba32010-03-06 22:47:06 -0800218 self.assertEqual(response.header.type, ofp.OFPT_ECHO_REPLY,
Dan Talaycoa92e75b2010-02-16 20:53:56 -0800219 'response is not echo_reply')
Dan Talaycodba244e2010-02-15 14:08:53 -0800220 self.assertEqual(request.header.xid, response.header.xid,
221 'response xid != request xid')
222 self.assertEqual(request.data, response.data,
223 'response data does not match request')
224
Dan Talayco6ce963a2010-03-07 21:58:13 -0800225class PacketIn(SimpleDataPlane):
Dan Talaycodba244e2010-02-15 14:08:53 -0800226 """
227 Test packet in function
Dan Talayco6ce963a2010-03-07 21:58:13 -0800228
229 Send a packet to each dataplane port and verify that a packet
230 in message is received from the controller for each
Dan Talaycodba244e2010-02-15 14:08:53 -0800231 """
232 def runTest(self):
233 # Construct packet to send to dataplane
Dan Talaycoe226eb12010-02-18 23:06:30 -0800234 # Send packet to dataplane, once to each port
Dan Talaycodba244e2010-02-15 14:08:53 -0800235 # Poll controller with expect message type packet in
Dan Talaycoe226eb12010-02-18 23:06:30 -0800236
Dan Talayco6ce963a2010-03-07 21:58:13 -0800237 rc = delete_all_flows(self.controller, basic_logger)
238 self.assertEqual(rc, 0, "Failed to delete all flows")
Dan Talayco0fc08bd2012-04-09 16:56:18 -0700239 self.assertEqual(do_barrier(self.controller), 0, "Barrier failed")
Dan Talayco6ce963a2010-03-07 21:58:13 -0800240
Dan Talayco48370102010-03-03 15:17:33 -0800241 for of_port in basic_port_map.keys():
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700242 for pkt, pt in [
243 (simple_tcp_packet(), "simple TCP packet"),
244 (simple_eth_packet(), "simple Ethernet packet"),
245 (simple_eth_packet(pktlen=40), "tiny Ethernet packet")]:
Dan Talaycodba244e2010-02-15 14:08:53 -0800246
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700247 basic_logger.info("PKT IN test with %s, port %s" % (pt, of_port))
248 self.dataplane.send(of_port, str(pkt))
249 #@todo Check for unexpected messages?
250 count = 0
251 while True:
252 (response, raw) = self.controller.poll(ofp.OFPT_PACKET_IN, 2)
253 if not response: # Timeout
254 break
Ed Swierk506614a2012-03-29 08:16:59 -0700255 if dataplane.match_exp_pkt(pkt, response.data): # Got match
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700256 break
257 if not basic_config["relax"]: # Only one attempt to match
258 break
259 count += 1
260 if count > 10: # Too many tries
261 break
Dan Talayco48370102010-03-03 15:17:33 -0800262
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700263 self.assertTrue(response is not None,
264 'Packet in message not received on port ' +
265 str(of_port))
Ed Swierk506614a2012-03-29 08:16:59 -0700266 if not dataplane.match_exp_pkt(pkt, response.data):
Dan Talayco2baf8b52012-03-30 09:55:42 -0700267 basic_logger.debug("Sent %s" % format_packet(pkt))
268 basic_logger.debug("Resp %s" % format_packet(response.data))
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700269 self.assertTrue(False,
270 'Response packet does not match send packet' +
271 ' for port ' + str(of_port))
Dan Talaycodba244e2010-02-15 14:08:53 -0800272
Jeffrey Townsend4d5ca922012-07-11 11:37:35 -0700273
Dan Talayco1f648cb2012-05-03 09:37:56 -0700274class PacketInBroadcastCheck(SimpleDataPlane):
275 """
276 Check if bcast pkts leak when no flows are present
277
278 Clear the flow table
279 Send in a broadcast pkt
280 Look for the packet on other dataplane ports.
281 """
282 def runTest(self):
283 # Need at least two ports
284 self.assertTrue(len(basic_port_map) > 1, "Too few ports for test")
285
286 rc = delete_all_flows(self.controller, basic_logger)
287 self.assertEqual(rc, 0, "Failed to delete all flows")
288 self.assertEqual(do_barrier(self.controller), 0, "Barrier failed")
289
290 of_ports = basic_port_map.keys()
291 d_port = of_ports[0]
292 pkt = simple_eth_packet(dl_dst='ff:ff:ff:ff:ff:ff')
293
294 basic_logger.info("BCast Leak Test, send to port %s" % d_port)
295 self.dataplane.send(d_port, str(pkt))
296
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700297 (of_port, pkt_in, pkt_time) = self.dataplane.poll(exp_pkt=pkt)
Dan Talayco1f648cb2012-05-03 09:37:56 -0700298 self.assertTrue(pkt_in is None,
299 'BCast packet received on port ' + str(of_port))
300
301test_prio["PacketInBroadcastCheck"] = -1
302
Dan Talayco6ce963a2010-03-07 21:58:13 -0800303class PacketOut(SimpleDataPlane):
Dan Talaycodba244e2010-02-15 14:08:53 -0800304 """
305 Test packet out function
Dan Talayco6ce963a2010-03-07 21:58:13 -0800306
307 Send packet out message to controller for each dataplane port and
308 verify the packet appears on the appropriate dataplane port
Dan Talaycodba244e2010-02-15 14:08:53 -0800309 """
310 def runTest(self):
311 # Construct packet to send to dataplane
312 # Send packet to dataplane
313 # Poll controller with expect message type packet in
Dan Talayco41eae8b2010-03-10 13:57:06 -0800314
315 rc = delete_all_flows(self.controller, basic_logger)
316 self.assertEqual(rc, 0, "Failed to delete all flows")
Dan Talaycodba244e2010-02-15 14:08:53 -0800317
318 # These will get put into function
Dan Talayco48370102010-03-03 15:17:33 -0800319 of_ports = basic_port_map.keys()
320 of_ports.sort()
321 for dp_port in of_ports:
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700322 for outpkt, opt in [
323 (simple_tcp_packet(), "simple TCP packet"),
324 (simple_eth_packet(), "simple Ethernet packet"),
325 (simple_eth_packet(pktlen=40), "tiny Ethernet packet")]:
Dan Talaycodba244e2010-02-15 14:08:53 -0800326
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700327 basic_logger.info("PKT OUT test with %s, port %s" % (opt, dp_port))
328 msg = message.packet_out()
329 msg.data = str(outpkt)
330 act = action.action_output()
331 act.port = dp_port
332 self.assertTrue(msg.actions.add(act), 'Could not add action to msg')
Dan Talaycodba244e2010-02-15 14:08:53 -0800333
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700334 basic_logger.info("PacketOut to: " + str(dp_port))
335 rv = self.controller.message_send(msg)
336 self.assertTrue(rv == 0, "Error sending out message")
Dan Talaycodba244e2010-02-15 14:08:53 -0800337
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700338 exp_pkt_arg = None
339 exp_port = None
340 if basic_config["relax"]:
341 exp_pkt_arg = outpkt
342 exp_port = dp_port
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700343 (of_port, pkt, pkt_time) = self.dataplane.poll(port_number=exp_port,
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700344 exp_pkt=exp_pkt_arg)
345
346 self.assertTrue(pkt is not None, 'Packet not received')
347 basic_logger.info("PacketOut: got pkt from " + str(of_port))
348 if of_port is not None:
349 self.assertEqual(of_port, dp_port, "Unexpected receive port")
Ed Swierk506614a2012-03-29 08:16:59 -0700350 if not dataplane.match_exp_pkt(outpkt, pkt):
Dan Talayco2baf8b52012-03-30 09:55:42 -0700351 basic_logger.debug("Sent %s" % format_packet(outpkt))
352 basic_logger.debug("Resp %s" % format_packet(
353 str(pkt)[:len(str(outpkt))]))
Dan Talaycodc6fca32012-03-30 10:05:49 -0700354 self.assertEqual(str(outpkt), str(pkt)[:len(str(outpkt))],
355 'Response packet does not match send packet')
Dan Talaycodba244e2010-02-15 14:08:53 -0800356
Ken Chiang1bf01602012-04-04 10:48:23 -0700357class PacketOutMC(SimpleDataPlane):
358 """
359 Test packet out to multiple output ports
360
361 Send packet out message to controller for 1 to N dataplane ports and
362 verify the packet appears on the appropriate ports
363 """
364 def runTest(self):
365 # Construct packet to send to dataplane
366 # Send packet to dataplane
367 # Poll controller with expect message type packet in
368
369 rc = delete_all_flows(self.controller, basic_logger)
370 self.assertEqual(rc, 0, "Failed to delete all flows")
371
372 # These will get put into function
373 of_ports = basic_port_map.keys()
374 random.shuffle(of_ports)
375 for num_ports in range(1,len(of_ports)+1):
376 for outpkt, opt in [
377 (simple_tcp_packet(), "simple TCP packet"),
378 (simple_eth_packet(), "simple Ethernet packet"),
379 (simple_eth_packet(pktlen=40), "tiny Ethernet packet")]:
380
381 dp_ports = of_ports[0:num_ports]
382 basic_logger.info("PKT OUT test with " + opt +
383 ", ports " + str(dp_ports))
384 msg = message.packet_out()
385 msg.data = str(outpkt)
386 act = action.action_output()
387 for i in range(0,num_ports):
388 act.port = dp_ports[i]
389 self.assertTrue(msg.actions.add(act),
390 'Could not add action to msg')
391
392 basic_logger.info("PacketOut to: " + str(dp_ports))
393 rv = self.controller.message_send(msg)
394 self.assertTrue(rv == 0, "Error sending out message")
395
396 receive_pkt_check(self.dataplane, outpkt, dp_ports,
397 set(of_ports).difference(dp_ports),
398 self, basic_logger, basic_config)
399
Dan Talayco6ce963a2010-03-07 21:58:13 -0800400class FlowStatsGet(SimpleProtocol):
401 """
402 Get stats
Dan Talayco2c0dba32010-03-06 22:47:06 -0800403
Dan Talayco6ce963a2010-03-07 21:58:13 -0800404 Simply verify stats get transaction
405 """
406 def runTest(self):
407 basic_logger.info("Running StatsGet")
Dan Talayco41eae8b2010-03-10 13:57:06 -0800408 basic_logger.info("Inserting trial flow")
Dan Talayco677c0b72011-08-23 22:53:38 -0700409 request = flow_mod_gen(basic_port_map, True)
Dan Talayco41eae8b2010-03-10 13:57:06 -0800410 rv = self.controller.message_send(request)
411 self.assertTrue(rv != -1, "Failed to insert test flow")
412
413 basic_logger.info("Sending flow request")
Dan Talayco6ce963a2010-03-07 21:58:13 -0800414 request = message.flow_stats_request()
415 request.out_port = ofp.OFPP_NONE
Dan Talayco41eae8b2010-03-10 13:57:06 -0800416 request.table_id = 0xff
417 request.match.wildcards = 0 # ofp.OFPFW_ALL
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700418 response, pkt = self.controller.transact(request)
Dan Talayco6ce963a2010-03-07 21:58:13 -0800419 self.assertTrue(response is not None, "Did not get response")
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700420 basic_logger.debug(response.show())
Dan Talayco6ce963a2010-03-07 21:58:13 -0800421
Dan Talayco677c0b72011-08-23 22:53:38 -0700422test_prio["FlowStatsGet"] = -1
423
Dan Talayco79c6c4d2010-06-08 14:01:53 -0700424class TableStatsGet(SimpleProtocol):
425 """
426 Get table stats
427
428 Simply verify table stats get transaction
429 """
430 def runTest(self):
431 basic_logger.info("Running TableStatsGet")
432 basic_logger.info("Inserting trial flow")
Dan Talayco677c0b72011-08-23 22:53:38 -0700433 request = flow_mod_gen(basic_port_map, True)
Dan Talayco79c6c4d2010-06-08 14:01:53 -0700434 rv = self.controller.message_send(request)
435 self.assertTrue(rv != -1, "Failed to insert test flow")
436
437 basic_logger.info("Sending table stats request")
438 request = message.table_stats_request()
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700439 response, pkt = self.controller.transact(request)
Dan Talayco79c6c4d2010-06-08 14:01:53 -0700440 self.assertTrue(response is not None, "Did not get response")
441 basic_logger.debug(response.show())
442
Ed Swierkae74c362012-04-02 08:21:41 -0700443class DescStatsGet(SimpleProtocol):
444 """
445 Get stats
446
447 Simply verify stats get transaction
448 """
449 def runTest(self):
450 basic_logger.info("Running DescStatsGet")
451
452 basic_logger.info("Sending stats request")
453 request = message.desc_stats_request()
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700454 response, pkt = self.controller.transact(request)
Ed Swierkae74c362012-04-02 08:21:41 -0700455 self.assertTrue(response is not None, "Did not get response")
456 basic_logger.debug(response.show())
457
Dan Talayco6ce963a2010-03-07 21:58:13 -0800458class FlowMod(SimpleProtocol):
459 """
460 Insert a flow
461
462 Simple verification of a flow mod transaction
463 """
464
465 def runTest(self):
466 basic_logger.info("Running " + str(self))
Dan Talayco677c0b72011-08-23 22:53:38 -0700467 request = flow_mod_gen(basic_port_map, True)
Dan Talayco6ce963a2010-03-07 21:58:13 -0800468 rv = self.controller.message_send(request)
Dan Talayco41eae8b2010-03-10 13:57:06 -0800469 self.assertTrue(rv != -1, "Error installing flow mod")
470
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700471class PortConfigMod(SimpleProtocol):
472 """
473 Modify a bit in port config and verify changed
474
475 Get the switch configuration, modify the port configuration
476 and write it back; get the config again and verify changed.
477 Then set it back to the way it was.
478 """
479
480 def runTest(self):
481 basic_logger.info("Running " + str(self))
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700482 for of_port, ifname in basic_port_map.items(): # Grab first port
483 break
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700484
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700485 (hw_addr, config, advert) = \
486 port_config_get(self.controller, of_port, basic_logger)
487 self.assertTrue(config is not None, "Did not get port config")
488
489 basic_logger.debug("No flood bit port " + str(of_port) + " is now " +
490 str(config & ofp.OFPPC_NO_FLOOD))
491
492 rv = port_config_set(self.controller, of_port,
493 config ^ ofp.OFPPC_NO_FLOOD, ofp.OFPPC_NO_FLOOD,
494 basic_logger)
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700495 self.assertTrue(rv != -1, "Error sending port mod")
496
497 # Verify change took place with same feature request
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700498 (hw_addr, config2, advert) = \
499 port_config_get(self.controller, of_port, basic_logger)
500 basic_logger.debug("No flood bit port " + str(of_port) + " is now " +
501 str(config2 & ofp.OFPPC_NO_FLOOD))
502 self.assertTrue(config2 is not None, "Did not get port config2")
503 self.assertTrue(config2 & ofp.OFPPC_NO_FLOOD !=
504 config & ofp.OFPPC_NO_FLOOD,
505 "Bit change did not take")
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700506 # Set it back
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700507 rv = port_config_set(self.controller, of_port, config,
508 ofp.OFPPC_NO_FLOOD, basic_logger)
509 self.assertTrue(rv != -1, "Error sending port mod")
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700510
Dan Talaycodba244e2010-02-15 14:08:53 -0800511if __name__ == "__main__":
Dan Talayco2c0dba32010-03-06 22:47:06 -0800512 print "Please run through oft script: ./oft --test_spec=basic"