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