blob: 6d4910d602f685f8fafaf09f568ba640273f93eb [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.topology;
tom1a4b9952014-09-16 16:59:57 -070017
18import com.google.common.testing.EqualsTester;
19import org.junit.Test;
20
21import static org.junit.Assert.assertEquals;
Brian O'Connorabafb502014-12-02 22:26:20 -080022import static org.onosproject.net.DeviceId.deviceId;
23import static org.onosproject.net.topology.ClusterId.clusterId;
tom1a4b9952014-09-16 16:59:57 -070024
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());
Thomas Vachuskac31d9f12015-01-22 12:33:27 -080046 assertEquals("incorrect id", deviceId("of:111"), cluster.root().deviceId());
tom1a4b9952014-09-16 16:59:57 -070047
48 }
49
50 private TopologyCluster cluster(int id, int dc, int lc, String root) {
Thomas Vachuskac31d9f12015-01-22 12:33:27 -080051 return new DefaultTopologyCluster(clusterId(id), dc, lc,
52 new DefaultTopologyVertex(deviceId(root)));
tom1a4b9952014-09-16 16:59:57 -070053 }
Yuta HIGUCHI4e9c37c2014-09-21 14:34:33 -070054}