2 * Copyright 2015 Open Networking Laboratory
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onosproject.bgpio.types.attr;
18 import org.junit.Test;
19 import org.onlab.packet.Ip6Address;
21 import com.google.common.testing.EqualsTester;
24 * Test for BGP attribute node router ID.
26 public class BgpAttrRouterIdV6Test {
28 private final short sType = 1;
29 private final Ip6Address ip6RouterId = Ip6Address
30 .valueOf("2001:0db8:0a0b:12f0:0000:0000:0000:0001");
32 private final short sType1 = 2;
33 private final Ip6Address ip6RouterId1 = Ip6Address
34 .valueOf("2004:0db8:0a0b:12f0:0000:0000:0000:0004");
36 private final BgpAttrRouterIdV6 data = BgpAttrRouterIdV6.of(ip6RouterId,
38 private final BgpAttrRouterIdV6 sameAsData = BgpAttrRouterIdV6
39 .of(ip6RouterId, sType);
40 private final BgpAttrRouterIdV6 diffData = BgpAttrRouterIdV6
41 .of(ip6RouterId1, sType1);
44 public void basics() {
46 new EqualsTester().addEqualityGroup(data, sameAsData)
47 .addEqualityGroup(diffData).testEquals();