blob: 85bac9d6c47a9cb17374eac68b4c85e5543f8b38 [file] [log] [blame]
Thejaswi N Ke05c9bb2015-11-02 19:37:31 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thejaswi N Ke05c9bb2015-11-02 19:37:31 +05303 *
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 */
Ray Milkey753ad632015-11-06 08:46:33 -080016package org.onosproject.bgpio.types.attr;
Thejaswi N Ke05c9bb2015-11-02 19:37:31 +053017
18import org.junit.Test;
19import org.onlab.packet.Ip6Address;
Thejaswi N Ke05c9bb2015-11-02 19:37:31 +053020
21import com.google.common.testing.EqualsTester;
22
23/**
24 * Test for BGP attribute node router ID.
25 */
26public 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 }
Ray Milkey753ad632015-11-06 08:46:33 -080049}