16ca58eed858f0de8a4d9b90f649f99940e55991
[onosfw.git] /
1 /*
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  */
16 package org.onosproject.bgpio.types.attr;
17
18 import org.junit.Test;
19 import org.onlab.packet.Ip6Address;
20
21 import com.google.common.testing.EqualsTester;
22
23 /**
24  * Test for BGP attribute node router ID.
25  */
26 public class BgpAttrRouterIdV6Test {
27
28     private final short sType = 1;
29     private final Ip6Address ip6RouterId = Ip6Address
30             .valueOf("2001:0db8:0a0b:12f0:0000:0000:0000:0001");
31
32     private final short sType1 = 2;
33     private final Ip6Address ip6RouterId1 = Ip6Address
34             .valueOf("2004:0db8:0a0b:12f0:0000:0000:0000:0004");
35
36     private final BgpAttrRouterIdV6 data = BgpAttrRouterIdV6.of(ip6RouterId,
37                                                                 sType);
38     private final BgpAttrRouterIdV6 sameAsData = BgpAttrRouterIdV6
39             .of(ip6RouterId, sType);
40     private final BgpAttrRouterIdV6 diffData = BgpAttrRouterIdV6
41             .of(ip6RouterId1, sType1);
42
43     @Test
44     public void basics() {
45
46         new EqualsTester().addEqualityGroup(data, sameAsData)
47         .addEqualityGroup(diffData).testEquals();
48     }
49 }