blob: 0c2f097a294d55d2c49c63c4ce1858e78cffbbe2 [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;
Brian O'Connor6de2e202015-05-21 14:30:41 -070066import org.onosproject.net.resource.link.LambdaResource;
Ray Milkeydb358082015-01-13 16:34:38 -080067
Ray Milkeyb82c42b2015-06-30 09:42:20 -070068import com.fasterxml.jackson.databind.JsonNode;
Ray Milkeydb358082015-01-13 16:34:38 -080069import com.fasterxml.jackson.databind.node.ObjectNode;
70import com.google.common.collect.ImmutableList;
71
Ray Milkeyb82c42b2015-06-30 09:42:20 -070072import static org.easymock.EasyMock.createMock;
73import static org.easymock.EasyMock.expect;
74import static org.easymock.EasyMock.replay;
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070075import static org.hamcrest.MatcherAssert.assertThat;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070076import static org.hamcrest.Matchers.hasSize;
77import static org.hamcrest.Matchers.instanceOf;
78import static org.hamcrest.Matchers.is;
Ray Milkey3e3ec5f2015-03-17 17:00:38 -070079import static org.hamcrest.Matchers.notNullValue;
Ray Milkeydb358082015-01-13 16:34:38 -080080import static org.onosproject.codec.impl.IntentJsonMatcher.matchesIntent;
Ray Milkeyb9a8a182015-01-20 14:15:35 -080081import static org.onosproject.net.NetTestTools.did;
Ray Milkeydb358082015-01-13 16:34:38 -080082import static org.onosproject.net.NetTestTools.hid;
Ray Milkeyb82c42b2015-06-30 09:42:20 -070083import static org.onosproject.net.flow.instructions.L2ModificationInstruction.ModEtherInstruction;
Ray Milkeydb358082015-01-13 16:34:38 -080084
85/**
86 * Unit tests for the host to host intent class codec.
87 */
88public class IntentCodecTest extends AbstractIntentTest {
89
90 private final HostId id1 = hid("12:34:56:78:91:ab/1");
91 private final HostId id2 = hid("12:34:56:78:92:ab/1");
Thomas Vachuska02aeb032015-01-06 22:36:30 -080092 private final ApplicationId appId = new DefaultApplicationId(3, "test");
Ray Milkeydb358082015-01-13 16:34:38 -080093 final TrafficSelector emptySelector =
Brian O'Connor6b528132015-03-10 16:39:52 -070094 DefaultTrafficSelector.emptySelector();
Ray Milkeydb358082015-01-13 16:34:38 -080095 final TrafficTreatment emptyTreatment =
Brian O'Connor6b528132015-03-10 16:39:52 -070096 DefaultTrafficTreatment.emptyTreatment();
Ray Milkey1534f8d2015-05-13 15:42:50 -070097 private final MockCodecContext context = new MockCodecContext();
Ray Milkeyb82c42b2015-06-30 09:42:20 -070098 final CoreService mockCoreService = createMock(CoreService.class);
Ray Milkey1534f8d2015-05-13 15:42:50 -070099
100 @Before
101 public void setUpIntentService() {
102 final IntentService mockIntentService = new IntentServiceAdapter();
103 context.registerService(IntentService.class, mockIntentService);
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700104 context.registerService(CoreService.class, mockCoreService);
Ray Milkeyf7cb4012015-07-20 13:01:07 -0700105 expect(mockCoreService.getAppId(appId.name()))
106 .andReturn(appId);
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700107 replay(mockCoreService);
Ray Milkey1534f8d2015-05-13 15:42:50 -0700108 }
Ray Milkeydb358082015-01-13 16:34:38 -0800109
110 /**
111 * Tests the encoding of a host to host intent.
112 */
113 @Test
114 public void hostToHostIntent() {
115 final HostToHostIntent intent =
Ray Milkeyebc5d222015-03-18 15:45:36 -0700116 HostToHostIntent.builder()
117 .appId(appId)
118 .one(id1)
119 .two(id2)
120 .build();
Ray Milkeydb358082015-01-13 16:34:38 -0800121
122 final JsonCodec<HostToHostIntent> intentCodec =
123 context.codec(HostToHostIntent.class);
124 assertThat(intentCodec, notNullValue());
125
126 final ObjectNode intentJson = intentCodec.encode(intent, context);
127 assertThat(intentJson, matchesIntent(intent));
128 }
129
130 /**
131 * Tests the encoding of a point to point intent.
132 */
133 @Test
134 public void pointToPointIntent() {
135 ConnectPoint ingress = NetTestTools.connectPoint("ingress", 1);
136 ConnectPoint egress = NetTestTools.connectPoint("egress", 2);
137
138 final PointToPointIntent intent =
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700139 PointToPointIntent.builder()
140 .appId(appId)
141 .selector(emptySelector)
142 .treatment(emptyTreatment)
143 .ingressPoint(ingress)
144 .egressPoint(egress).build();
Ray Milkeydb358082015-01-13 16:34:38 -0800145
Ray Milkeydb358082015-01-13 16:34:38 -0800146 final JsonCodec<PointToPointIntent> intentCodec =
147 context.codec(PointToPointIntent.class);
148 assertThat(intentCodec, notNullValue());
149
150 final ObjectNode intentJson = intentCodec.encode(intent, context);
151 assertThat(intentJson, matchesIntent(intent));
152 }
153
154 /**
155 * Tests the encoding of an intent with treatment, selector and constraints
156 * specified.
157 */
158 @Test
159 public void intentWithTreatmentSelectorAndConstraints() {
160 ConnectPoint ingress = NetTestTools.connectPoint("ingress", 1);
161 ConnectPoint egress = NetTestTools.connectPoint("egress", 2);
Ray Milkeyb9a8a182015-01-20 14:15:35 -0800162 DeviceId did1 = did("device1");
163 DeviceId did2 = did("device2");
164 DeviceId did3 = did("device3");
Sho SHIMIZUc44c0c32015-06-01 11:40:48 -0700165 Lambda ochSignal = Lambda.ochSignal(GridType.DWDM, ChannelSpacing.CHL_100GHZ, 4, 8);
Ray Milkeydb358082015-01-13 16:34:38 -0800166 final TrafficSelector selector = DefaultTrafficSelector.builder()
167 .matchIPProtocol((byte) 3)
Michele Santuari4b6019e2014-12-19 11:31:45 +0100168 .matchMplsLabel(MplsLabel.mplsLabel(4))
Sho SHIMIZU6c70f642015-05-29 17:27:22 -0700169 .add(Criteria.matchOchSignalType(OchSignalType.FIXED_GRID))
Sho SHIMIZUc44c0c32015-06-01 11:40:48 -0700170 .add(Criteria.matchLambda(ochSignal))
Ray Milkeydb358082015-01-13 16:34:38 -0800171 .matchEthDst(MacAddress.BROADCAST)
172 .matchIPDst(IpPrefix.valueOf("1.2.3.4/24"))
173 .build();
174 final TrafficTreatment treatment = DefaultTrafficTreatment.builder()
Sho SHIMIZU9553bb82015-06-30 16:02:45 -0700175 .add(Instructions.modL0Lambda(new IndexedLambda(33)))
Michele Santuari4b6019e2014-12-19 11:31:45 +0100176 .setMpls(MplsLabel.mplsLabel(44))
Ray Milkeydb358082015-01-13 16:34:38 -0800177 .setOutput(PortNumber.CONTROLLER)
178 .setEthDst(MacAddress.BROADCAST)
179 .build();
Ray Milkeyb9a8a182015-01-20 14:15:35 -0800180
181 final List<Constraint> constraints =
182 ImmutableList.of(
Sho SHIMIZUa88db492015-11-23 13:21:04 -0800183 new BandwidthConstraint(Bandwidth.bps(1.0)),
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700184 new LambdaConstraint(LambdaResource.valueOf(3)),
185 new AnnotationConstraint("key", 33.0),
186 new AsymmetricPathConstraint(),
187 new LatencyConstraint(Duration.ofSeconds(2)),
188 new ObstacleConstraint(did1, did2),
189 new WaypointConstraint(did3));
Ray Milkeydb358082015-01-13 16:34:38 -0800190
191 final PointToPointIntent intent =
Ray Milkey3e3ec5f2015-03-17 17:00:38 -0700192 PointToPointIntent.builder()
193 .appId(appId)
194 .selector(selector)
195 .treatment(treatment)
196 .ingressPoint(ingress)
197 .egressPoint(egress)
198 .constraints(constraints)
199 .build();
200
Ray Milkeydb358082015-01-13 16:34:38 -0800201
Ray Milkeydb358082015-01-13 16:34:38 -0800202 final JsonCodec<PointToPointIntent> intentCodec =
203 context.codec(PointToPointIntent.class);
204 assertThat(intentCodec, notNullValue());
205
206 final ObjectNode intentJson = intentCodec.encode(intent, context);
207 assertThat(intentJson, matchesIntent(intent));
208
209 }
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700210
211 /**
212 * Reads in a rule from the given resource and decodes it.
213 *
214 * @param resourceName resource to use to read the JSON for the rule
215 * @return decoded flow rule
216 * @throws IOException if processing the resource fails
217 */
218 private Intent getIntent(String resourceName, JsonCodec intentCodec) throws IOException {
Phaneendra Manda2be2f882015-11-11 15:23:40 +0530219 InputStream jsonStream = IntentCodecTest.class
Ray Milkeyb82c42b2015-06-30 09:42:20 -0700220 .getResourceAsStream(resourceName);
221 JsonNode json = context.mapper().readTree(jsonStream);
222 assertThat(json, notNullValue());
223 Intent intent = (Intent) intentCodec.decode((ObjectNode) json, context);
224 assertThat(intent, notNullValue());
225 return intent;
226 }
227
228 /**
229 * Tests the point to point intent JSON codec.
230 *
231 * @throws IOException if JSON processing fails
232 */
233 @Test
234 public void decodePointToPointIntent() throws IOException {
235 JsonCodec<Intent> intentCodec = context.codec(Intent.class);
236 assertThat(intentCodec, notNullValue());
237
238 Intent intent = getIntent("PointToPointIntent.json", intentCodec);
239 assertThat(intent, notNullValue());
240 assertThat(intent, instanceOf(PointToPointIntent.class));
241
242 PointToPointIntent pointIntent = (PointToPointIntent) intent;
243 assertThat(pointIntent.priority(), is(55));
244 assertThat(pointIntent.ingressPoint().deviceId(), is(did("0000000000000001")));
245 assertThat(pointIntent.ingressPoint().port(), is(PortNumber.portNumber(1)));
246 assertThat(pointIntent.egressPoint().deviceId(), is(did("0000000000000007")));
247 assertThat(pointIntent.egressPoint().port(), is(PortNumber.portNumber(2)));
248
249 assertThat(pointIntent.constraints(), hasSize(1));
250
251 assertThat(pointIntent.selector(), notNullValue());
252 assertThat(pointIntent.selector().criteria(), hasSize(1));
253 Criterion criterion1 = pointIntent.selector().criteria().iterator().next();
254 assertThat(criterion1, instanceOf(EthCriterion.class));
255 EthCriterion ethCriterion = (EthCriterion) criterion1;
256 assertThat(ethCriterion.mac().toString(), is("11:22:33:44:55:66"));
257 assertThat(ethCriterion.type().name(), is("ETH_DST"));
258
259 assertThat(pointIntent.treatment(), notNullValue());
260 assertThat(pointIntent.treatment().allInstructions(), hasSize(1));
261 Instruction instruction1 = pointIntent.treatment().allInstructions().iterator().next();
262 assertThat(instruction1, instanceOf(ModEtherInstruction.class));
263 ModEtherInstruction ethInstruction = (ModEtherInstruction) instruction1;
264 assertThat(ethInstruction.mac().toString(), is("22:33:44:55:66:77"));
265 assertThat(ethInstruction.type().toString(), is("L2MODIFICATION"));
266 assertThat(ethInstruction.subtype().toString(), is("ETH_SRC"));
267 }
268
269 /**
270 * Tests the host to host intent JSON codec.
271 *
272 * @throws IOException
273 */
274 @Test
275 public void decodeHostToHostIntent() throws IOException {
276 JsonCodec<Intent> intentCodec = context.codec(Intent.class);
277 assertThat(intentCodec, notNullValue());
278
279 Intent intent = getIntent("HostToHostIntent.json", intentCodec);
280 assertThat(intent, notNullValue());
281 assertThat(intent, instanceOf(HostToHostIntent.class));
282
283 HostToHostIntent hostIntent = (HostToHostIntent) intent;
284 assertThat(hostIntent.priority(), is(7));
285 assertThat(hostIntent.constraints(), hasSize(1));
286 }
Ray Milkeydb358082015-01-13 16:34:38 -0800287}