blob: 596c7ef96848a1f2f9512fd48de7934def1573ac [file] [log] [blame]
Ray Milkeydb358082015-01-13 16:34:38 -08001/*
2 * Copyright 2015 Open Networking Laboratory
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 */
16package org.onosproject.codec.impl;
17
Ray Milkeyb82c42b2015-06-30 09:42:20 -070018import java.io.IOException;
19import java.io.InputStream;
Ray Milkeyb9a8a182015-01-20 14:15:35 -080020import java.time.Duration;
Ray Milkeydb358082015-01-13 16:34:38 -080021import java.util.List;
22
Ray Milkey1534f8d2015-05-13 15:42:50 -070023import org.junit.Before;
Ray Milkeydb358082015-01-13 16:34:38 -080024import org.junit.Test;
25import org.onlab.packet.IpPrefix;
26import org.onlab.packet.MacAddress;
Michele Santuari4b6019e2014-12-19 11:31:45 +010027import org.onlab.packet.MplsLabel;
Sho SHIMIZU6d01d3d2015-05-08 14:08:36 -070028import org.onlab.util.Bandwidth;
Ray Milkeydb358082015-01-13 16:34:38 -080029import org.onosproject.codec.JsonCodec;
30import org.onosproject.core.ApplicationId;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070031import org.onosproject.core.CoreService;
Ray Milkeydb358082015-01-13 16:34:38 -080032import org.onosproject.core.DefaultApplicationId;
Sho SHIMIZUc44c0c32015-06-01 11:40:48 -070033import org.onosproject.net.ChannelSpacing;
Ray Milkeydb358082015-01-13 16:34:38 -080034import org.onosproject.net.ConnectPoint;
Ray Milkeyb9a8a182015-01-20 14:15:35 -080035import org.onosproject.net.DeviceId;
Sho SHIMIZUc44c0c32015-06-01 11:40:48 -070036import org.onosproject.net.GridType;
Ray Milkeydb358082015-01-13 16:34:38 -080037import org.onosproject.net.HostId;
Sho SHIMIZU9553bb82015-06-30 16:02:45 -070038import org.onosproject.net.IndexedLambda;
Sho SHIMIZUc44c0c32015-06-01 11:40:48 -070039import org.onosproject.net.Lambda;
Ray Milkeydb358082015-01-13 16:34:38 -080040import org.onosproject.net.NetTestTools;
Sho SHIMIZU6c70f642015-05-29 17:27:22 -070041import org.onosproject.net.OchSignalType;
Ray Milkeydb358082015-01-13 16:34:38 -080042import org.onosproject.net.PortNumber;
43import org.onosproject.net.flow.DefaultTrafficSelector;
44import org.onosproject.net.flow.DefaultTrafficTreatment;
45import org.onosproject.net.flow.TrafficSelector;
46import org.onosproject.net.flow.TrafficTreatment;
Sho SHIMIZU6c70f642015-05-29 17:27:22 -070047import org.onosproject.net.flow.criteria.Criteria;
Sho SHIMIZU9553bb82015-06-30 16:02:45 -070048import org.onosproject.net.flow.instructions.Instructions;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070049import org.onosproject.net.flow.criteria.Criterion;
50import org.onosproject.net.flow.criteria.EthCriterion;
51import org.onosproject.net.flow.instructions.Instruction;
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070052import org.onosproject.net.intent.AbstractIntentTest;
Ray Milkeydb358082015-01-13 16:34:38 -080053import org.onosproject.net.intent.Constraint;
54import org.onosproject.net.intent.HostToHostIntent;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070055import org.onosproject.net.intent.Intent;
Ray Milkey1534f8d2015-05-13 15:42:50 -070056import org.onosproject.net.intent.IntentService;
57import org.onosproject.net.intent.IntentServiceAdapter;
Ray Milkeydb358082015-01-13 16:34:38 -080058import org.onosproject.net.intent.PointToPointIntent;
Ray Milkeyb9a8a182015-01-20 14:15:35 -080059import org.onosproject.net.intent.constraint.AnnotationConstraint;
60import org.onosproject.net.intent.constraint.AsymmetricPathConstraint;
Ray Milkeydb358082015-01-13 16:34:38 -080061import org.onosproject.net.intent.constraint.BandwidthConstraint;
62import org.onosproject.net.intent.constraint.LambdaConstraint;
Ray Milkeyb9a8a182015-01-20 14:15:35 -080063import org.onosproject.net.intent.constraint.LatencyConstraint;
64import org.onosproject.net.intent.constraint.ObstacleConstraint;
65import org.onosproject.net.intent.constraint.WaypointConstraint;
Ray Milkeydb358082015-01-13 16:34:38 -080066
Ray Milkeyb82c42b2015-06-30 09:42:20 -070067import com.fasterxml.jackson.databind.JsonNode;
Ray Milkeydb358082015-01-13 16:34:38 -080068import com.fasterxml.jackson.databind.node.ObjectNode;
69import com.google.common.collect.ImmutableList;
70
Ray Milkeyb82c42b2015-06-30 09:42:20 -070071import static org.easymock.EasyMock.createMock;
72import static org.easymock.EasyMock.expect;
73import static org.easymock.EasyMock.replay;
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070074import static org.hamcrest.MatcherAssert.assertThat;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070075import static org.hamcrest.Matchers.hasSize;
76import static org.hamcrest.Matchers.instanceOf;
77import static org.hamcrest.Matchers.is;
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070078import static org.hamcrest.Matchers.notNullValue;
Ray Milkeydb358082015-01-13 16:34:38 -080079import static org.onosproject.codec.impl.IntentJsonMatcher.matchesIntent;
Ray Milkeyb9a8a182015-01-20 14:15:35 -080080import static org.onosproject.net.NetTestTools.did;
Ray Milkeydb358082015-01-13 16:34:38 -080081import static org.onosproject.net.NetTestTools.hid;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070082import static org.onosproject.net.flow.instructions.L2ModificationInstruction.ModEtherInstruction;
Ray Milkeydb358082015-01-13 16:34:38 -080083
84/**
85 * Unit tests for the host to host intent class codec.
86 */
87public class IntentCodecTest extends AbstractIntentTest {
88
89 private final HostId id1 = hid("12:34:56:78:91:ab/1");
90 private final HostId id2 = hid("12:34:56:78:92:ab/1");
Thomas Vachuska02aeb032015-01-06 22:36:30 -080091 private final ApplicationId appId = new DefaultApplicationId(3, "test");
Ray Milkeydb358082015-01-13 16:34:38 -080092 final TrafficSelector emptySelector =
Brian O'Connor6b528132015-03-10 16:39:52 -070093 DefaultTrafficSelector.emptySelector();
Ray Milkeydb358082015-01-13 16:34:38 -080094 final TrafficTreatment emptyTreatment =
Brian O'Connor6b528132015-03-10 16:39:52 -070095 DefaultTrafficTreatment.emptyTreatment();
Ray Milkey1534f8d2015-05-13 15:42:50 -070096 private final MockCodecContext context = new MockCodecContext();
Ray Milkeyb82c42b2015-06-30 09:42:20 -070097 final CoreService mockCoreService = createMock(CoreService.class);
Ray Milkey1534f8d2015-05-13 15:42:50 -070098
99 @Before
100 public void setUpIntentService() {
101 final IntentService mockIntentService = new IntentServiceAdapter();
102 context.registerService(IntentService.class, mockIntentService);
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700103 context.registerService(CoreService.class, mockCoreService);
Ray Milkeyf7cb4012015-07-20 13:01:07 -0700104 expect(mockCoreService.getAppId(appId.name()))
105 .andReturn(appId);
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700106 replay(mockCoreService);
Ray Milkey1534f8d2015-05-13 15:42:50 -0700107 }
Ray Milkeydb358082015-01-13 16:34:38 -0800108
109 /**
110 * Tests the encoding of a host to host intent.
111 */
112 @Test
113 public void hostToHostIntent() {
114 final HostToHostIntent intent =
Ray Milkeyebc5d222015-03-18 15:45:36 -0700115 HostToHostIntent.builder()
116 .appId(appId)
117 .one(id1)
118 .two(id2)
119 .build();
Ray Milkeydb358082015-01-13 16:34:38 -0800120
121 final JsonCodec<HostToHostIntent> intentCodec =
122 context.codec(HostToHostIntent.class);
123 assertThat(intentCodec, notNullValue());
124
125 final ObjectNode intentJson = intentCodec.encode(intent, context);
126 assertThat(intentJson, matchesIntent(intent));
127 }
128
129 /**
130 * Tests the encoding of a point to point intent.
131 */
132 @Test
133 public void pointToPointIntent() {
134 ConnectPoint ingress = NetTestTools.connectPoint("ingress", 1);
135 ConnectPoint egress = NetTestTools.connectPoint("egress", 2);
136
137 final PointToPointIntent intent =
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700138 PointToPointIntent.builder()
139 .appId(appId)
140 .selector(emptySelector)
141 .treatment(emptyTreatment)
142 .ingressPoint(ingress)
143 .egressPoint(egress).build();
Ray Milkeydb358082015-01-13 16:34:38 -0800144
Ray Milkeydb358082015-01-13 16:34:38 -0800145 final JsonCodec<PointToPointIntent> intentCodec =
146 context.codec(PointToPointIntent.class);
147 assertThat(intentCodec, notNullValue());
148
149 final ObjectNode intentJson = intentCodec.encode(intent, context);
150 assertThat(intentJson, matchesIntent(intent));
151 }
152
153 /**
154 * Tests the encoding of an intent with treatment, selector and constraints
155 * specified.
156 */
157 @Test
158 public void intentWithTreatmentSelectorAndConstraints() {
159 ConnectPoint ingress = NetTestTools.connectPoint("ingress", 1);
160 ConnectPoint egress = NetTestTools.connectPoint("egress", 2);
Ray Milkeyb9a8a182015-01-20 14:15:35 -0800161 DeviceId did1 = did("device1");
162 DeviceId did2 = did("device2");
163 DeviceId did3 = did("device3");
Sho SHIMIZUc44c0c32015-06-01 11:40:48 -0700164 Lambda ochSignal = Lambda.ochSignal(GridType.DWDM, ChannelSpacing.CHL_100GHZ, 4, 8);
Ray Milkeydb358082015-01-13 16:34:38 -0800165 final TrafficSelector selector = DefaultTrafficSelector.builder()
166 .matchIPProtocol((byte) 3)
Michele Santuari4b6019e2014-12-19 11:31:45 +0100167 .matchMplsLabel(MplsLabel.mplsLabel(4))
Sho SHIMIZU6c70f642015-05-29 17:27:22 -0700168 .add(Criteria.matchOchSignalType(OchSignalType.FIXED_GRID))
Sho SHIMIZUc44c0c32015-06-01 11:40:48 -0700169 .add(Criteria.matchLambda(ochSignal))
Ray Milkeydb358082015-01-13 16:34:38 -0800170 .matchEthDst(MacAddress.BROADCAST)
171 .matchIPDst(IpPrefix.valueOf("1.2.3.4/24"))
172 .build();
173 final TrafficTreatment treatment = DefaultTrafficTreatment.builder()
Sho SHIMIZU9553bb82015-06-30 16:02:45 -0700174 .add(Instructions.modL0Lambda(new IndexedLambda(33)))
Michele Santuari4b6019e2014-12-19 11:31:45 +0100175 .setMpls(MplsLabel.mplsLabel(44))
Ray Milkeydb358082015-01-13 16:34:38 -0800176 .setOutput(PortNumber.CONTROLLER)
177 .setEthDst(MacAddress.BROADCAST)
178 .build();
Ray Milkeyb9a8a182015-01-20 14:15:35 -0800179
180 final List<Constraint> constraints =
181 ImmutableList.of(
Sho SHIMIZUa88db492015-11-23 13:21:04 -0800182 new BandwidthConstraint(Bandwidth.bps(1.0)),
Sho SHIMIZU03d42532015-11-23 17:16:30 -0800183 new LambdaConstraint(new IndexedLambda(3)),
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700184 new AnnotationConstraint("key", 33.0),
185 new AsymmetricPathConstraint(),
186 new LatencyConstraint(Duration.ofSeconds(2)),
187 new ObstacleConstraint(did1, did2),
188 new WaypointConstraint(did3));
Ray Milkeydb358082015-01-13 16:34:38 -0800189
190 final PointToPointIntent intent =
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700191 PointToPointIntent.builder()
192 .appId(appId)
193 .selector(selector)
194 .treatment(treatment)
195 .ingressPoint(ingress)
196 .egressPoint(egress)
197 .constraints(constraints)
198 .build();
199
Ray Milkeydb358082015-01-13 16:34:38 -0800200
Ray Milkeydb358082015-01-13 16:34:38 -0800201 final JsonCodec<PointToPointIntent> intentCodec =
202 context.codec(PointToPointIntent.class);
203 assertThat(intentCodec, notNullValue());
204
205 final ObjectNode intentJson = intentCodec.encode(intent, context);
206 assertThat(intentJson, matchesIntent(intent));
207
208 }
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700209
210 /**
211 * Reads in a rule from the given resource and decodes it.
212 *
213 * @param resourceName resource to use to read the JSON for the rule
214 * @return decoded flow rule
215 * @throws IOException if processing the resource fails
216 */
217 private Intent getIntent(String resourceName, JsonCodec intentCodec) throws IOException {
Phaneendra Manda2be2f882015-11-11 15:23:40 +0530218 InputStream jsonStream = IntentCodecTest.class
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700219 .getResourceAsStream(resourceName);
220 JsonNode json = context.mapper().readTree(jsonStream);
221 assertThat(json, notNullValue());
222 Intent intent = (Intent) intentCodec.decode((ObjectNode) json, context);
223 assertThat(intent, notNullValue());
224 return intent;
225 }
226
227 /**
228 * Tests the point to point intent JSON codec.
229 *
230 * @throws IOException if JSON processing fails
231 */
232 @Test
233 public void decodePointToPointIntent() throws IOException {
234 JsonCodec<Intent> intentCodec = context.codec(Intent.class);
235 assertThat(intentCodec, notNullValue());
236
237 Intent intent = getIntent("PointToPointIntent.json", intentCodec);
238 assertThat(intent, notNullValue());
239 assertThat(intent, instanceOf(PointToPointIntent.class));
240
241 PointToPointIntent pointIntent = (PointToPointIntent) intent;
242 assertThat(pointIntent.priority(), is(55));
243 assertThat(pointIntent.ingressPoint().deviceId(), is(did("0000000000000001")));
244 assertThat(pointIntent.ingressPoint().port(), is(PortNumber.portNumber(1)));
245 assertThat(pointIntent.egressPoint().deviceId(), is(did("0000000000000007")));
246 assertThat(pointIntent.egressPoint().port(), is(PortNumber.portNumber(2)));
247
248 assertThat(pointIntent.constraints(), hasSize(1));
249
250 assertThat(pointIntent.selector(), notNullValue());
251 assertThat(pointIntent.selector().criteria(), hasSize(1));
252 Criterion criterion1 = pointIntent.selector().criteria().iterator().next();
253 assertThat(criterion1, instanceOf(EthCriterion.class));
254 EthCriterion ethCriterion = (EthCriterion) criterion1;
255 assertThat(ethCriterion.mac().toString(), is("11:22:33:44:55:66"));
256 assertThat(ethCriterion.type().name(), is("ETH_DST"));
257
258 assertThat(pointIntent.treatment(), notNullValue());
259 assertThat(pointIntent.treatment().allInstructions(), hasSize(1));
260 Instruction instruction1 = pointIntent.treatment().allInstructions().iterator().next();
261 assertThat(instruction1, instanceOf(ModEtherInstruction.class));
262 ModEtherInstruction ethInstruction = (ModEtherInstruction) instruction1;
263 assertThat(ethInstruction.mac().toString(), is("22:33:44:55:66:77"));
264 assertThat(ethInstruction.type().toString(), is("L2MODIFICATION"));
265 assertThat(ethInstruction.subtype().toString(), is("ETH_SRC"));
266 }
267
268 /**
269 * Tests the host to host intent JSON codec.
270 *
271 * @throws IOException
272 */
273 @Test
274 public void decodeHostToHostIntent() throws IOException {
275 JsonCodec<Intent> intentCodec = context.codec(Intent.class);
276 assertThat(intentCodec, notNullValue());
277
278 Intent intent = getIntent("HostToHostIntent.json", intentCodec);
279 assertThat(intent, notNullValue());
280 assertThat(intent, instanceOf(HostToHostIntent.class));
281
282 HostToHostIntent hostIntent = (HostToHostIntent) intent;
283 assertThat(hostIntent.priority(), is(7));
284 assertThat(hostIntent.constraints(), hasSize(1));
285 }
Ray Milkeydb358082015-01-13 16:34:38 -0800286}