blob: f6fe39f858cafbe9dabd6ee94b532e7d4c2963ad [file] [log] [blame]
Thejaswi N K68eb27c2015-10-30 18:03:42 +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 */
Ray Milkey753ad632015-11-06 08:46:33 -080016package org.onosproject.bgpio.types.attr;
Thejaswi N K68eb27c2015-10-30 18:03:42 +053017
18import org.junit.Test;
19import org.onlab.packet.Ip4Address;
20import org.onlab.packet.Ip6Address;
Thejaswi N K68eb27c2015-10-30 18:03:42 +053021
22import com.google.common.testing.EqualsTester;
23
24/**
25 * Test for BGP prefix metric attribute.
26 */
27public class BgpPrefixAttrOspfFwdAddrTest {
28
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");
33
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");
38
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);
45
46 @Test
47 public void basics() {
48 new EqualsTester().addEqualityGroup(data, sameAsData)
49 .addEqualityGroup(diffData).testEquals();
50 }
Ray Milkey753ad632015-11-06 08:46:33 -080051}