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.Ip4Address;
20 import org.onlab.packet.Ip6Address;
22 import com.google.common.testing.EqualsTester;
25 * Test for BGP prefix metric attribute.
27 public class BgpPrefixAttrOspfFwdAddrTest {
29 private final short lsAttrLength = 4;
30 private final Ip4Address ip4RouterId = Ip4Address.valueOf("192.168.1.1");
31 private final Ip6Address ip6RouterId = Ip6Address
32 .valueOf("2001:0db8:0a0b:12f0:0000:0000:0000:0001");
34 private final short lsAttrLength1 = 16;
35 private final Ip4Address ip4RouterId1 = Ip4Address.valueOf("192.168.1.2");
36 private final Ip6Address ip6RouterId1 = Ip6Address
37 .valueOf("1002:0db8:0a0b:12f0:0000:0000:0000:0002");
39 private final BgpPrefixAttrOspfFwdAddr data = BgpPrefixAttrOspfFwdAddr
40 .of(lsAttrLength, ip4RouterId, ip6RouterId);
41 private final BgpPrefixAttrOspfFwdAddr sameAsData = BgpPrefixAttrOspfFwdAddr
42 .of(lsAttrLength, ip4RouterId, ip6RouterId);
43 private final BgpPrefixAttrOspfFwdAddr diffData = BgpPrefixAttrOspfFwdAddr
44 .of(lsAttrLength1, ip4RouterId1, ip6RouterId1);
47 public void basics() {
48 new EqualsTester().addEqualityGroup(data, sameAsData)
49 .addEqualityGroup(diffData).testEquals();