blob: 77b6858796a40b157231b2d19f6348de028ff5e9 [file] [log] [blame]
Simon Huntd6685d02015-08-21 09:56:06 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Huntd6685d02015-08-21 09:56:06 -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.
Simon Huntd6685d02015-08-21 09:56:06 -070015 */
16
17package org.onosproject.ui.topo;
18
19import org.onosproject.net.Annotations;
20import org.onosproject.net.ConnectPoint;
21import org.onosproject.net.DeviceId;
22import org.onosproject.net.Link;
23import org.onosproject.net.LinkKey;
24import org.onosproject.net.PortNumber;
Thomas Vachuska3afbc7f2016-02-01 15:55:38 -080025import org.onosproject.net.driver.Behaviour;
Simon Huntd6685d02015-08-21 09:56:06 -070026import org.onosproject.net.provider.ProviderId;
Simon Huntf01826c2017-05-09 17:28:13 -070027import org.onosproject.ui.AbstractUiTest;
Simon Huntd6685d02015-08-21 09:56:06 -070028
29/**
30 * Base class for unit tests of {@link BiLink} and {@link BiLinkMap}.
31 */
Simon Huntf01826c2017-05-09 17:28:13 -070032public abstract class BiLinkTestBase extends AbstractUiTest {
Simon Huntd6685d02015-08-21 09:56:06 -070033
34 protected static class FakeLink implements Link {
35 private final ConnectPoint src;
36 private final ConnectPoint dst;
37
38 FakeLink(ConnectPoint src, ConnectPoint dst) {
39 this.src = src;
40 this.dst = dst;
41 }
42
Simon Huntf01826c2017-05-09 17:28:13 -070043 @Override
44 public ConnectPoint src() {
Simon Huntd6685d02015-08-21 09:56:06 -070045 return src;
46 }
Simon Huntf01826c2017-05-09 17:28:13 -070047
48 @Override
49 public ConnectPoint dst() {
Simon Huntd6685d02015-08-21 09:56:06 -070050 return dst;
51 }
52
Simon Huntf01826c2017-05-09 17:28:13 -070053 @Override
54 public Type type() {
Simon Huntd6685d02015-08-21 09:56:06 -070055 return null;
56 }
Simon Huntf01826c2017-05-09 17:28:13 -070057
58 @Override
59 public State state() {
Simon Huntd6685d02015-08-21 09:56:06 -070060 return null;
61 }
Simon Huntf01826c2017-05-09 17:28:13 -070062
63 @Override
64 public boolean isDurable() {
Simon Huntd6685d02015-08-21 09:56:06 -070065 return false;
66 }
Simon Huntf01826c2017-05-09 17:28:13 -070067
68 @Override
69 public boolean isExpected() {
Ray Milkeyd0dd1352016-01-19 10:58:41 -080070 return false;
71 }
Simon Huntf01826c2017-05-09 17:28:13 -070072
73 @Override
74 public Annotations annotations() {
Simon Huntd6685d02015-08-21 09:56:06 -070075 return null;
76 }
Simon Huntf01826c2017-05-09 17:28:13 -070077
78 @Override
79 public ProviderId providerId() {
Simon Huntd6685d02015-08-21 09:56:06 -070080 return null;
81 }
Thomas Vachuska3afbc7f2016-02-01 15:55:38 -080082
83 @Override
84 public <B extends Behaviour> B as(Class<B> projectionClass) {
85 return null;
86 }
87
88 @Override
89 public <B extends Behaviour> boolean is(Class<B> projectionClass) {
90 return false;
91 }
Simon Huntd6685d02015-08-21 09:56:06 -070092 }
93
94 protected static final DeviceId DEV_A_ID = DeviceId.deviceId("device-A");
95 protected static final DeviceId DEV_B_ID = DeviceId.deviceId("device-B");
96 protected static final PortNumber PORT_1 = PortNumber.portNumber(1);
97 protected static final PortNumber PORT_2 = PortNumber.portNumber(2);
98
99 protected static final ConnectPoint CP_A1 = new ConnectPoint(DEV_A_ID, PORT_1);
100 protected static final ConnectPoint CP_B2 = new ConnectPoint(DEV_B_ID, PORT_2);
101
102 protected static final LinkKey KEY_AB = LinkKey.linkKey(CP_A1, CP_B2);
103 protected static final LinkKey KEY_BA = LinkKey.linkKey(CP_B2, CP_A1);
104
105 protected static final Link LINK_AB = new FakeLink(CP_A1, CP_B2);
106 protected static final Link LINK_BA = new FakeLink(CP_B2, CP_A1);
107
108 protected static class ConcreteLink extends BiLink {
109 public ConcreteLink(LinkKey key, Link link) {
110 super(key, link);
111 }
Simon Huntf01826c2017-05-09 17:28:13 -0700112
Simon Huntd6685d02015-08-21 09:56:06 -0700113 @Override
114 public LinkHighlight highlight(Enum<?> type) {
115 return null;
116 }
117 }
118
119 protected static class ConcreteLinkMap extends BiLinkMap<ConcreteLink> {
120 @Override
121 public ConcreteLink create(LinkKey key, Link link) {
122 return new ConcreteLink(key, link);
123 }
124 }
125
Simon Huntd6685d02015-08-21 09:56:06 -0700126}