blob: e3884687cb7248081501bc26a005a6c041742363 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent;
Brian O'Connorf3d06162014-10-02 15:54:12 -070017
Ray Milkeyebc5d222015-03-18 15:45:36 -070018import java.util.Arrays;
Sho SHIMIZU98ffca82015-05-11 08:39:24 -070019import java.util.Collections;
Ray Milkeyebc5d222015-03-18 15:45:36 -070020
Brian O'Connorf3d06162014-10-02 15:54:12 -070021import org.junit.Test;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import org.onosproject.net.ConnectPoint;
23import org.onosproject.net.DefaultLink;
24import org.onosproject.net.DefaultPath;
25import org.onosproject.net.DeviceId;
26import org.onosproject.net.NetTestTools;
27import org.onosproject.net.Path;
28import org.onosproject.net.PortNumber;
29import org.onosproject.net.provider.ProviderId;
Sho SHIMIZU3908fde2014-11-19 16:30:22 -080030
Ray Milkeycaa450b2014-10-29 15:54:24 -070031import static org.junit.Assert.assertEquals;
Brian O'Connorabafb502014-12-02 22:26:20 -080032import static org.onosproject.net.DeviceId.deviceId;
33import static org.onosproject.net.Link.Type.DIRECT;
34import static org.onosproject.net.PortNumber.portNumber;
Brian O'Connorf3d06162014-10-02 15:54:12 -070035
36public class PathIntentTest extends ConnectivityIntentTest {
37 // 111:11 --> 222:22
38 private static final Path PATH1 = NetTestTools.createPath("111", "222");
39
40 // 111:11 --> 333:33
41 private static final Path PATH2 = NetTestTools.createPath("222", "333");
42
Sho SHIMIZU3908fde2014-11-19 16:30:22 -080043 private final ProviderId provider1 = new ProviderId("of", "1");
44 private final DeviceId device1 = deviceId("1");
45 private final DeviceId device2 = deviceId("2");
46 private final PortNumber port1 = portNumber(1);
47 private final PortNumber port2 = portNumber(2);
48 private final PortNumber port3 = portNumber(3);
49 private final PortNumber port4 = portNumber(4);
50 private final ConnectPoint cp1 = new ConnectPoint(device1, port1);
51 private final ConnectPoint cp2 = new ConnectPoint(device1, port2);
52 private final ConnectPoint cp3 = new ConnectPoint(device2, port3);
53 private final ConnectPoint cp4 = new ConnectPoint(device2, port4);
Ray Milkey2693bda2016-01-22 16:08:14 -080054 private final DefaultLink link1 = DefaultLink.builder()
55 .providerId(provider1)
56 .src(cp1)
57 .dst(cp2)
58 .type(DIRECT)
59 .build();
60 private final DefaultLink link2 = DefaultLink.builder()
61 .providerId(provider1)
62 .src(cp1)
63 .dst(cp2)
64 .type(DIRECT)
65 .build();
Sho SHIMIZU3908fde2014-11-19 16:30:22 -080066 private final double cost = 1;
67
Brian O'Connorf3d06162014-10-02 15:54:12 -070068 @Test
69 public void basics() {
70 PathIntent intent = createOne();
Thomas Vachuskac96058a2014-10-20 23:00:16 -070071 assertEquals("incorrect id", APPID, intent.appId());
tom85258ee2014-10-07 00:10:02 -070072 assertEquals("incorrect match", MATCH, intent.selector());
73 assertEquals("incorrect action", NOP, intent.treatment());
tom85258ee2014-10-07 00:10:02 -070074 assertEquals("incorrect path", PATH1, intent.path());
ilhem fajjarib0a06842015-11-02 18:59:02 +010075 assertEquals("incorrect key", KEY, intent.key());
Brian O'Connorf3d06162014-10-02 15:54:12 -070076 }
77
78 @Override
79 protected PathIntent createOne() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070080 return PathIntent.builder()
81 .appId(APPID)
ilhem fajjarib0a06842015-11-02 18:59:02 +010082 .key(KEY)
Ray Milkeyebc5d222015-03-18 15:45:36 -070083 .selector(MATCH)
84 .treatment(NOP)
85 .path(PATH1)
86 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070087 }
88
89 @Override
90 protected PathIntent createAnother() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070091 return PathIntent.builder()
92 .appId(APPID)
93 .selector(MATCH)
94 .treatment(NOP)
95 .path(PATH2)
96 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070097 }
Sho SHIMIZU3908fde2014-11-19 16:30:22 -080098
99 /**
100 * Tests the constructor raises IllegalArgumentException when the same device is specified in
101 * source and destination of a link.
102 */
103 @Test(expected = IllegalArgumentException.class)
104 public void testRaiseExceptionWhenSameDevices() {
Ray Milkeyebc5d222015-03-18 15:45:36 -0700105 PathIntent.builder()
106 .appId(APPID)
107 .selector(MATCH)
108 .treatment(NOP)
Sho SHIMIZU98ffca82015-05-11 08:39:24 -0700109 .path(new DefaultPath(provider1, Collections.singletonList(link1), cost))
Ray Milkeyebc5d222015-03-18 15:45:36 -0700110 .build();
Sho SHIMIZU3908fde2014-11-19 16:30:22 -0800111 }
112
113 /**
114 * Tests the constructor raises IllegalArgumentException when the different elements are specified
115 * in source element of the first link and destination element of the second link.
116 */
117 @Test(expected = IllegalArgumentException.class)
118 public void testRaiseExceptionWhenDifferentDevice() {
Ray Milkeyebc5d222015-03-18 15:45:36 -0700119 PathIntent.builder()
120 .appId(APPID)
121 .selector(MATCH)
122 .treatment(NOP)
123 .path(new DefaultPath(provider1, Arrays.asList(link1, link2), cost))
124 .build();
Sho SHIMIZU3908fde2014-11-19 16:30:22 -0800125 }
126
Brian O'Connorf3d06162014-10-02 15:54:12 -0700127}