blob: dfbc1846deb5e7f766276ed48ca9447725279af2 [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());
Brian O'Connorf3d06162014-10-02 15:54:12 -070065 }
66
67 @Override
68 protected PathIntent createOne() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070069 return PathIntent.builder()
70 .appId(APPID)
71 .selector(MATCH)
72 .treatment(NOP)
73 .path(PATH1)
74 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070075 }
76
77 @Override
78 protected PathIntent createAnother() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070079 return PathIntent.builder()
80 .appId(APPID)
81 .selector(MATCH)
82 .treatment(NOP)
83 .path(PATH2)
84 .build();
Brian O'Connorf3d06162014-10-02 15:54:12 -070085 }
Sho SHIMIZU3908fde2014-11-19 16:30:22 -080086
87 /**
88 * Tests the constructor raises IllegalArgumentException when the same device is specified in
89 * source and destination of a link.
90 */
91 @Test(expected = IllegalArgumentException.class)
92 public void testRaiseExceptionWhenSameDevices() {
Ray Milkeyebc5d222015-03-18 15:45:36 -070093 PathIntent.builder()
94 .appId(APPID)
95 .selector(MATCH)
96 .treatment(NOP)
Sho SHIMIZU98ffca82015-05-11 08:39:24 -070097 .path(new DefaultPath(provider1, Collections.singletonList(link1), cost))
Ray Milkeyebc5d222015-03-18 15:45:36 -070098 .build();
Sho SHIMIZU3908fde2014-11-19 16:30:22 -080099 }
100
101 /**
102 * Tests the constructor raises IllegalArgumentException when the different elements are specified
103 * in source element of the first link and destination element of the second link.
104 */
105 @Test(expected = IllegalArgumentException.class)
106 public void testRaiseExceptionWhenDifferentDevice() {
Ray Milkeyebc5d222015-03-18 15:45:36 -0700107 PathIntent.builder()
108 .appId(APPID)
109 .selector(MATCH)
110 .treatment(NOP)
111 .path(new DefaultPath(provider1, Arrays.asList(link1, link2), cost))
112 .build();
Sho SHIMIZU3908fde2014-11-19 16:30:22 -0800113 }
114
Brian O'Connorf3d06162014-10-02 15:54:12 -0700115}