blob: 223cce0826661802be0fedef9c1f725bd35e015a [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 */
tom1a4b9952014-09-16 16:59:57 -070016package org.onlab.onos.net.topology;
17
18import com.google.common.testing.EqualsTester;
19import org.junit.Test;
20
21import static org.junit.Assert.assertEquals;
22import static org.onlab.onos.net.DeviceId.deviceId;
23import static org.onlab.onos.net.topology.ClusterId.clusterId;
24
25/**
26 * Test of the default topology cluster implementation.
27 */
28public class DefaultTopologyClusterTest {
29
30 @Test
31 public void testEquals() {
32 new EqualsTester()
33 .addEqualityGroup(cluster(3, 2, 1, "of:1"), cluster(3, 2, 1, "of:1"))
34 .addEqualityGroup(cluster(3, 2, 1, "of:2"), cluster(3, 2, 1, "of:2"))
35 .addEqualityGroup(cluster(0, 2, 1, "of:1"), cluster(0, 2, 1, "of:1"))
36 .addEqualityGroup(cluster(3, 3, 1, "of:1"), cluster(3, 3, 1, "of:1"))
37 .testEquals();
38 }
39
40 @Test
41 public void basics() {
42 TopologyCluster cluster = cluster(6, 5, 4, "of:111");
43 assertEquals("incorrect id", clusterId(6), cluster.id());
44 assertEquals("incorrect id", 5, cluster.deviceCount());
45 assertEquals("incorrect id", 4, cluster.linkCount());
46 assertEquals("incorrect id", deviceId("of:111"), cluster.root());
47
48 }
49
50 private TopologyCluster cluster(int id, int dc, int lc, String root) {
51 return new DefaultTopologyCluster(clusterId(id), dc, lc, deviceId(root));
52 }
Yuta HIGUCHI4e9c37c2014-09-21 14:34:33 -070053}