blob: 6ca8b18e7cd49372ceff3c65c9bbc6874ae7b3e2 [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 Talaycodba244e2010-02-15 14:08:53 -080010 The switch is actively attempting to contact the controller at the address
Rich Lane477f4812012-10-04 22:49:00 -070011indicated in oftest.config.
Dan Talaycodba244e2010-02-15 14:08:53 -080012
13"""
14
Dan Talaycodba244e2010-02-15 14:08:53 -080015import time
16import sys
Dan Talayco48370102010-03-03 15:17:33 -080017import logging
Dan Talaycodba244e2010-02-15 14:08:53 -080018
Dan Talayco2c0dba32010-03-06 22:47:06 -080019import unittest
Ken Chiang1bf01602012-04-04 10:48:23 -070020import random
Dan Talayco2c0dba32010-03-06 22:47:06 -080021
Rich Lane477f4812012-10-04 22:49:00 -070022from oftest import config
Dan Talayco2c0dba32010-03-06 22:47:06 -080023import oftest.controller as controller
24import oftest.cstruct as ofp
25import oftest.message as message
26import oftest.dataplane as dataplane
27import oftest.action as action
Rich Laneb90a1c42012-10-05 09:16:05 -070028import oftest.base_tests as base_tests
Dan Talayco2c0dba32010-03-06 22:47:06 -080029
Dan Talaycoe605b1b2012-09-18 06:56:20 -070030import oftest.illegal_message as illegal_message
31
Rich Laneda3b5ad2012-10-03 09:05:32 -070032from oftest.testutils import *
Dan Talayco6ce963a2010-03-07 21:58:13 -080033
Ken Chiangaeb23d62012-08-23 21:20:07 -070034TEST_VID_DEFAULT = 2
35
Rich Laneb90a1c42012-10-05 09:16:05 -070036class Echo(base_tests.SimpleProtocol):
Dan Talaycodba244e2010-02-15 14:08:53 -080037 """
38 Test echo response with no data
39 """
40 def runTest(self):
Dan Talayco2c0dba32010-03-06 22:47:06 -080041 request = message.echo_request()
Dan Talaycoe226eb12010-02-18 23:06:30 -080042 response, pkt = self.controller.transact(request)
Dan Talayco97d4f362012-09-18 03:22:09 -070043 self.assertTrue(response is not None,
44 "Did not get echo reply")
Dan Talayco2c0dba32010-03-06 22:47:06 -080045 self.assertEqual(response.header.type, ofp.OFPT_ECHO_REPLY,
Dan Talaycoa92e75b2010-02-16 20:53:56 -080046 'response is not echo_reply')
Dan Talaycodba244e2010-02-15 14:08:53 -080047 self.assertEqual(request.header.xid, response.header.xid,
48 'response xid != request xid')
49 self.assertEqual(len(response.data), 0, 'response data non-empty')
50
Rich Laneb90a1c42012-10-05 09:16:05 -070051class EchoWithData(base_tests.SimpleProtocol):
Dan Talaycodba244e2010-02-15 14:08:53 -080052 """
53 Test echo response with short string data
54 """
55 def runTest(self):
Dan Talayco2c0dba32010-03-06 22:47:06 -080056 request = message.echo_request()
Dan Talaycodba244e2010-02-15 14:08:53 -080057 request.data = 'OpenFlow Will Rule The World'
Dan Talaycoe226eb12010-02-18 23:06:30 -080058 response, pkt = self.controller.transact(request)
Dan Talayco97d4f362012-09-18 03:22:09 -070059 self.assertTrue(response is not None,
60 "Did not get echo reply (with data)")
Dan Talayco2c0dba32010-03-06 22:47:06 -080061 self.assertEqual(response.header.type, ofp.OFPT_ECHO_REPLY,
Dan Talaycoa92e75b2010-02-16 20:53:56 -080062 'response is not echo_reply')
Dan Talaycodba244e2010-02-15 14:08:53 -080063 self.assertEqual(request.header.xid, response.header.xid,
64 'response xid != request xid')
65 self.assertEqual(request.data, response.data,
66 'response data does not match request')
67
Rich Laneb90a1c42012-10-05 09:16:05 -070068class PacketIn(base_tests.SimpleDataPlane):
Dan Talaycodba244e2010-02-15 14:08:53 -080069 """
70 Test packet in function
Dan Talayco6ce963a2010-03-07 21:58:13 -080071
72 Send a packet to each dataplane port and verify that a packet
73 in message is received from the controller for each
Dan Talaycodba244e2010-02-15 14:08:53 -080074 """
75 def runTest(self):
76 # Construct packet to send to dataplane
Dan Talaycoe226eb12010-02-18 23:06:30 -080077 # Send packet to dataplane, once to each port
Dan Talaycodba244e2010-02-15 14:08:53 -080078 # Poll controller with expect message type packet in
Dan Talaycoe226eb12010-02-18 23:06:30 -080079
Rich Lane9a003812012-10-04 17:17:59 -070080 rc = delete_all_flows(self.controller)
Dan Talayco6ce963a2010-03-07 21:58:13 -080081 self.assertEqual(rc, 0, "Failed to delete all flows")
Dan Talayco0fc08bd2012-04-09 16:56:18 -070082 self.assertEqual(do_barrier(self.controller), 0, "Barrier failed")
Dan Talayco6ce963a2010-03-07 21:58:13 -080083
Rich Lane2014f9b2012-10-05 15:29:40 -070084 vid = test_param_get('vid', default=TEST_VID_DEFAULT)
Ken Chiangaeb23d62012-08-23 21:20:07 -070085
Rich Lane477f4812012-10-04 22:49:00 -070086 for of_port in config["port_map"].keys():
Ed Swierk0aeff8c2012-03-23 20:27:18 -070087 for pkt, pt in [
88 (simple_tcp_packet(), "simple TCP packet"),
Ken Chiangaeb23d62012-08-23 21:20:07 -070089 (simple_tcp_packet(dl_vlan_enable=True,dl_vlan=vid,pktlen=108),
90 "simple tagged TCP packet"),
Ed Swierk0aeff8c2012-03-23 20:27:18 -070091 (simple_eth_packet(), "simple Ethernet packet"),
92 (simple_eth_packet(pktlen=40), "tiny Ethernet packet")]:
Dan Talaycodba244e2010-02-15 14:08:53 -080093
Rich Lane9a003812012-10-04 17:17:59 -070094 logging.info("PKT IN test with %s, port %s" % (pt, of_port))
Ed Swierk0aeff8c2012-03-23 20:27:18 -070095 self.dataplane.send(of_port, str(pkt))
96 #@todo Check for unexpected messages?
97 count = 0
98 while True:
Dan Talaycoc689a792012-09-28 14:22:53 -070099 (response, raw) = self.controller.poll(ofp.OFPT_PACKET_IN)
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700100 if not response: # Timeout
101 break
Ed Swierk506614a2012-03-29 08:16:59 -0700102 if dataplane.match_exp_pkt(pkt, response.data): # Got match
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700103 break
Rich Lane477f4812012-10-04 22:49:00 -0700104 if not config["relax"]: # Only one attempt to match
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700105 break
106 count += 1
107 if count > 10: # Too many tries
108 break
Dan Talayco48370102010-03-03 15:17:33 -0800109
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700110 self.assertTrue(response is not None,
111 'Packet in message not received on port ' +
112 str(of_port))
Ed Swierk506614a2012-03-29 08:16:59 -0700113 if not dataplane.match_exp_pkt(pkt, response.data):
Rich Lane9a003812012-10-04 17:17:59 -0700114 logging.debug("Sent %s" % format_packet(pkt))
115 logging.debug("Resp %s" % format_packet(response.data))
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700116 self.assertTrue(False,
117 'Response packet does not match send packet' +
118 ' for port ' + str(of_port))
Dan Talaycodba244e2010-02-15 14:08:53 -0800119
Rich Lane0a4f6372013-01-02 14:40:22 -0800120@nonstandard
Rich Laneb90a1c42012-10-05 09:16:05 -0700121class PacketInDefaultDrop(base_tests.SimpleDataPlane):
Ed Swierk3ae7f712012-08-22 06:45:25 -0700122 """
123 Test packet in function
124
125 Send a packet to each dataplane port and verify that a packet
126 in message is received from the controller for each
127 """
Rich Laned1d9c282012-10-04 22:07:10 -0700128
Ed Swierk3ae7f712012-08-22 06:45:25 -0700129 def runTest(self):
Rich Lane9a003812012-10-04 17:17:59 -0700130 rc = delete_all_flows(self.controller)
Ed Swierk3ae7f712012-08-22 06:45:25 -0700131 self.assertEqual(rc, 0, "Failed to delete all flows")
132 self.assertEqual(do_barrier(self.controller), 0, "Barrier failed")
133
Rich Lane477f4812012-10-04 22:49:00 -0700134 for of_port in config["port_map"].keys():
Ed Swierk3ae7f712012-08-22 06:45:25 -0700135 pkt = simple_tcp_packet()
136 self.dataplane.send(of_port, str(pkt))
137 count = 0
138 while True:
Dan Talaycoc689a792012-09-28 14:22:53 -0700139 (response, raw) = self.controller.poll(ofp.OFPT_PACKET_IN)
Ed Swierk3ae7f712012-08-22 06:45:25 -0700140 if not response: # Timeout
141 break
142 if dataplane.match_exp_pkt(pkt, response.data): # Got match
143 break
Rich Lane477f4812012-10-04 22:49:00 -0700144 if not config["relax"]: # Only one attempt to match
Ed Swierk3ae7f712012-08-22 06:45:25 -0700145 break
146 count += 1
147 if count > 10: # Too many tries
148 break
149
150 self.assertTrue(response is None,
151 'Packet in message received on port ' +
152 str(of_port))
153
Rich Lane0a4f6372013-01-02 14:40:22 -0800154@nonstandard
Rich Laneb90a1c42012-10-05 09:16:05 -0700155class PacketInBroadcastCheck(base_tests.SimpleDataPlane):
Dan Talayco1f648cb2012-05-03 09:37:56 -0700156 """
157 Check if bcast pkts leak when no flows are present
158
159 Clear the flow table
160 Send in a broadcast pkt
161 Look for the packet on other dataplane ports.
162 """
Rich Laned1d9c282012-10-04 22:07:10 -0700163
Dan Talayco1f648cb2012-05-03 09:37:56 -0700164 def runTest(self):
165 # Need at least two ports
Rich Lane477f4812012-10-04 22:49:00 -0700166 self.assertTrue(len(config["port_map"]) > 1, "Too few ports for test")
Dan Talayco1f648cb2012-05-03 09:37:56 -0700167
Rich Lane9a003812012-10-04 17:17:59 -0700168 rc = delete_all_flows(self.controller)
Dan Talayco1f648cb2012-05-03 09:37:56 -0700169 self.assertEqual(rc, 0, "Failed to delete all flows")
170 self.assertEqual(do_barrier(self.controller), 0, "Barrier failed")
171
Rich Lane477f4812012-10-04 22:49:00 -0700172 of_ports = config["port_map"].keys()
Dan Talayco1f648cb2012-05-03 09:37:56 -0700173 d_port = of_ports[0]
174 pkt = simple_eth_packet(dl_dst='ff:ff:ff:ff:ff:ff')
175
Rich Lane9a003812012-10-04 17:17:59 -0700176 logging.info("BCast Leak Test, send to port %s" % d_port)
Dan Talayco1f648cb2012-05-03 09:37:56 -0700177 self.dataplane.send(d_port, str(pkt))
178
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700179 (of_port, pkt_in, pkt_time) = self.dataplane.poll(exp_pkt=pkt)
Dan Talayco1f648cb2012-05-03 09:37:56 -0700180 self.assertTrue(pkt_in is None,
181 'BCast packet received on port ' + str(of_port))
182
Rich Laneb90a1c42012-10-05 09:16:05 -0700183class PacketOut(base_tests.SimpleDataPlane):
Dan Talaycodba244e2010-02-15 14:08:53 -0800184 """
185 Test packet out function
Dan Talayco6ce963a2010-03-07 21:58:13 -0800186
187 Send packet out message to controller for each dataplane port and
188 verify the packet appears on the appropriate dataplane port
Dan Talaycodba244e2010-02-15 14:08:53 -0800189 """
190 def runTest(self):
191 # Construct packet to send to dataplane
192 # Send packet to dataplane
193 # Poll controller with expect message type packet in
Dan Talayco41eae8b2010-03-10 13:57:06 -0800194
Rich Lane9a003812012-10-04 17:17:59 -0700195 rc = delete_all_flows(self.controller)
Dan Talayco41eae8b2010-03-10 13:57:06 -0800196 self.assertEqual(rc, 0, "Failed to delete all flows")
Dan Talaycodba244e2010-02-15 14:08:53 -0800197
198 # These will get put into function
Rich Lane477f4812012-10-04 22:49:00 -0700199 of_ports = config["port_map"].keys()
Dan Talayco48370102010-03-03 15:17:33 -0800200 of_ports.sort()
201 for dp_port in of_ports:
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700202 for outpkt, opt in [
203 (simple_tcp_packet(), "simple TCP packet"),
204 (simple_eth_packet(), "simple Ethernet packet"),
205 (simple_eth_packet(pktlen=40), "tiny Ethernet packet")]:
Dan Talaycodba244e2010-02-15 14:08:53 -0800206
Rich Lane9a003812012-10-04 17:17:59 -0700207 logging.info("PKT OUT test with %s, port %s" % (opt, dp_port))
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700208 msg = message.packet_out()
Rich Laneafcf4672012-11-14 13:19:27 -0800209 msg.in_port = ofp.OFPP_NONE
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700210 msg.data = str(outpkt)
211 act = action.action_output()
212 act.port = dp_port
213 self.assertTrue(msg.actions.add(act), 'Could not add action to msg')
Dan Talaycodba244e2010-02-15 14:08:53 -0800214
Rich Lane9a003812012-10-04 17:17:59 -0700215 logging.info("PacketOut to: " + str(dp_port))
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700216 rv = self.controller.message_send(msg)
217 self.assertTrue(rv == 0, "Error sending out message")
Dan Talaycodba244e2010-02-15 14:08:53 -0800218
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700219 exp_pkt_arg = None
220 exp_port = None
Rich Lane477f4812012-10-04 22:49:00 -0700221 if config["relax"]:
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700222 exp_pkt_arg = outpkt
223 exp_port = dp_port
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700224 (of_port, pkt, pkt_time) = self.dataplane.poll(port_number=exp_port,
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700225 exp_pkt=exp_pkt_arg)
226
227 self.assertTrue(pkt is not None, 'Packet not received')
Rich Lane9a003812012-10-04 17:17:59 -0700228 logging.info("PacketOut: got pkt from " + str(of_port))
Ed Swierk0aeff8c2012-03-23 20:27:18 -0700229 if of_port is not None:
230 self.assertEqual(of_port, dp_port, "Unexpected receive port")
Ed Swierk506614a2012-03-29 08:16:59 -0700231 if not dataplane.match_exp_pkt(outpkt, pkt):
Rich Lane9a003812012-10-04 17:17:59 -0700232 logging.debug("Sent %s" % format_packet(outpkt))
233 logging.debug("Resp %s" % format_packet(
Dan Talayco2baf8b52012-03-30 09:55:42 -0700234 str(pkt)[:len(str(outpkt))]))
Dan Talaycodc6fca32012-03-30 10:05:49 -0700235 self.assertEqual(str(outpkt), str(pkt)[:len(str(outpkt))],
236 'Response packet does not match send packet')
Dan Talaycodba244e2010-02-15 14:08:53 -0800237
Rich Laneb90a1c42012-10-05 09:16:05 -0700238class PacketOutMC(base_tests.SimpleDataPlane):
Ken Chiang1bf01602012-04-04 10:48:23 -0700239 """
240 Test packet out to multiple output ports
241
242 Send packet out message to controller for 1 to N dataplane ports and
243 verify the packet appears on the appropriate ports
244 """
245 def runTest(self):
246 # Construct packet to send to dataplane
247 # Send packet to dataplane
248 # Poll controller with expect message type packet in
249
Rich Lane9a003812012-10-04 17:17:59 -0700250 rc = delete_all_flows(self.controller)
Ken Chiang1bf01602012-04-04 10:48:23 -0700251 self.assertEqual(rc, 0, "Failed to delete all flows")
252
253 # These will get put into function
Rich Lane477f4812012-10-04 22:49:00 -0700254 of_ports = config["port_map"].keys()
Ken Chiang1bf01602012-04-04 10:48:23 -0700255 random.shuffle(of_ports)
256 for num_ports in range(1,len(of_ports)+1):
257 for outpkt, opt in [
258 (simple_tcp_packet(), "simple TCP packet"),
259 (simple_eth_packet(), "simple Ethernet packet"),
260 (simple_eth_packet(pktlen=40), "tiny Ethernet packet")]:
261
262 dp_ports = of_ports[0:num_ports]
Rich Lane9a003812012-10-04 17:17:59 -0700263 logging.info("PKT OUT test with " + opt +
Ken Chiang1bf01602012-04-04 10:48:23 -0700264 ", ports " + str(dp_ports))
265 msg = message.packet_out()
Rich Laneafcf4672012-11-14 13:19:27 -0800266 msg.in_port = ofp.OFPP_NONE
Ken Chiang1bf01602012-04-04 10:48:23 -0700267 msg.data = str(outpkt)
268 act = action.action_output()
269 for i in range(0,num_ports):
270 act.port = dp_ports[i]
271 self.assertTrue(msg.actions.add(act),
272 'Could not add action to msg')
273
Rich Lane9a003812012-10-04 17:17:59 -0700274 logging.info("PacketOut to: " + str(dp_ports))
Ken Chiang1bf01602012-04-04 10:48:23 -0700275 rv = self.controller.message_send(msg)
276 self.assertTrue(rv == 0, "Error sending out message")
277
278 receive_pkt_check(self.dataplane, outpkt, dp_ports,
279 set(of_ports).difference(dp_ports),
Rich Lane2014f9b2012-10-05 15:29:40 -0700280 self)
Ken Chiang1bf01602012-04-04 10:48:23 -0700281
Rich Lane0a4f6372013-01-02 14:40:22 -0800282@disabled
Rich Laneb90a1c42012-10-05 09:16:05 -0700283class FlowStatsGet(base_tests.SimpleProtocol):
Dan Talayco6ce963a2010-03-07 21:58:13 -0800284 """
285 Get stats
Dan Talayco2c0dba32010-03-06 22:47:06 -0800286
Dan Talayco6ce963a2010-03-07 21:58:13 -0800287 Simply verify stats get transaction
288 """
Rich Laned1d9c282012-10-04 22:07:10 -0700289
Dan Talayco6ce963a2010-03-07 21:58:13 -0800290 def runTest(self):
Rich Lane9a003812012-10-04 17:17:59 -0700291 logging.info("Running StatsGet")
292 logging.info("Inserting trial flow")
Rich Lane477f4812012-10-04 22:49:00 -0700293 request = flow_mod_gen(config["port_map"], True)
Dan Talayco41eae8b2010-03-10 13:57:06 -0800294 rv = self.controller.message_send(request)
295 self.assertTrue(rv != -1, "Failed to insert test flow")
296
Rich Lane9a003812012-10-04 17:17:59 -0700297 logging.info("Sending flow request")
Dan Talayco6ce963a2010-03-07 21:58:13 -0800298 request = message.flow_stats_request()
299 request.out_port = ofp.OFPP_NONE
Dan Talayco41eae8b2010-03-10 13:57:06 -0800300 request.table_id = 0xff
301 request.match.wildcards = 0 # ofp.OFPFW_ALL
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700302 response, pkt = self.controller.transact(request)
Dan Talayco97d4f362012-09-18 03:22:09 -0700303 self.assertTrue(response is not None,
304 "Did not get response for flow stats")
Rich Lane9a003812012-10-04 17:17:59 -0700305 logging.debug(response.show())
Dan Talayco6ce963a2010-03-07 21:58:13 -0800306
Rich Laneb90a1c42012-10-05 09:16:05 -0700307class TableStatsGet(base_tests.SimpleProtocol):
Dan Talayco79c6c4d2010-06-08 14:01:53 -0700308 """
309 Get table stats
310
311 Simply verify table stats get transaction
312 """
313 def runTest(self):
Rich Lane9a003812012-10-04 17:17:59 -0700314 logging.info("Running TableStatsGet")
315 logging.info("Inserting trial flow")
Rich Lane477f4812012-10-04 22:49:00 -0700316 request = flow_mod_gen(config["port_map"], True)
Dan Talayco79c6c4d2010-06-08 14:01:53 -0700317 rv = self.controller.message_send(request)
318 self.assertTrue(rv != -1, "Failed to insert test flow")
319
Rich Lane9a003812012-10-04 17:17:59 -0700320 logging.info("Sending table stats request")
Dan Talayco79c6c4d2010-06-08 14:01:53 -0700321 request = message.table_stats_request()
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700322 response, pkt = self.controller.transact(request)
Dan Talayco97d4f362012-09-18 03:22:09 -0700323 self.assertTrue(response is not None,
324 "Did not get reply for table stats")
Rich Lane9a003812012-10-04 17:17:59 -0700325 logging.debug(response.show())
Dan Talayco79c6c4d2010-06-08 14:01:53 -0700326
Rich Laneb90a1c42012-10-05 09:16:05 -0700327class DescStatsGet(base_tests.SimpleProtocol):
Ed Swierkae74c362012-04-02 08:21:41 -0700328 """
329 Get stats
330
331 Simply verify stats get transaction
332 """
333 def runTest(self):
Rich Lane9a003812012-10-04 17:17:59 -0700334 logging.info("Running DescStatsGet")
Ed Swierkae74c362012-04-02 08:21:41 -0700335
Rich Lane9a003812012-10-04 17:17:59 -0700336 logging.info("Sending stats request")
Ed Swierkae74c362012-04-02 08:21:41 -0700337 request = message.desc_stats_request()
Rich Lanec8aaa3e2012-07-26 19:28:02 -0700338 response, pkt = self.controller.transact(request)
Dan Talayco97d4f362012-09-18 03:22:09 -0700339 self.assertTrue(response is not None,
340 "Did not get reply for desc stats")
Rich Lane9a003812012-10-04 17:17:59 -0700341 logging.debug(response.show())
Ed Swierkae74c362012-04-02 08:21:41 -0700342
Rich Laneb90a1c42012-10-05 09:16:05 -0700343class FlowMod(base_tests.SimpleProtocol):
Dan Talayco6ce963a2010-03-07 21:58:13 -0800344 """
345 Insert a flow
346
347 Simple verification of a flow mod transaction
348 """
349
350 def runTest(self):
Rich Lane9a003812012-10-04 17:17:59 -0700351 logging.info("Running " + str(self))
Rich Lane477f4812012-10-04 22:49:00 -0700352 request = flow_mod_gen(config["port_map"], True)
Dan Talayco6ce963a2010-03-07 21:58:13 -0800353 rv = self.controller.message_send(request)
Dan Talayco41eae8b2010-03-10 13:57:06 -0800354 self.assertTrue(rv != -1, "Error installing flow mod")
355
Rich Laneb90a1c42012-10-05 09:16:05 -0700356class PortConfigMod(base_tests.SimpleProtocol):
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700357 """
358 Modify a bit in port config and verify changed
359
360 Get the switch configuration, modify the port configuration
361 and write it back; get the config again and verify changed.
362 Then set it back to the way it was.
363 """
364
365 def runTest(self):
Rich Lane9a003812012-10-04 17:17:59 -0700366 logging.info("Running " + str(self))
Rich Lane477f4812012-10-04 22:49:00 -0700367 for of_port, ifname in config["port_map"].items(): # Grab first port
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700368 break
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700369
Rich Lane477f4812012-10-04 22:49:00 -0700370 (hw_addr, port_config, advert) = \
Rich Lane9a003812012-10-04 17:17:59 -0700371 port_config_get(self.controller, of_port)
Rich Lane477f4812012-10-04 22:49:00 -0700372 self.assertTrue(port_config is not None, "Did not get port config")
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700373
Rich Lane9a003812012-10-04 17:17:59 -0700374 logging.debug("No flood bit port " + str(of_port) + " is now " +
Rich Lane477f4812012-10-04 22:49:00 -0700375 str(port_config & ofp.OFPPC_NO_FLOOD))
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700376
377 rv = port_config_set(self.controller, of_port,
Rich Lane477f4812012-10-04 22:49:00 -0700378 port_config ^ ofp.OFPPC_NO_FLOOD, ofp.OFPPC_NO_FLOOD)
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700379 self.assertTrue(rv != -1, "Error sending port mod")
Rich Lanebbd4cf92012-10-11 23:44:42 -0700380 self.assertEqual(do_barrier(self.controller), 0, "Barrier failed")
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700381
382 # Verify change took place with same feature request
Rich Lane477f4812012-10-04 22:49:00 -0700383 (hw_addr, port_config2, advert) = \
Rich Lane9a003812012-10-04 17:17:59 -0700384 port_config_get(self.controller, of_port)
385 logging.debug("No flood bit port " + str(of_port) + " is now " +
Rich Lane477f4812012-10-04 22:49:00 -0700386 str(port_config2 & ofp.OFPPC_NO_FLOOD))
387 self.assertTrue(port_config2 is not None, "Did not get port config2")
388 self.assertTrue(port_config2 & ofp.OFPPC_NO_FLOOD !=
389 port_config & ofp.OFPPC_NO_FLOOD,
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700390 "Bit change did not take")
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700391 # Set it back
Rich Lane477f4812012-10-04 22:49:00 -0700392 rv = port_config_set(self.controller, of_port, port_config,
Rich Lane9a003812012-10-04 17:17:59 -0700393 ofp.OFPPC_NO_FLOOD)
Dan Talayco9f47f4d2010-06-03 13:54:37 -0700394 self.assertTrue(rv != -1, "Error sending port mod")
Rich Lanebbd4cf92012-10-11 23:44:42 -0700395 self.assertEqual(do_barrier(self.controller), 0, "Barrier failed")
Dan Talaycob3f43fe2010-05-13 14:24:20 -0700396
Rich Laneb90a1c42012-10-05 09:16:05 -0700397class PortConfigModErr(base_tests.SimpleProtocol):
Ken Chiangaeb23d62012-08-23 21:20:07 -0700398 """
399 Modify a bit in port config on an invalid port and verify
400 error message is received.
401 """
402
403 def runTest(self):
Rich Lane9a003812012-10-04 17:17:59 -0700404 logging.info("Running " + str(self))
Ken Chiangaeb23d62012-08-23 21:20:07 -0700405
406 # pick a random bad port number
407 bad_port = random.randint(1, ofp.OFPP_MAX)
408 count = 0
Rich Lane477f4812012-10-04 22:49:00 -0700409 while (count < 50) and (bad_port in config["port_map"].keys()):
Ken Chiangaeb23d62012-08-23 21:20:07 -0700410 bad_port = random.randint(1, ofp.OFPP_MAX)
411 count = count + 1
412 self.assertTrue(count < 50, "Error selecting bad port")
Rich Lane9a003812012-10-04 17:17:59 -0700413 logging.info("Select " + str(bad_port) + " as invalid port")
Ken Chiangaeb23d62012-08-23 21:20:07 -0700414
415 rv = port_config_set(self.controller, bad_port,
Rich Lane9a003812012-10-04 17:17:59 -0700416 ofp.OFPPC_NO_FLOOD, ofp.OFPPC_NO_FLOOD)
Ken Chiangaeb23d62012-08-23 21:20:07 -0700417 self.assertTrue(rv != -1, "Error sending port mod")
418
419 # poll for error message
420 while True:
Dan Talaycoc689a792012-09-28 14:22:53 -0700421 (response, raw) = self.controller.poll(ofp.OFPT_ERROR)
Ken Chiangaeb23d62012-08-23 21:20:07 -0700422 if not response: # Timeout
423 break
424 if response.code == ofp.OFPPMFC_BAD_PORT:
Rich Lane9a003812012-10-04 17:17:59 -0700425 logging.info("Received error message with OFPPMFC_BAD_PORT code")
Ken Chiangaeb23d62012-08-23 21:20:07 -0700426 break
Rich Lane477f4812012-10-04 22:49:00 -0700427 if not config["relax"]: # Only one attempt to match
Ken Chiangaeb23d62012-08-23 21:20:07 -0700428 break
429 count += 1
430 if count > 10: # Too many tries
431 break
432
433 self.assertTrue(response is not None, 'Did not receive error message')
434
Rich Laneb90a1c42012-10-05 09:16:05 -0700435class BadMessage(base_tests.SimpleProtocol):
Dan Talaycoe605b1b2012-09-18 06:56:20 -0700436 """
437 Send a message with a bad type and verify an error is returned
438 """
439
440 def runTest(self):
Rich Lane9a003812012-10-04 17:17:59 -0700441 logging.info("Running " + str(self))
Dan Talaycoe605b1b2012-09-18 06:56:20 -0700442 request = illegal_message.illegal_message_type()
443
Dan Talaycoc689a792012-09-28 14:22:53 -0700444 reply, pkt = self.controller.transact(request)
Dan Talaycoe605b1b2012-09-18 06:56:20 -0700445 self.assertTrue(reply is not None, "Did not get response to bad req")
446 self.assertTrue(reply.header.type == ofp.OFPT_ERROR,
447 "reply not an error message")
448 self.assertTrue(reply.type == ofp.OFPET_BAD_REQUEST,
449 "reply error type is not bad request")
450 self.assertTrue(reply.code == ofp.OFPBRC_BAD_TYPE,
451 "reply error code is not bad type")
452
Dan Talaycodba244e2010-02-15 14:08:53 -0800453if __name__ == "__main__":
Dan Talayco2c0dba32010-03-06 22:47:06 -0800454 print "Please run through oft script: ./oft --test_spec=basic"