blob: c756013a84493735c232d3d3ea1954870dc98e55 [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;
tomde8d9682014-08-27 01:11:43 -070017
18import com.google.common.testing.EqualsTester;
Yuta HIGUCHIb6e0e912017-05-18 20:13:52 -070019
20import org.junit.Assert;
tomde8d9682014-08-27 01:11:43 -070021import org.junit.Test;
22
Yuta HIGUCHIb6e0e912017-05-18 20:13:52 -070023import static org.junit.Assert.assertEquals;
Brian O'Connorabafb502014-12-02 22:26:20 -080024import static org.onosproject.net.DeviceId.deviceId;
tomca20e0c2014-09-03 23:22:24 -070025
tomde8d9682014-08-27 01:11:43 -070026/**
tomca20e0c2014-09-03 23:22:24 -070027 * Test of the device identifier.
tomde8d9682014-08-27 01:11:43 -070028 */
tom545708e2014-10-09 17:10:02 -070029public class DeviceIdTest {
tomde8d9682014-08-27 01:11:43 -070030
31 @Test
32 public void basics() {
33 new EqualsTester()
tomca20e0c2014-09-03 23:22:24 -070034 .addEqualityGroup(deviceId("of:foo"),
35 deviceId("of:foo"))
36 .addEqualityGroup(deviceId("of:bar"))
tomde8d9682014-08-27 01:11:43 -070037 .testEquals();
38 }
39
Yuta HIGUCHIb6e0e912017-05-18 20:13:52 -070040
41 @Test
42 public void ipAndPort() {
43 DeviceId ipp = deviceId("netconf:127.0.0.1:830");
44 assertEquals("127.0.0.1:830", ipp.uri().getSchemeSpecificPart());
45
46 DeviceId ipp6 = deviceId("netconf:[2001:db8:85a3:8d3:1319:8a2e:370:7348]:830");
47 Assert.assertEquals("[2001:db8:85a3:8d3:1319:8a2e:370:7348]:830", ipp6.uri().getSchemeSpecificPart());
48 }
49
tomde8d9682014-08-27 01:11:43 -070050}