Committed by
Gerrit Code Review
[ONOS-2613] Unit test for OspfPseudonode
Change-Id: I117190835645b33ae08889289fda936336247a0e
Showing
1 changed file
with
43 additions
and
0 deletions
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.bgp; | ||
17 | + | ||
18 | +import org.junit.Test; | ||
19 | +import org.onlab.packet.Ip4Address; | ||
20 | +import org.onosproject.bgpio.types.OSPFPseudonode; | ||
21 | + | ||
22 | +import com.google.common.testing.EqualsTester; | ||
23 | + | ||
24 | +/** | ||
25 | + * Test for OSPFPseudonode Tlv. | ||
26 | + */ | ||
27 | +public class OspfPseudonodeTest { | ||
28 | + private final int value1 = 0xc3223409; | ||
29 | + private final int value2 = 0xc3223406; | ||
30 | + private final Ip4Address drInterface1 = Ip4Address.valueOf(0xaf91e01); | ||
31 | + private final Ip4Address drInterface2 = Ip4Address.valueOf(0xaf91e02); | ||
32 | + private final OSPFPseudonode tlv1 = OSPFPseudonode.of(value1, drInterface1); | ||
33 | + private final OSPFPseudonode sameAsTlv1 = OSPFPseudonode.of(value1, drInterface1); | ||
34 | + private final OSPFPseudonode tlv2 = OSPFPseudonode.of(value2, drInterface2); | ||
35 | + | ||
36 | + @Test | ||
37 | + public void testEquality() { | ||
38 | + new EqualsTester() | ||
39 | + .addEqualityGroup(tlv1, sameAsTlv1) | ||
40 | + .addEqualityGroup(tlv2) | ||
41 | + .testEquals(); | ||
42 | + } | ||
43 | +} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment