blob: ccec055f9e32a70805d41a8134b00e8475a668d6 [file] [log] [blame]
Yi Tsengfa4a1c72017-11-03 10:22:38 -07001/*
2 * Copyright 2017-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Carmelo Cascone356ab8b2019-09-25 01:02:53 -070017package org.onosproject.pipelines.fabric.impl.behaviour;
Yi Tsengfa4a1c72017-11-03 10:22:38 -070018
19import com.google.common.collect.ImmutableList;
20import org.junit.Before;
21import org.junit.Test;
22import org.onlab.packet.MacAddress;
Yi Tseng1b154bd2017-11-20 17:48:19 -080023import org.onlab.packet.MplsLabel;
Yi Tsengfa4a1c72017-11-03 10:22:38 -070024import org.onlab.packet.VlanId;
25import org.onlab.util.ImmutableByteSequence;
Carmelo Cascone2388cc12021-05-26 19:30:30 +020026import org.onosproject.net.DeviceId;
Yi Tsengfa4a1c72017-11-03 10:22:38 -070027import org.onosproject.net.PortNumber;
28import org.onosproject.net.flow.DefaultTrafficTreatment;
29import org.onosproject.net.flow.TrafficTreatment;
Carmelo Cascone2388cc12021-05-26 19:30:30 +020030import org.onosproject.net.packet.DefaultOutboundPacket;
31import org.onosproject.net.packet.OutboundPacket;
32import org.onosproject.net.pi.model.PiPacketOperationType;
Yi Tsengfa4a1c72017-11-03 10:22:38 -070033import org.onosproject.net.pi.runtime.PiAction;
34import org.onosproject.net.pi.runtime.PiActionParam;
Carmelo Cascone2388cc12021-05-26 19:30:30 +020035import org.onosproject.net.pi.runtime.PiPacketMetadata;
36import org.onosproject.net.pi.runtime.PiPacketOperation;
Carmelo Cascone2102bfb2020-12-04 16:54:24 -080037import org.onosproject.pipelines.fabric.FabricConstants;
Yi Tsengfa4a1c72017-11-03 10:22:38 -070038
Carmelo Cascone2388cc12021-05-26 19:30:30 +020039import java.nio.ByteBuffer;
40import java.util.Collection;
41
Daniele Morof51d0c12019-07-30 10:43:10 -070042import static org.easymock.EasyMock.createNiceMock;
43import static org.easymock.EasyMock.expect;
44import static org.easymock.EasyMock.replay;
Yi Tsengfa4a1c72017-11-03 10:22:38 -070045import static org.junit.Assert.assertEquals;
46
47/**
48 * Test for fabric interpreter.
49 */
50public class FabricInterpreterTest {
51 private static final VlanId VLAN_100 = VlanId.vlanId("100");
52 private static final PortNumber PORT_1 = PortNumber.portNumber(1);
53 private static final MacAddress SRC_MAC = MacAddress.valueOf("00:00:00:00:00:01");
54 private static final MacAddress DST_MAC = MacAddress.valueOf("00:00:00:00:00:02");
Yi Tseng1b154bd2017-11-20 17:48:19 -080055 private static final MplsLabel MPLS_10 = MplsLabel.mplsLabel(10);
Carmelo Cascone2388cc12021-05-26 19:30:30 +020056 private static final DeviceId DEVICE_ID = DeviceId.deviceId("device:1");
57 private static final int PORT_BITWIDTH = 9;
Yi Tsengfa4a1c72017-11-03 10:22:38 -070058
59 private FabricInterpreter interpreter;
60
Daniele Morof51d0c12019-07-30 10:43:10 -070061 FabricCapabilities allCapabilities;
62
Yi Tsengfa4a1c72017-11-03 10:22:38 -070063 @Before
64 public void setup() {
Daniele Morof51d0c12019-07-30 10:43:10 -070065 allCapabilities = createNiceMock(FabricCapabilities.class);
66 expect(allCapabilities.hasHashedTable()).andReturn(true).anyTimes();
67 expect(allCapabilities.supportDoubleVlanTerm()).andReturn(true).anyTimes();
68 replay(allCapabilities);
69 interpreter = new FabricInterpreter(allCapabilities);
Yi Tsengfa4a1c72017-11-03 10:22:38 -070070 }
71
72 /* Filtering control block */
73
74 /**
75 * Map treatment to push_internal_vlan action.
76 */
77 @Test
Carmelo Casconeb5324e72018-11-25 02:26:32 -080078 public void testFilteringTreatmentPermitWithInternalVlan() throws Exception {
Yi Tsengfa4a1c72017-11-03 10:22:38 -070079 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
80 .pushVlan()
81 .setVlanId(VLAN_100)
82 .build();
83 PiAction mappedAction = interpreter.mapTreatment(treatment,
Carmelo Cascone356ab8b2019-09-25 01:02:53 -070084 FabricConstants.FABRIC_INGRESS_FILTERING_INGRESS_PORT_VLAN);
Carmelo Casconeb5324e72018-11-25 02:26:32 -080085 PiActionParam param = new PiActionParam(FabricConstants.VLAN_ID,
Yi Tsengfa4a1c72017-11-03 10:22:38 -070086 ImmutableByteSequence.copyFrom(VLAN_100.toShort()));
87 PiAction expectedAction = PiAction.builder()
Carmelo Casconeb5324e72018-11-25 02:26:32 -080088 .withId(FabricConstants.FABRIC_INGRESS_FILTERING_PERMIT_WITH_INTERNAL_VLAN)
Yi Tsengfa4a1c72017-11-03 10:22:38 -070089 .withParameter(param)
90 .build();
91
92 assertEquals(expectedAction, mappedAction);
93 }
94
95 /**
Carmelo Casconeb5324e72018-11-25 02:26:32 -080096 * Map treatment to permit action.
Yi Tsengfa4a1c72017-11-03 10:22:38 -070097 */
98 @Test
Carmelo Casconeb5324e72018-11-25 02:26:32 -080099 public void testFilteringTreatmentPermit() throws Exception {
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700100 TrafficTreatment treatment = DefaultTrafficTreatment.emptyTreatment();
101 PiAction mappedAction = interpreter.mapTreatment(treatment,
Yi Tseng43ee7e82018-04-12 16:37:34 +0800102 FabricConstants.FABRIC_INGRESS_FILTERING_INGRESS_PORT_VLAN);
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700103 PiAction expectedAction = PiAction.builder()
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800104 .withId(FabricConstants.FABRIC_INGRESS_FILTERING_PERMIT)
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700105 .build();
106
107 assertEquals(expectedAction, mappedAction);
108 }
109
110 /* Forwarding control block */
111
112 /**
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800113 * Map empty treatment for routing v4 table.
Yi Tsengdf3eec52018-02-15 14:56:02 -0800114 */
115 @Test
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800116 public void testRoutingV4TreatmentEmpty() throws Exception {
Yi Tsengdf3eec52018-02-15 14:56:02 -0800117 TrafficTreatment treatment = DefaultTrafficTreatment.emptyTreatment();
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800118 PiAction mappedAction = interpreter.mapTreatment(
119 treatment, FabricConstants.FABRIC_INGRESS_FORWARDING_ROUTING_V4);
Charles Chancf696e52018-08-16 16:25:13 -0700120 PiAction expectedAction = PiAction.builder()
Charles Chancd03f072018-08-31 17:46:37 -0700121 .withId(FabricConstants.FABRIC_INGRESS_FORWARDING_NOP_ROUTING_V4)
Charles Chancf696e52018-08-16 16:25:13 -0700122 .build();
123 assertEquals(expectedAction, mappedAction);
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800124 }
Charles Chancf696e52018-08-16 16:25:13 -0700125
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800126 /**
127 * Map empty treatment for ACL table.
128 */
129 @Test
130 public void testAclTreatmentEmpty() throws Exception {
131 TrafficTreatment treatment = DefaultTrafficTreatment.emptyTreatment();
132 PiAction mappedAction = interpreter.mapTreatment(
133 treatment, FabricConstants.FABRIC_INGRESS_ACL_ACL);
134 PiAction expectedAction = PiAction.builder()
135 .withId(FabricConstants.FABRIC_INGRESS_ACL_NOP_ACL)
Charles Chancf696e52018-08-16 16:25:13 -0700136 .build();
137 assertEquals(expectedAction, mappedAction);
Yi Tsengdf3eec52018-02-15 14:56:02 -0800138 }
139
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700140 /* Next control block */
141
142 /**
143 * Map treatment to output action.
144 */
145 @Test
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800146 public void testNextTreatmentSimpleOutput() throws Exception {
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700147 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
148 .setOutput(PORT_1)
149 .build();
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800150 PiAction mappedAction = interpreter.mapTreatment(
151 treatment, FabricConstants.FABRIC_INGRESS_NEXT_SIMPLE);
152 PiActionParam param = new PiActionParam(FabricConstants.PORT_NUM, PORT_1.toLong());
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700153 PiAction expectedAction = PiAction.builder()
Yi Tseng47eac892018-07-11 02:17:04 +0800154 .withId(FabricConstants.FABRIC_INGRESS_NEXT_OUTPUT_SIMPLE)
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700155 .withParameter(param)
156 .build();
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700157 assertEquals(expectedAction, mappedAction);
158 }
159
160 /**
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800161 * Map treatment for hashed table to routing v4 action.
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700162 */
163 @Test
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800164 public void testNextTreatmentHashedRoutingV4() throws Exception {
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700165 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
166 .setEthSrc(SRC_MAC)
167 .setEthDst(DST_MAC)
168 .setOutput(PORT_1)
169 .build();
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800170 PiAction mappedAction = interpreter.mapTreatment(
171 treatment, FabricConstants.FABRIC_INGRESS_NEXT_HASHED);
172 PiActionParam ethSrcParam = new PiActionParam(FabricConstants.SMAC, SRC_MAC.toBytes());
173 PiActionParam ethDstParam = new PiActionParam(FabricConstants.DMAC, DST_MAC.toBytes());
174 PiActionParam portParam = new PiActionParam(FabricConstants.PORT_NUM, PORT_1.toLong());
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700175 PiAction expectedAction = PiAction.builder()
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800176 .withId(FabricConstants.FABRIC_INGRESS_NEXT_ROUTING_HASHED)
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700177 .withParameters(ImmutableList.of(ethSrcParam, ethDstParam, portParam))
178 .build();
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800179 assertEquals(expectedAction, mappedAction);
180 }
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700181
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800182 /**
183 * Map treatment for hashed table to routing v4 action.
184 */
185 @Test
186 public void testNextTreatmentHashedRoutingMpls() throws Exception {
187 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
188 .setEthSrc(SRC_MAC)
189 .setEthDst(DST_MAC)
190 .setOutput(PORT_1)
191 .pushMpls()
192 .setMpls(MPLS_10)
193 .build();
194 PiAction mappedAction = interpreter.mapTreatment(
195 treatment, FabricConstants.FABRIC_INGRESS_NEXT_HASHED);
196 PiActionParam ethSrcParam = new PiActionParam(FabricConstants.SMAC, SRC_MAC.toBytes());
197 PiActionParam ethDstParam = new PiActionParam(FabricConstants.DMAC, DST_MAC.toBytes());
198 PiActionParam portParam = new PiActionParam(FabricConstants.PORT_NUM, PORT_1.toLong());
199 PiActionParam mplsParam = new PiActionParam(FabricConstants.LABEL, MPLS_10.toInt());
200 PiAction expectedAction = PiAction.builder()
201 .withId(FabricConstants.FABRIC_INGRESS_NEXT_MPLS_ROUTING_HASHED)
202 .withParameters(ImmutableList.of(ethSrcParam, ethDstParam, portParam, mplsParam))
203 .build();
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700204 assertEquals(expectedAction, mappedAction);
205 }
206
207 /**
208 * Map treatment to set_vlan_output action.
209 */
210 @Test
211 public void testNextTreatment3() throws Exception {
212 TrafficTreatment treatment = DefaultTrafficTreatment.builder()
213 .setVlanId(VLAN_100)
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700214 .build();
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800215 PiAction mappedAction = interpreter.mapTreatment(
216 treatment, FabricConstants.FABRIC_INGRESS_NEXT_NEXT_VLAN);
217 PiActionParam vlanParam = new PiActionParam(
218 FabricConstants.VLAN_ID, VLAN_100.toShort());
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700219 PiAction expectedAction = PiAction.builder()
Carmelo Casconeb5324e72018-11-25 02:26:32 -0800220 .withId(FabricConstants.FABRIC_INGRESS_NEXT_SET_VLAN)
221 .withParameter(vlanParam)
Yi Tseng1b154bd2017-11-20 17:48:19 -0800222 .build();
223 assertEquals(expectedAction, mappedAction);
224 }
Carmelo Cascone2388cc12021-05-26 19:30:30 +0200225
226 @Test
227 public void testMapOutboundPacketWithoutForwarding()
228 throws Exception {
229 PortNumber outputPort = PortNumber.portNumber(1);
230 TrafficTreatment outputTreatment = DefaultTrafficTreatment.builder()
231 .setOutput(outputPort)
232 .build();
233 ByteBuffer data = ByteBuffer.allocate(64);
234 OutboundPacket outPkt = new DefaultOutboundPacket(DEVICE_ID, outputTreatment, data);
235 Collection<PiPacketOperation> result = interpreter.mapOutboundPacket(outPkt);
236 assertEquals(result.size(), 1);
237
238 ImmutableList.Builder<PiPacketMetadata> builder = ImmutableList.builder();
239 builder.add(PiPacketMetadata.builder()
240 .withId(FabricConstants.EGRESS_PORT)
241 .withValue(ImmutableByteSequence.copyFrom(outputPort.toLong())
242 .fit(PORT_BITWIDTH))
243 .build());
244 builder.add(PiPacketMetadata.builder()
245 .withId(FabricConstants.DO_FORWARDING)
246 .withValue(ImmutableByteSequence.copyFrom(0).fit(1))
247 .build());
248
249 PiPacketOperation expectedPktOp = PiPacketOperation.builder()
250 .withType(PiPacketOperationType.PACKET_OUT)
251 .withData(ImmutableByteSequence.copyFrom(data))
252 .withMetadatas(builder.build())
253 .build();
254
255 assertEquals(expectedPktOp, result.iterator().next());
256 }
257
258 @Test
259 public void testMapOutboundPacketWithForwarding()
260 throws Exception {
261 PortNumber outputPort = PortNumber.TABLE;
262 TrafficTreatment outputTreatment = DefaultTrafficTreatment.builder()
263 .setOutput(outputPort)
264 .build();
265 ByteBuffer data = ByteBuffer.allocate(64);
266 OutboundPacket outPkt = new DefaultOutboundPacket(DEVICE_ID, outputTreatment, data);
267 Collection<PiPacketOperation> result = interpreter.mapOutboundPacket(outPkt);
268 assertEquals(result.size(), 1);
269
270 ImmutableList.Builder<PiPacketMetadata> builder = ImmutableList.builder();
271 builder.add(PiPacketMetadata.builder()
272 .withId(FabricConstants.EGRESS_PORT)
273 .withValue(ImmutableByteSequence.copyFrom(0)
274 .fit(PORT_BITWIDTH))
275 .build());
276 builder.add(PiPacketMetadata.builder()
277 .withId(FabricConstants.DO_FORWARDING)
278 .withValue(ImmutableByteSequence.copyFrom(1)
279 .fit(1))
280 .build());
281
282 PiPacketOperation expectedPktOp = PiPacketOperation.builder()
283 .withType(PiPacketOperationType.PACKET_OUT)
284 .withData(ImmutableByteSequence.copyFrom(data))
285 .withMetadatas(builder.build())
286 .build();
287
288 assertEquals(expectedPktOp, result.iterator().next());
289 }
Yi Tsengfa4a1c72017-11-03 10:22:38 -0700290}