blob: 902b75c5ab97c3b14847683005a3b47220943bbe [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 Hunt05eba352017-05-11 20:17:08 -070028import org.onosproject.ui.model.topo.UiLinkId;
Simon Huntd6685d02015-08-21 09:56:06 -070029
30/**
31 * Base class for unit tests of {@link BiLink} and {@link BiLinkMap}.
32 */
Simon Huntf01826c2017-05-09 17:28:13 -070033public abstract class BiLinkTestBase extends AbstractUiTest {
Simon Huntd6685d02015-08-21 09:56:06 -070034
35 protected static class FakeLink implements Link {
36 private final ConnectPoint src;
37 private final ConnectPoint dst;
38
39 FakeLink(ConnectPoint src, ConnectPoint dst) {
40 this.src = src;
41 this.dst = dst;
42 }
43
Simon Huntf01826c2017-05-09 17:28:13 -070044 @Override
45 public ConnectPoint src() {
Simon Huntd6685d02015-08-21 09:56:06 -070046 return src;
47 }
Simon Huntf01826c2017-05-09 17:28:13 -070048
49 @Override
50 public ConnectPoint dst() {
Simon Huntd6685d02015-08-21 09:56:06 -070051 return dst;
52 }
53
Simon Huntf01826c2017-05-09 17:28:13 -070054 @Override
55 public Type type() {
Simon Huntd6685d02015-08-21 09:56:06 -070056 return null;
57 }
Simon Huntf01826c2017-05-09 17:28:13 -070058
59 @Override
60 public State state() {
Simon Huntd6685d02015-08-21 09:56:06 -070061 return null;
62 }
Simon Huntf01826c2017-05-09 17:28:13 -070063
64 @Override
Simon Huntf01826c2017-05-09 17:28:13 -070065 public boolean isExpected() {
Ray Milkeyd0dd1352016-01-19 10:58:41 -080066 return false;
67 }
Simon Huntf01826c2017-05-09 17:28:13 -070068
69 @Override
70 public Annotations annotations() {
Simon Huntd6685d02015-08-21 09:56:06 -070071 return null;
72 }
Simon Huntf01826c2017-05-09 17:28:13 -070073
74 @Override
75 public ProviderId providerId() {
Simon Huntd6685d02015-08-21 09:56:06 -070076 return null;
77 }
Thomas Vachuska3afbc7f2016-02-01 15:55:38 -080078
79 @Override
80 public <B extends Behaviour> B as(Class<B> projectionClass) {
81 return null;
82 }
83
84 @Override
85 public <B extends Behaviour> boolean is(Class<B> projectionClass) {
86 return false;
87 }
Simon Huntd6685d02015-08-21 09:56:06 -070088 }
89
90 protected static final DeviceId DEV_A_ID = DeviceId.deviceId("device-A");
91 protected static final DeviceId DEV_B_ID = DeviceId.deviceId("device-B");
92 protected static final PortNumber PORT_1 = PortNumber.portNumber(1);
93 protected static final PortNumber PORT_2 = PortNumber.portNumber(2);
94
95 protected static final ConnectPoint CP_A1 = new ConnectPoint(DEV_A_ID, PORT_1);
96 protected static final ConnectPoint CP_B2 = new ConnectPoint(DEV_B_ID, PORT_2);
97
98 protected static final LinkKey KEY_AB = LinkKey.linkKey(CP_A1, CP_B2);
99 protected static final LinkKey KEY_BA = LinkKey.linkKey(CP_B2, CP_A1);
100
101 protected static final Link LINK_AB = new FakeLink(CP_A1, CP_B2);
102 protected static final Link LINK_BA = new FakeLink(CP_B2, CP_A1);
103
104 protected static class ConcreteLink extends BiLink {
105 public ConcreteLink(LinkKey key, Link link) {
106 super(key, link);
107 }
Simon Huntf01826c2017-05-09 17:28:13 -0700108
Simon Hunt05eba352017-05-11 20:17:08 -0700109 public ConcreteLink(UiLinkId uiLinkId) {
110 super(uiLinkId);
111 }
112
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}