blob: 9e675347d8b0993c81be77f870ec1f7baa2f0a9f [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 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);
54 private final DefaultLink link1 = new DefaultLink(provider1, cp1, cp2, DIRECT);
55 private final DefaultLink link2 = new DefaultLink(provider1, cp1, cp2, DIRECT);
56 private final double cost = 1;
57
Brian O'Connorf3d06162014-10-02 15:54:12 -070058 @Test
59 public void basics() {
60 PathIntent intent = createOne();
Thomas Vachuskac96058a2014-10-20 23:00:16 -070061 assertEquals("incorrect id", APPID, intent.appId());
tom85258ee2014-10-07 00:10:02 -070062 assertEquals("incorrect match", MATCH, intent.selector());
63 assertEquals("incorrect action", NOP, intent.treatment());
tom85258ee2014-10-07 00:10:02 -070064 assertEquals("incorrect path", PATH1, intent.path());
ilhem fajjarib0a06842015-11-02 18:59:02 +010065 assertEquals("incorrect key", KEY, intent.key());
Brian O'Connorf3d06162014-10-02 15:54:12 -070066 }
67
68 @Override
69 protected PathIntent createOne() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070070 return PathIntent.builder()
71 .appId(APPID)
ilhem fajjarib0a06842015-11-02 18:59:02 +010072 .key(KEY)
Ray Milkeyebc5d222015-03-18 15:45:36 -070073 .selector(MATCH)
74 .treatment(NOP)
75 .path(PATH1)
76 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070077 }
78
79 @Override
80 protected PathIntent createAnother() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070081 return PathIntent.builder()
82 .appId(APPID)
83 .selector(MATCH)
84 .treatment(NOP)
85 .path(PATH2)
86 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070087 }
Sho SHIMIZU3908fde2014-11-19 16:30:22 -080088
89 /**
90 * Tests the constructor raises IllegalArgumentException when the same device is specified in
91 * source and destination of a link.
92 */
93 @Test(expected = IllegalArgumentException.class)
94 public void testRaiseExceptionWhenSameDevices() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070095 PathIntent.builder()
96 .appId(APPID)
97 .selector(MATCH)
98 .treatment(NOP)
Sho SHIMIZU98ffca82015-05-11 08:39:24 -070099 .path(new DefaultPath(provider1, Collections.singletonList(link1), cost))
Ray Milkeyebc5d222015-03-18 15:45:36 -0700100 .build();
Sho SHIMIZU3908fde2014-11-19 16:30:22 -0800101 }
102
103 /**
104 * Tests the constructor raises IllegalArgumentException when the different elements are specified
105 * in source element of the first link and destination element of the second link.
106 */
107 @Test(expected = IllegalArgumentException.class)
108 public void testRaiseExceptionWhenDifferentDevice() {
Ray Milkeyebc5d222015-03-18 15:45:36 -0700109 PathIntent.builder()
110 .appId(APPID)
111 .selector(MATCH)
112 .treatment(NOP)
113 .path(new DefaultPath(provider1, Arrays.asList(link1, link2), cost))
114 .build();
Sho SHIMIZU3908fde2014-11-19 16:30:22 -0800115 }
116
Brian O'Connorf3d06162014-10-02 15:54:12 -0700117}