blob: 6e9d68c3fba286ca9d1da189ebeceb849b85081e [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
Pier Ventre647138f2016-08-26 17:32:44 -070018import java.util.Collections;
19import java.util.Map;
Brian O'Connorf3d06162014-10-02 15:54:12 -070020import java.util.Set;
21
Pier Ventre647138f2016-08-26 17:32:44 -070022import com.google.common.collect.Maps;
23import org.onlab.packet.VlanId;
Brian O'Connorabafb502014-12-02 22:26:20 -080024import org.onosproject.core.ApplicationId;
25import org.onosproject.TestApplicationId;
26import org.onosproject.net.ConnectPoint;
27import org.onosproject.net.DeviceId;
28import org.onosproject.net.PortNumber;
29import org.onosproject.net.flow.DefaultTrafficSelector;
30import org.onosproject.net.flow.DefaultTrafficTreatment;
31import org.onosproject.net.flow.TrafficSelector;
32import org.onosproject.net.flow.TrafficTreatment;
Brian O'Connorf3d06162014-10-02 15:54:12 -070033
34/**
35 * Base facilities to test various connectivity tests.
36 */
37public abstract class ConnectivityIntentTest extends IntentTest {
38
Thomas Vachuskac96058a2014-10-20 23:00:16 -070039 public static final ApplicationId APPID = new TestApplicationId("foo");
ilhem fajjarib0a06842015-11-02 18:59:02 +010040 public static final Key KEY = Key.of(1L, APPID);
Thomas Vachuskac96058a2014-10-20 23:00:16 -070041
Brian O'Connorf3d06162014-10-02 15:54:12 -070042 public static final IntentId IID = new IntentId(123);
Brian O'Connor6b528132015-03-10 16:39:52 -070043 public static final TrafficSelector MATCH = DefaultTrafficSelector.emptySelector();
44 public static final TrafficTreatment NOP = DefaultTrafficTreatment.emptyTreatment();
Pier Ventre647138f2016-08-26 17:32:44 -070045 public static final Map<ConnectPoint, TrafficSelector> MATCHES = Collections.emptyMap();
Brian O'Connorf3d06162014-10-02 15:54:12 -070046
47 public static final ConnectPoint P1 = new ConnectPoint(DeviceId.deviceId("111"), PortNumber.portNumber(0x1));
48 public static final ConnectPoint P2 = new ConnectPoint(DeviceId.deviceId("222"), PortNumber.portNumber(0x2));
49 public static final ConnectPoint P3 = new ConnectPoint(DeviceId.deviceId("333"), PortNumber.portNumber(0x3));
50
51 public static final Set<ConnectPoint> PS1 = itemSet(new ConnectPoint[]{P1, P3});
52 public static final Set<ConnectPoint> PS2 = itemSet(new ConnectPoint[]{P2, P3});
Pier Ventre647138f2016-08-26 17:32:44 -070053
54 public static final TrafficSelector VLANMATCH1 = DefaultTrafficSelector.builder()
55 .matchVlanId(VlanId.vlanId("2"))
56 .build();
57 public static final TrafficSelector VLANMATCH2 = DefaultTrafficSelector.builder()
58 .matchVlanId(VlanId.vlanId("3"))
59 .build();
60
61 public static final Map<ConnectPoint, TrafficSelector> VLANMATCHES = Maps.newHashMap();
62 static {
63 VLANMATCHES.put(P1, VLANMATCH1);
64 VLANMATCHES.put(P2, VLANMATCH2);
65 }
66
Brian O'Connorf3d06162014-10-02 15:54:12 -070067}