ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 1 | |
| 2 | """These tests fall under Conformance Test-Suite (OF-SWITCH-1.0.0 TestCases). |
| 3 | Refer Documentation -- Detailed testing methodology |
| 4 | <Some of test-cases are directly taken from oftest> """ |
| 5 | |
| 6 | "Test Suite 6 ---> Actions " |
| 7 | |
| 8 | |
| 9 | import logging |
| 10 | |
| 11 | import unittest |
| 12 | import random |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 13 | import time |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 14 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 15 | from oftest import config |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 16 | import oftest.controller as controller |
Rich Lane | d7b0ffa | 2013-03-08 15:53:42 -0800 | [diff] [blame] | 17 | import ofp |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 18 | import oftest.dataplane as dataplane |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 19 | import oftest.parse as parse |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 20 | import oftest.base_tests as base_tests |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 21 | |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 22 | from oftest.testutils import * |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 23 | from time import sleep |
| 24 | from FuncUtils import * |
| 25 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 26 | class NoAction(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 27 | |
| 28 | """NoActionDrop : no action added to flow , drops the packet.""" |
| 29 | |
| 30 | def runTest(self): |
| 31 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 32 | logging.info("Running No_Action test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 33 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 34 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 35 | of_ports.sort() |
| 36 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 37 | |
| 38 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 39 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 40 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 41 | logging.info("Install a flow without action") |
| 42 | logging.info("Send packets matching that flow") |
| 43 | logging.info("Expecting switch to drop all packets") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 44 | |
| 45 | # Insert a flow wildcard all without any action |
| 46 | pkt = simple_tcp_packet() |
| 47 | match = parse.packet_to_flow_match(pkt) |
| 48 | self.assertTrue(match is not None, "Could not generate flow match from pkt") |
| 49 | match.wildcards=ofp.OFPFW_ALL |
| 50 | match.in_port = of_ports[0] |
| 51 | |
Rich Lane | ba3f0e2 | 2013-03-11 16:43:57 -0700 | [diff] [blame] | 52 | msg = ofp.message.flow_add() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 53 | msg.out_port = ofp.OFPP_NONE |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 54 | msg.buffer_id = 0xffffffff |
| 55 | msg.match = match |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 56 | self.controller.message_send(msg) |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 57 | do_barrier(self.controller) |
ShreyaPandita | b46f852 | 2012-09-28 15:12:15 -0400 | [diff] [blame] | 58 | |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 59 | #Sending N packets matching the flow inserted |
| 60 | for pkt_cnt in range(5): |
| 61 | self.dataplane.send(of_ports[0],str(pkt)) |
| 62 | |
| 63 | #Verify packets not recieved on any of the dataplane ports |
ShreyaPandita | 7b9ec98 | 2012-09-28 14:43:08 -0400 | [diff] [blame] | 64 | (rcv_port, rcv_pkt, pkt_time) = self.dataplane.poll(timeout=1,exp_pkt=pkt) |
| 65 | self.assertTrue(rcv_pkt is None, |
ShreyaPandita | d4a42c6 | 2012-09-28 15:35:27 -0400 | [diff] [blame] | 66 | "Packet received on port " + str(rcv_port)) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 67 | |
| 68 | #Verify packets not sent on control plane either |
| 69 | (response, raw) = self.controller.poll(ofp.OFPT_PACKET_IN, timeout=1) |
| 70 | self.assertTrue(response is None, |
| 71 | 'Packets not received on control plane') |
| 72 | |
| 73 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 74 | class Announcement(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 75 | |
| 76 | """Announcement : Get all supported actions by the switch. |
| 77 | Send OFPT_FEATURES_REQUEST to get features supported by sw.""" |
| 78 | |
| 79 | def runTest(self): |
| 80 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 81 | logging.info("Running Announcement test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 82 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 83 | logging.info("Sending Features_Request") |
| 84 | logging.info("Expecting Features Reply with supported actions") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 85 | |
| 86 | # Sending Features_Request |
Rich Lane | 28fa927 | 2013-03-08 16:00:25 -0800 | [diff] [blame] | 87 | request = ofp.message.features_request() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 88 | (reply, pkt) = self.controller.transact(request) |
| 89 | self.assertTrue(reply is not None, "Failed to get any reply") |
Rich Lane | b73808c | 2013-03-11 15:22:23 -0700 | [diff] [blame] | 90 | self.assertEqual(reply.type, ofp.OFPT_FEATURES_REPLY,'Response is not Features_reply') |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 91 | |
| 92 | supported_actions =[] |
| 93 | if(reply.actions &1<<ofp.OFPAT_OUTPUT): |
| 94 | supported_actions.append('OFPAT_OUTPUT') |
| 95 | if(reply.actions &1<<ofp.OFPAT_SET_VLAN_VID): |
| 96 | supported_actions.append('OFPAT_SET_VLAN_VID') |
| 97 | if(reply.actions &1<<ofp.OFPAT_SET_VLAN_PCP): |
| 98 | supported_actions.append('OFPAT_SET_VLAN_PCP') |
| 99 | if(reply.actions &1<<ofp.OFPAT_STRIP_VLAN): |
| 100 | supported_actions.append('OFPAT_STRIP_VLAN') |
| 101 | if(reply.actions &1<<ofp.OFPAT_SET_DL_SRC): |
| 102 | supported_actions.append('OFPAT_SET_DL_SRC') |
| 103 | if(reply.actions &1<<ofp.OFPAT_SET_DL_DST): |
| 104 | supported_actions.append('OFPAT_SET_NW_SRC') |
| 105 | if(reply.actions &1<<ofp.OFPAT_SET_NW_DST): |
| 106 | supported_actions.append('OFPAT_SET_NW_DST') |
| 107 | if(reply.actions &1<<ofp.OFPAT_SET_NW_TOS): |
| 108 | supported_actions.append('OFPAT_SET_NW_TOS') |
| 109 | if(reply.actions &1<<ofp.OFPAT_SET_TP_SRC): |
| 110 | supported_actions.append('OFPAT_SET_TP_SRC') |
| 111 | if(reply.actions &1<<ofp.OFPAT_SET_TP_DST): |
| 112 | supported_actions.append('OFPAT_SET_TP_DST') |
| 113 | if(reply.actions &1<<ofp.OFPAT_VENDOR): |
| 114 | supported_actions.append('OFPAT_VENDOR') |
| 115 | if(reply.actions &1<<ofp.OFPAT_ENQUEUE): |
| 116 | supported_actions.append('OFPAT_ENQUEUE') |
| 117 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 118 | logging.info(supported_actions) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 119 | |
| 120 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 121 | class ForwardAll(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 122 | |
| 123 | """ForwardAll : Packet is sent to all dataplane ports |
| 124 | except ingress port when output action.port = OFPP_ALL""" |
| 125 | |
| 126 | def runTest(self): |
| 127 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 128 | logging.info("Running Forward_All test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 129 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 130 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 131 | of_ports.sort() |
| 132 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 133 | |
| 134 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 135 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 136 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 137 | logging.info("Insert a flow with output action port OFPP_ALL") |
| 138 | logging.info("Send packet matching the flow") |
| 139 | logging.info("Expecting packet on all dataplane ports except ingress_port") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 140 | |
| 141 | #Create a packet |
| 142 | pkt = simple_tcp_packet() |
| 143 | match = parse.packet_to_flow_match(pkt) |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 144 | act = ofp.action.output() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 145 | |
| 146 | #Delete all flows |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 147 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 148 | ingress_port=of_ports[0] |
| 149 | match.in_port = ingress_port |
| 150 | |
| 151 | #Create a flow mod with action.port = OFPP_ALL |
Rich Lane | ba3f0e2 | 2013-03-11 16:43:57 -0700 | [diff] [blame] | 152 | request = ofp.message.flow_add() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 153 | request.match = match |
| 154 | request.match.wildcards = ofp.OFPFW_ALL&~ofp.OFPFW_IN_PORT |
| 155 | act.port = ofp.OFPP_ALL |
Rich Lane | c495d9e | 2013-03-08 17:43:36 -0800 | [diff] [blame] | 156 | request.actions.append(act) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 157 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 158 | logging.info("Inserting flow") |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 159 | self.controller.message_send(request) |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 160 | do_barrier(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 161 | |
| 162 | #Send Packet matching the flow |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 163 | logging.info("Sending packet to dp port " + str(ingress_port)) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 164 | self.dataplane.send(ingress_port, str(pkt)) |
| 165 | |
| 166 | #Verifying packets recieved on expected dataplane ports |
| 167 | yes_ports = set(of_ports).difference([ingress_port]) |
| 168 | receive_pkt_check(self.dataplane, pkt, yes_ports, [ingress_port], |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 169 | self) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 170 | |
| 171 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 172 | class ForwardController(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 173 | |
| 174 | """ForwardController : Packet is sent to controller |
| 175 | output.port = OFPP_CONTROLLER""" |
| 176 | |
| 177 | def runTest(self): |
| 178 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 179 | logging.info("Running Forward_Controller test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 180 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 181 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 182 | of_ports.sort() |
| 183 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 184 | |
| 185 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 186 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 187 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 188 | logging.info("Insert a flow with output action port OFPP_CONTROLLER") |
| 189 | logging.info("Send packet matching the flow") |
| 190 | logging.info("Expecting packet on the control plane") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 191 | |
| 192 | #Create packet |
| 193 | pkt = simple_tcp_packet() |
| 194 | match = parse.packet_to_flow_match(pkt) |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 195 | act = ofp.action.output() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 196 | |
| 197 | for ingress_port in of_ports: |
| 198 | #Delete all flows |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 199 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 200 | |
| 201 | match.in_port = ingress_port |
| 202 | |
| 203 | #Create a flow mod message |
Rich Lane | ba3f0e2 | 2013-03-11 16:43:57 -0700 | [diff] [blame] | 204 | request = ofp.message.flow_add() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 205 | request.match = match |
| 206 | act.port = ofp.OFPP_CONTROLLER |
Rich Lane | c495d9e | 2013-03-08 17:43:36 -0800 | [diff] [blame] | 207 | request.actions.append(act) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 208 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 209 | logging.info("Inserting flow") |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 210 | self.controller.message_send(request) |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 211 | do_barrier(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 212 | |
| 213 | #Send packet matching the flow |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 214 | logging.info("Sending packet to dp port " + str(ingress_port)) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 215 | self.dataplane.send(ingress_port, str(pkt)) |
| 216 | |
| 217 | #Verifying packet recieved on the control plane port |
| 218 | (response, raw) = self.controller.poll(ofp.OFPT_PACKET_IN, timeout=10) |
| 219 | self.assertTrue(response is not None, |
| 220 | 'Packet in message not received by controller') |
| 221 | |
| 222 | |
| 223 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 224 | class ForwardLocal(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 225 | |
| 226 | """ForwardLocal : Packet is sent to OFPP_LOCAL port . |
| 227 | TBD : To verify packet recieved in the local networking stack of switch""" |
| 228 | |
| 229 | def runTest(self): |
| 230 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 231 | logging.info("Running Forward_Local test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 232 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 233 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 234 | of_ports.sort() |
| 235 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 236 | |
| 237 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 238 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 239 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 240 | logging.info("Insert a flow with output action port OFPP_LOCAL") |
| 241 | logging.info("Send packet matching the flow") |
| 242 | logging.info("Expecting packet in the local networking stack of switch") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 243 | |
| 244 | #Clear switch state |
| 245 | pkt = simple_tcp_packet() |
| 246 | match = parse.packet_to_flow_match(pkt) |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 247 | act = ofp.action.output() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 248 | |
| 249 | for ingress_port in of_ports: |
| 250 | #Delete the flows |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 251 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 252 | |
| 253 | match.in_port = ingress_port |
| 254 | #Create flow mod message |
Rich Lane | ba3f0e2 | 2013-03-11 16:43:57 -0700 | [diff] [blame] | 255 | request = ofp.message.flow_add() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 256 | request.match = match |
| 257 | act.port = ofp.OFPP_LOCAL |
Rich Lane | c495d9e | 2013-03-08 17:43:36 -0800 | [diff] [blame] | 258 | request.actions.append(act) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 259 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 260 | logging.info("Inserting flow") |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 261 | self.controller.message_send(request) |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 262 | do_barrier(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 263 | |
| 264 | #Send packet matching the flow |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 265 | logging.info("Sending packet to dp port " + str(ingress_port)) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 266 | self.dataplane.send(ingress_port, str(pkt)) |
| 267 | |
| 268 | #TBD: Verification of packets being recieved. |
| 269 | |
| 270 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 271 | class ForwardFlood(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 272 | |
| 273 | """Forward:Flood : Packet is sent to all dataplane ports |
| 274 | except ingress port when output action.port = OFPP_FLOOD |
| 275 | TBD : Verification---Incase of STP being implemented, flood the packet along the minimum spanning tree, |
| 276 | not including the incoming interface. """ |
| 277 | |
| 278 | def runTest(self): |
| 279 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 280 | logging.info("Running Forward_Flood test") |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 281 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 282 | of_ports.sort() |
| 283 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 284 | |
| 285 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 286 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 287 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 288 | logging.info("Insert a flow with output action port OFPP_FORWARD") |
| 289 | logging.info("Send packet matching the flow") |
| 290 | logging.info("Expecting packet on all the ports except the input port") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 291 | |
| 292 | #Create a packet |
| 293 | pkt = simple_tcp_packet() |
| 294 | match = parse.packet_to_flow_match(pkt) |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 295 | act = ofp.action.output() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 296 | |
| 297 | #Delete all flows |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 298 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 299 | ingress_port=of_ports[0] |
| 300 | match.in_port = ingress_port |
| 301 | |
| 302 | #Create a flow mod with action.port = OFPP_ALL |
Rich Lane | ba3f0e2 | 2013-03-11 16:43:57 -0700 | [diff] [blame] | 303 | request = ofp.message.flow_add() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 304 | request.match = match |
| 305 | request.match.wildcards = ofp.OFPFW_ALL&~ofp.OFPFW_IN_PORT |
| 306 | act.port = ofp.OFPP_FLOOD |
Rich Lane | c495d9e | 2013-03-08 17:43:36 -0800 | [diff] [blame] | 307 | request.actions.append(act) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 308 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 309 | logging.info("Inserting flow") |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 310 | self.controller.message_send(request) |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 311 | do_barrier(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 312 | |
| 313 | #Send Packet matching the flow |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 314 | logging.info("Sending packet to dp port " + str(ingress_port)) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 315 | self.dataplane.send(ingress_port, str(pkt)) |
| 316 | |
| 317 | #Verifying packets recieved on expected dataplane ports |
| 318 | yes_ports = set(of_ports).difference([ingress_port]) |
| 319 | receive_pkt_check(self.dataplane, pkt, yes_ports, [ingress_port], |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 320 | self) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 321 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 322 | class ForwardInport(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 323 | |
| 324 | """ ForwardInPort : Packet sent to virtual port IN_PORT |
| 325 | If the output.port = OFPP.INPORT then the packet is sent to the input port itself""" |
| 326 | |
| 327 | def runTest(self): |
| 328 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 329 | logging.info("Running Forward_Inport test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 330 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 331 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 332 | of_ports.sort() |
| 333 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 334 | |
| 335 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 336 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 337 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 338 | logging.info("Insert a flow with output action port OFPP_INPORT") |
| 339 | logging.info("Send packet matching the flow") |
| 340 | logging.info("Expecting packet on the input port") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 341 | |
| 342 | #Create a packet |
| 343 | pkt = simple_tcp_packet() |
| 344 | match = parse.packet_to_flow_match(pkt) |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 345 | act = ofp.action.output() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 346 | |
| 347 | #Delete the flows |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 348 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 349 | ingress_port=of_ports[0] |
| 350 | match.in_port = ingress_port |
| 351 | |
| 352 | # Create a flow mod message |
Rich Lane | ba3f0e2 | 2013-03-11 16:43:57 -0700 | [diff] [blame] | 353 | request = ofp.message.flow_add() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 354 | request.match = match |
| 355 | act.port = ofp.OFPP_IN_PORT |
| 356 | |
Rich Lane | c495d9e | 2013-03-08 17:43:36 -0800 | [diff] [blame] | 357 | request.actions.append(act) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 358 | logging.info("Inserting flow") |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 359 | self.controller.message_send(request) |
Rich Lane | 3a261d5 | 2013-01-03 17:45:08 -0800 | [diff] [blame] | 360 | do_barrier(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 361 | |
| 362 | #Send packet matching the flow |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 363 | logging.info("Sending packet to dp port " + str(ingress_port)) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 364 | self.dataplane.send(ingress_port, str(pkt)) |
| 365 | yes_ports = [ingress_port] |
| 366 | |
| 367 | #Verfying packet recieved on expected dataplane ports |
| 368 | receive_pkt_check(self.dataplane, pkt, yes_ports,set(of_ports).difference([ingress_port]), |
Rich Lane | 2014f9b | 2012-10-05 15:29:40 -0700 | [diff] [blame] | 369 | self) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 370 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 371 | class ForwardTable(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 372 | |
| 373 | """ForwardTable : Perform actions in flow table. Only for packet-out messages. |
| 374 | If the output action.port in the packetout message = OFP.TABLE , then |
| 375 | the packet implements the action specified in the matching flow of the FLOW-TABLE""" |
| 376 | |
| 377 | def runTest(self): |
| 378 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 379 | logging.info("Running Forward_Table test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 380 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 381 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 382 | of_ports.sort() |
| 383 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 384 | |
| 385 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 386 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 387 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 388 | logging.info("Insert a flow F with output action port set to some egress_port") |
| 389 | logging.info("Send packet out message (matching flow F) with action.port = OFP.TABLE") |
| 390 | logging.info("Expecting packet on the egress_port") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 391 | |
| 392 | #Insert a all wildcarded flow |
ShreyaPandita | 8dab466 | 2012-11-02 13:40:14 -0400 | [diff] [blame] | 393 | (pkt,match) = wildcard_all(self,of_ports) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 394 | |
| 395 | #Create a packet out message |
Rich Lane | 28fa927 | 2013-03-08 16:00:25 -0800 | [diff] [blame] | 396 | pkt_out =ofp.message.packet_out(); |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 397 | pkt_out.data = str(pkt) |
| 398 | pkt_out.in_port = of_ports[0] |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 399 | act = ofp.action.output() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 400 | act.port = ofp.OFPP_TABLE |
Rich Lane | c495d9e | 2013-03-08 17:43:36 -0800 | [diff] [blame] | 401 | pkt_out.actions.append(act) |
Rich Lane | 5c3151c | 2013-01-03 17:15:41 -0800 | [diff] [blame] | 402 | self.controller.message_send(pkt_out) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 403 | |
| 404 | #Verifying packet out message recieved on the expected dataplane port. |
| 405 | (of_port, pkt, pkt_time) = self.dataplane.poll(port_number=of_ports[1], |
| 406 | exp_pkt=pkt,timeout=3) |
| 407 | self.assertTrue(pkt is not None, 'Packet not received') |
| 408 | |
| 409 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 410 | class AddVlanTag(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 411 | |
| 412 | """AddVlanTag : Adds VLAN Tag to untagged packet.""" |
| 413 | |
| 414 | def runTest(self): |
| 415 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 416 | logging.info("Running Add_vlan_tag test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 417 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 418 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 419 | of_ports.sort() |
| 420 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 421 | |
| 422 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 423 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 424 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 425 | logging.info("Verify if switch supports the action -- set vlan id, if not skip the test") |
| 426 | logging.info("Insert a flow with set vid action") |
| 427 | logging.info("Send packet matching the flow , verify recieved packet has vid set") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 428 | |
| 429 | #Verify set_vlan_id is a supported action |
| 430 | sup_acts = sw_supported_actions(self) |
| 431 | if not(sup_acts & 1<<ofp.OFPAT_SET_VLAN_VID): |
| 432 | skip_message_emit(self, "Add VLAN tag test skipped") |
| 433 | return |
| 434 | |
| 435 | #Create packet to be sent and an expected packet with vid set |
| 436 | new_vid = 2 |
| 437 | len_wo_vid = 100 |
| 438 | len_w_vid = 104 |
| 439 | pkt = simple_tcp_packet(pktlen=len_wo_vid) |
| 440 | exp_pkt = simple_tcp_packet(pktlen=len_w_vid, dl_vlan_enable=True, |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 441 | vlan_vid=new_vid,vlan_pcp=0) |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 442 | vid_act = ofp.action.set_vlan_vid() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 443 | vid_act.vlan_vid = new_vid |
| 444 | |
| 445 | #Insert flow with action -- set vid , Send packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 446 | flow_match_test(self, config["port_map"], pkt=pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 447 | exp_pkt=exp_pkt, action_list=[vid_act]) |
| 448 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 449 | class ModifyVlanTag(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 450 | |
| 451 | """ModifyVlanTag : Modifies VLAN Tag to tagged packet.""" |
| 452 | |
| 453 | def runTest(self): |
| 454 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 455 | logging.info("Running Modify_Vlan_Tag test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 456 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 457 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 458 | of_ports.sort() |
| 459 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 460 | |
| 461 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 462 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 463 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 464 | logging.info("Verify if switch supports the action -- modify vlan id, if not skip the test") |
| 465 | logging.info("Insert a flow with action --set vid ") |
| 466 | logging.info("Send tagged packet matching the flow , verify recieved packet has vid rewritten") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 467 | |
| 468 | #Verify set_vlan_id is a supported action |
| 469 | sup_acts = sw_supported_actions(self) |
| 470 | if not (sup_acts & 1 << ofp.OFPAT_SET_VLAN_VID): |
| 471 | skip_message_emit(self, "Modify VLAN tag test skipped") |
| 472 | return |
| 473 | |
| 474 | #Create a tagged packet with old_vid to be sent, and expected packet with new_vid |
| 475 | old_vid = 2 |
| 476 | new_vid = 3 |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 477 | pkt = simple_tcp_packet(dl_vlan_enable=True, vlan_vid=old_vid) |
| 478 | exp_pkt = simple_tcp_packet(dl_vlan_enable=True, vlan_vid=new_vid) |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 479 | vid_act = ofp.action.set_vlan_vid() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 480 | vid_act.vlan_vid = new_vid |
| 481 | |
| 482 | #Insert flow with action -- set vid , Send packet matching the flow.Verify recieved packet is expected packet. |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 483 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 484 | action_list=[vid_act]) |
| 485 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 486 | class VlanPrio1(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 487 | |
| 488 | """AddVlanPrioUntaggedPkt : Add VLAN priority to untagged packet.""" |
| 489 | |
| 490 | def runTest(self): |
| 491 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 492 | logging.info("Running vlan_Prio_1 test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 493 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 494 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 495 | of_ports.sort() |
| 496 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 497 | |
| 498 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 499 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 500 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 501 | logging.info("Verify if switch supports the action -- set vlan priority, if not skip the test") |
| 502 | logging.info("Insert a flow with action -- set vlan priority ") |
| 503 | logging.info("Send untagged packet matching the flow , verify recieved packet has specified VLAN priority and has vid set tO 0 ") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 504 | |
| 505 | #Verify set_vlan_priority is a supported action |
| 506 | sup_acts = sw_supported_actions(self) |
| 507 | if not (sup_acts & 1 << ofp.OFPAT_SET_VLAN_PCP): |
| 508 | skip_message_emit(self, "Set VLAN priority test skipped") |
| 509 | return |
| 510 | |
| 511 | #Create a untagged packet to be sent and an expected packet with vid = 0 , vlan_priority set. |
| 512 | vlan_id = 0 |
Rich Lane | 123928c | 2012-10-04 21:28:53 -0700 | [diff] [blame] | 513 | vlan_pcp = 1 |
Dan Talayco | 3bfc822 | 2013-02-13 18:18:57 -0800 | [diff] [blame] | 514 | pktlen = 64 if config["minsize"] < 64 else config["minsize"] |
| 515 | pkt = simple_tcp_packet(pktlen=pktlen) |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 516 | exp_pkt = simple_tcp_packet(dl_vlan_enable=True, vlan_vid=vlan_id,vlan_pcp=vlan_pcp, pktlen=pktlen + 4) |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 517 | act = ofp.action.set_vlan_pcp() |
Rich Lane | 123928c | 2012-10-04 21:28:53 -0700 | [diff] [blame] | 518 | act.vlan_pcp = vlan_pcp |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 519 | |
| 520 | #Insert flow with action -- set vLAN priority, Send packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 521 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 522 | action_list=[act]) |
| 523 | |
| 524 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 525 | class VlanPrio2(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 526 | |
| 527 | """ModifyVlanPrio : Modify VLAN priority to tagged packet.""" |
| 528 | |
| 529 | def runTest(self): |
| 530 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 531 | logging.info("Running Vlan_Prio_2 test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 532 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 533 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 534 | of_ports.sort() |
| 535 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 536 | |
| 537 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 538 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 539 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 540 | logging.info("Verify if switch supports the action -- set vlan priority, if not skip the test") |
| 541 | logging.info("Insert a flow with action -- set vlan priority ") |
| 542 | logging.info("Send tagged packet matching the flow, verify recieved packet has vlan priority rewritten") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 543 | |
| 544 | #Verify set_vlan_priority is a supported action |
| 545 | sup_acts = sw_supported_actions(self,"true") |
| 546 | if not (sup_acts & 1 << ofp.OFPAT_SET_VLAN_PCP): |
| 547 | skip_message_emit(self, "modify_vlan_prio test skipped") |
| 548 | return |
| 549 | |
| 550 | #Create a tagged packet , and an expected packet with vlan_priority set to specified value |
| 551 | vid = 123 |
| 552 | old_vlan_pcp = 2 |
| 553 | new_vlan_pcp = 3 |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 554 | pkt = simple_tcp_packet(dl_vlan_enable=True, vlan_vid=vid, vlan_pcp=old_vlan_pcp) |
| 555 | exp_pkt = simple_tcp_packet(dl_vlan_enable=True, vlan_vid=vid, vlan_pcp=new_vlan_pcp) |
Rich Lane | 9d3cc6b | 2013-03-08 16:33:08 -0800 | [diff] [blame] | 556 | vid_act = ofp.action.set_vlan_pcp() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 557 | vid_act.vlan_pcp = new_vlan_pcp |
| 558 | |
| 559 | #Insert flow with action -- set vLAN priority, Send tagged packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 560 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 561 | action_list=[vid_act]) |
| 562 | |
| 563 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 564 | class ModifyL2Src(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 565 | |
| 566 | """ModifyL2Src :Modify the source MAC address""" |
| 567 | |
| 568 | def runTest(self): |
| 569 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 570 | logging.info("Running Modify_L2_Src test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 571 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 572 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 573 | of_ports.sort() |
| 574 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 575 | |
| 576 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 577 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 578 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 579 | logging.info("Verify if switch supports the action -- modify_l2_src, if not skip the test") |
| 580 | logging.info("Insert a flow with action -- set etherent src address") |
| 581 | logging.info("Send packet matching the flow, verify recieved packet src address rewritten ") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 582 | |
| 583 | #Verify set_dl_src is a supported action |
| 584 | sup_acts = sw_supported_actions(self,use_cache="true") |
| 585 | if not (sup_acts & 1 << ofp.OFPAT_SET_DL_SRC): |
| 586 | skip_message_emit(self, "modify_l2_src test skipped") |
| 587 | return |
| 588 | |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 589 | #Create packet to be sent and expected packet with eth_src set to specified value |
| 590 | (pkt, exp_pkt, acts) = pkt_action_setup(self, mod_fields=['eth_src'], |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 591 | check_test_params=True) |
| 592 | |
| 593 | #Insert flow with action -- set src address, Send packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 594 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 595 | action_list=acts, max_test=2) |
| 596 | |
| 597 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 598 | class ModifyL2Dst(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 599 | |
| 600 | """ModifyL2SDSt :Modify the dest MAC address""" |
| 601 | |
| 602 | def runTest(self): |
| 603 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 604 | logging.info("Running Modify_L2_Dst test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 605 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 606 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 607 | of_ports.sort() |
| 608 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 609 | |
| 610 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 611 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 612 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 613 | logging.info("Verify if switch supports the action -- modify_l2_dst, if not skip the test") |
| 614 | logging.info("Insert a flow with action -- set etherent dst address ") |
| 615 | logging.info("Send packet matching the flow, verify recieved packet dst address rewritten ") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 616 | |
| 617 | #Verify set_dl_dst is a supported action |
| 618 | sup_acts = sw_supported_actions(self) |
| 619 | if not (sup_acts & 1 << ofp.OFPAT_SET_DL_DST): |
| 620 | skip_message_emit(self, "modify_l2_dst test skipped") |
| 621 | return |
| 622 | |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 623 | #Create packet to be sent and expected packet with eth_src set to specified value |
| 624 | (pkt, exp_pkt, acts) = pkt_action_setup(self, mod_fields=['eth_dst'], |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 625 | check_test_params=True) |
| 626 | |
| 627 | #Insert flow with action -- set dst address, Send packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 628 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 629 | action_list=acts, max_test=2) |
| 630 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 631 | class ModifyL3Src(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 632 | |
| 633 | """ModifyL3Src : Modify the source IP address of an IP packet """ |
| 634 | |
| 635 | def runTest(self): |
| 636 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 637 | logging.info("Running Modify_L3_Src test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 638 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 639 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 640 | of_ports.sort() |
| 641 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 642 | |
| 643 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 644 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 645 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 646 | logging.info("Verify if switch supports the action -- modify_l3_src, if not skip the test") |
| 647 | logging.info("Insert a flow with action -- set network src address ") |
| 648 | logging.info("Send packet matching the flow, verify recieved packet network src address rewritten ") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 649 | |
| 650 | #Verify set_nw_src is a supported action |
| 651 | sup_acts = sw_supported_actions(self) |
| 652 | if not (sup_acts & 1 << ofp.OFPAT_SET_NW_SRC): |
| 653 | skip_message_emit(self, "modify_l3_src test") |
| 654 | return |
| 655 | |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 656 | #Create packet to be sent and expected packet with ipv4_src set to specified value |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 657 | (pkt, exp_pkt, acts) = pkt_action_setup(self, mod_fields=['ip_src'], |
| 658 | check_test_params=True) |
| 659 | |
| 660 | #Insert flow with action -- set nw src address, Send packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 661 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 662 | action_list=acts, max_test=2) |
| 663 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 664 | class ModifyL3Dst(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 665 | |
| 666 | """ModifyL3Dst :Modify the dest IP address of an IP packet""" |
| 667 | |
| 668 | def runTest(self): |
| 669 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 670 | logging.info("Running Modify_L3_Dst test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 671 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 672 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 673 | of_ports.sort() |
| 674 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 675 | |
| 676 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 677 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 678 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 679 | logging.info("Verify if switch supports the action -- modify_l3_dst, if not skip the test") |
| 680 | logging.info("Insert a flow with action -- set network dst address ") |
| 681 | logging.info("Send packet matching the flow, verify recieved packet network dst address rewritten ") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 682 | |
| 683 | #Verify set_nw_dst is a supported action |
| 684 | sup_acts = sw_supported_actions(self,use_cache="true") |
| 685 | if not (sup_acts & 1 << ofp.OFPAT_SET_NW_DST): |
| 686 | skip_message_emit(self, "modify_l3_dst test skipped") |
| 687 | return |
| 688 | |
Rich Lane | d0478ff | 2013-03-11 12:46:58 -0700 | [diff] [blame] | 689 | #Create packet to be sent and expected packet with ipv4_dst set to specified value |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 690 | (pkt, exp_pkt, acts) = pkt_action_setup(self, mod_fields=['ip_dst'], |
| 691 | check_test_params=True) |
| 692 | |
| 693 | #Insert flow with action -- set nw dst address, Send packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 694 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 695 | action_list=acts, max_test=2) |
| 696 | |
| 697 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 698 | class ModifyL4Src(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 699 | |
| 700 | """ModifyL4Src : Modify the source TCP port of a TCP packet""" |
| 701 | |
| 702 | def runTest(self): |
| 703 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 704 | logging.info("Running Modify_L4_Src test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 705 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 706 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 707 | of_ports.sort() |
| 708 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 709 | |
| 710 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 711 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 712 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 713 | logging.info("Verify if switch supports the action -- modify_l4_src, if not skip the test") |
| 714 | logging.info("Insert a flow with action -- set src tcp port") |
| 715 | logging.info("Send packet matching the flow, verify recieved packet src tcp port is rewritten ") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 716 | |
| 717 | #Verify set_tp_src is a supported action |
| 718 | sup_acts = sw_supported_actions(self,use_cache="true") |
| 719 | if not (sup_acts & 1 << ofp.OFPAT_SET_TP_SRC): |
| 720 | skip_message_emit(self, "modify_l4_src test skipped") |
| 721 | return |
| 722 | |
| 723 | #Create packet to be sent and expected packet with tcp_src set to specified value |
| 724 | (pkt, exp_pkt, acts) = pkt_action_setup(self, mod_fields=['tcp_sport'], |
| 725 | check_test_params=True) |
| 726 | |
| 727 | #Insert flow with action -- set tcp src port, Send packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 728 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 729 | action_list=acts, max_test=2) |
| 730 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 731 | class ModifyL4Dst(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 732 | |
| 733 | """ ModifyL4Dst: Modify the dest TCP port of a TCP packet """ |
| 734 | |
| 735 | def runTest(self): |
| 736 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 737 | logging.info("Running Modify_L4_Dst test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 738 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 739 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 740 | of_ports.sort() |
| 741 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 742 | |
| 743 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 744 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 745 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 746 | logging.info("Verify if switch supports the action -- modify_l4_dst, if not skip the test") |
| 747 | logging.info("Insert a flow with action -- set dst tcp port") |
| 748 | logging.info("Send packet matching the flow, verify recieved packet dst tcp port is rewritten ") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 749 | |
| 750 | #Verify set_tp_dst is a supported action |
| 751 | sup_acts = sw_supported_actions(self,use_cache="true") |
| 752 | if not (sup_acts & 1 << ofp.OFPAT_SET_TP_DST): |
| 753 | skip_message_emit(self, "ModifyL4Dst test") |
| 754 | return |
| 755 | |
| 756 | #Create packet to be sent and expected packet with tcp_dst set to specified value |
| 757 | (pkt, exp_pkt, acts) = pkt_action_setup(self, mod_fields=['tcp_dport'], |
| 758 | check_test_params=True) |
| 759 | |
| 760 | #Insert flow with action -- set tcp dst port, Send packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 761 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 762 | action_list=acts, max_test=2) |
| 763 | |
Rich Lane | b90a1c4 | 2012-10-05 09:16:05 -0700 | [diff] [blame] | 764 | class ModifyTos(base_tests.SimpleDataPlane): |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 765 | |
| 766 | """ModifyTOS :Modify the IP type of service of an IP packet""" |
| 767 | |
| 768 | def runTest(self): |
| 769 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 770 | logging.info("Running Modify_Tos test") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 771 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 772 | of_ports = config["port_map"].keys() |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 773 | of_ports.sort() |
| 774 | self.assertTrue(len(of_ports) > 1, "Not enough ports for test") |
| 775 | |
| 776 | #Clear switch state |
Rich Lane | 32bf948 | 2013-01-03 17:26:30 -0800 | [diff] [blame] | 777 | delete_all_flows(self.controller) |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 778 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 779 | logging.info("Verify if switch supports the action -- modify_tos, if not skip the test") |
| 780 | logging.info("Insert a flow with action -- set type of service ") |
| 781 | logging.info("Send packet matching the flow, verify recieved packet has TOS rewritten ") |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 782 | |
| 783 | #Verify set_tos is a supported action |
| 784 | sup_acts = sw_supported_actions(self,use_cache="true") |
| 785 | if not (sup_acts & 1 << ofp.OFPAT_SET_NW_TOS): |
| 786 | skip_message_emit(self, "ModifyTOS test") |
| 787 | return |
| 788 | |
| 789 | #Create packet to be sent and expected packet with TOS set to specified value |
| 790 | (pkt, exp_pkt, acts) = pkt_action_setup(self, mod_fields=['ip_tos'], |
| 791 | check_test_params=True) |
| 792 | |
| 793 | #Insert flow with action -- set TOS, Send packet matching the flow, Verify recieved packet is expected packet |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 794 | flow_match_test(self, config["port_map"], pkt=pkt, exp_pkt=exp_pkt, |
ShreyaPandita | 9306c77 | 2012-09-28 12:21:40 -0400 | [diff] [blame] | 795 | action_list=acts, max_test=2, egr_count=-1) |