blob: d6b2882af6b81763db70e5d8a747746f8800bb98 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net.intent;
Brian O'Connorf3d06162014-10-02 15:54:12 -070017
18import java.util.Set;
19
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.core.ApplicationId;
21import org.onosproject.TestApplicationId;
22import org.onosproject.net.ConnectPoint;
23import org.onosproject.net.DeviceId;
24import org.onosproject.net.PortNumber;
25import org.onosproject.net.flow.DefaultTrafficSelector;
26import org.onosproject.net.flow.DefaultTrafficTreatment;
27import org.onosproject.net.flow.TrafficSelector;
28import org.onosproject.net.flow.TrafficTreatment;
Brian O'Connorf3d06162014-10-02 15:54:12 -070029
30/**
31 * Base facilities to test various connectivity tests.
32 */
33public abstract class ConnectivityIntentTest extends IntentTest {
34
Thomas Vachuskac96058a2014-10-20 23:00:16 -070035 public static final ApplicationId APPID = new TestApplicationId("foo");
36
Brian O'Connorf3d06162014-10-02 15:54:12 -070037 public static final IntentId IID = new IntentId(123);
Brian O'Connor6b528132015-03-10 16:39:52 -070038 public static final TrafficSelector MATCH = DefaultTrafficSelector.emptySelector();
39 public static final TrafficTreatment NOP = DefaultTrafficTreatment.emptyTreatment();
Brian O'Connorf3d06162014-10-02 15:54:12 -070040
41 public static final ConnectPoint P1 = new ConnectPoint(DeviceId.deviceId("111"), PortNumber.portNumber(0x1));
42 public static final ConnectPoint P2 = new ConnectPoint(DeviceId.deviceId("222"), PortNumber.portNumber(0x2));
43 public static final ConnectPoint P3 = new ConnectPoint(DeviceId.deviceId("333"), PortNumber.portNumber(0x3));
44
45 public static final Set<ConnectPoint> PS1 = itemSet(new ConnectPoint[]{P1, P3});
46 public static final Set<ConnectPoint> PS2 = itemSet(new ConnectPoint[]{P2, P3});
47}