blob: 35dcf1ece664b05ad6e85beb34a815a0c0f52af0 [file] [log] [blame]
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -07001/*
2 * Copyright 2015 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 */
16package org.onosproject.net.newresource;
17
18import com.google.common.testing.EqualsTester;
19import org.junit.Test;
20import org.onlab.packet.VlanId;
Sho SHIMIZU60ac58e2015-11-11 12:16:38 -080021import org.onlab.util.Bandwidth;
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070022import org.onosproject.net.ConnectPoint;
23import org.onosproject.net.DeviceId;
24import org.onosproject.net.LinkKey;
25import org.onosproject.net.PortNumber;
26
27import java.util.Optional;
28
Sho SHIMIZU69dc5842015-11-20 16:31:12 -080029import static org.hamcrest.Matchers.contains;
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070030import static org.hamcrest.Matchers.is;
31import static org.junit.Assert.assertThat;
32
33public class ResourcePathTest {
34
35 private static final DeviceId D1 = DeviceId.deviceId("of:001");
36 private static final DeviceId D2 = DeviceId.deviceId("of:002");
37 private static final PortNumber P1 = PortNumber.portNumber(1);
38 private static final ConnectPoint CP1_1 = new ConnectPoint(D1, P1);
39 private static final ConnectPoint CP2_1 = new ConnectPoint(D2, P1);
40 private static final VlanId VLAN1 = VlanId.vlanId((short) 100);
Sho SHIMIZU60ac58e2015-11-11 12:16:38 -080041 private static final Bandwidth BW1 = Bandwidth.gbps(2);
42 private static final Bandwidth BW2 = Bandwidth.gbps(1);
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070043
44 @Test
45 public void testEquals() {
Sho SHIMIZU60ac58e2015-11-11 12:16:38 -080046 ResourcePath resource1 = ResourcePath.discrete(LinkKey.linkKey(CP1_1, CP2_1), VLAN1);
47 ResourcePath sameAsResource1 = ResourcePath.discrete(LinkKey.linkKey(CP1_1, CP2_1), VLAN1);
48 ResourcePath resource2 = ResourcePath.discrete(LinkKey.linkKey(CP2_1, CP1_1), VLAN1);
49 ResourcePath resource3 = ResourcePath.continuous(BW1.bps(), LinkKey.linkKey(CP1_1, CP2_1), BW1);
50 ResourcePath sameAsResource3 = ResourcePath.continuous(BW2.bps(), LinkKey.linkKey(CP1_1, CP2_1), BW1);
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070051
52 new EqualsTester()
53 .addEqualityGroup(resource1, sameAsResource1)
54 .addEqualityGroup(resource2)
Sho SHIMIZU60ac58e2015-11-11 12:16:38 -080055 .addEqualityGroup(resource3, sameAsResource3) // this is intentional
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070056 .testEquals();
57 }
58
Sho SHIMIZUba41fc12015-08-12 15:43:22 -070059 @Test
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070060 public void testCreateWithZeroComponent() {
Sho SHIMIZU60ac58e2015-11-11 12:16:38 -080061 ResourcePath path = ResourcePath.discrete();
Sho SHIMIZUba41fc12015-08-12 15:43:22 -070062
63 assertThat(path, is(ResourcePath.ROOT));
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070064 }
65
66 @Test
Sho SHIMIZU69dc5842015-11-20 16:31:12 -080067 public void testComponents() {
68 ResourcePath port = ResourcePath.discrete(D1, P1);
69
70 assertThat(port.components(), contains(D1, P1));
71 }
72
73 @Test
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070074 public void testThereIsParent() {
Sho SHIMIZU60ac58e2015-11-11 12:16:38 -080075 ResourcePath path = ResourcePath.discrete(LinkKey.linkKey(CP1_1, CP2_1), VLAN1);
76 ResourcePath parent = ResourcePath.discrete(LinkKey.linkKey(CP1_1, CP2_1));
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070077
78 assertThat(path.parent(), is(Optional.of(parent)));
79 }
80
81 @Test
82 public void testNoParent() {
Sho SHIMIZU60ac58e2015-11-11 12:16:38 -080083 ResourcePath path = ResourcePath.discrete(LinkKey.linkKey(CP1_1, CP2_1));
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070084
Sho SHIMIZUba41fc12015-08-12 15:43:22 -070085 assertThat(path.parent(), is(Optional.of(ResourcePath.ROOT)));
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070086 }
87
88 @Test
89 public void testBase() {
90 LinkKey linkKey = LinkKey.linkKey(CP1_1, CP2_1);
Sho SHIMIZU60ac58e2015-11-11 12:16:38 -080091 ResourcePath path = ResourcePath.discrete(linkKey);
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070092
Sho SHIMIZUc9546a32015-11-10 11:22:28 -080093 LinkKey child = (LinkKey) path.last();
Sho SHIMIZU1f5e5912015-08-10 17:00:00 -070094 assertThat(child, is(linkKey));
95 }
96}