blob: f8edb876db833d6c420968a5494a36d34429b581 [file] [log] [blame]
Frank Wange33e4ed2017-06-28 10:01:07 +08001/*
2 * Copyright 2017-present 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
17package org.onosproject.net.pi.runtime;
18
19import com.google.common.testing.EqualsTester;
20import org.junit.Test;
21import org.onlab.util.ImmutableByteSequence;
22import org.onosproject.net.pi.model.PiMatchType;
23
24import static org.hamcrest.MatcherAssert.assertThat;
25import static org.hamcrest.Matchers.is;
26import static org.hamcrest.Matchers.notNullValue;
27import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutable;
28import static org.onlab.util.ImmutableByteSequence.copyFrom;
29import static org.onosproject.net.pi.runtime.PiConstantsTest.DST_ADDR;
30import static org.onosproject.net.pi.runtime.PiConstantsTest.IPV4_HEADER_NAME;
31
32/**
33 * Unit tests for PiLpmFieldMatch class.
34 */
35public class PiLpmFieldMatchTest {
36 final ImmutableByteSequence value1 = copyFrom(0x0a010101);
37 final ImmutableByteSequence value2 = copyFrom(0x0a010102);
38 int prefixLength = 24;
39 final PiHeaderFieldId piHeaderField = PiHeaderFieldId.of(IPV4_HEADER_NAME, DST_ADDR);
40 PiLpmFieldMatch piLpmFieldMatch1 = new PiLpmFieldMatch(piHeaderField, value1, prefixLength);
41 PiLpmFieldMatch sameAsPiLpmFieldMatch1 = new PiLpmFieldMatch(piHeaderField, value1, prefixLength);
42 PiLpmFieldMatch piLpmFieldMatch2 = new PiLpmFieldMatch(piHeaderField, value2, prefixLength);
43
44 /**
45 * Checks that the PiLpmFieldMatch class is immutable.
46 */
47 @Test
48 public void testImmutability() {
49 assertThatClassIsImmutable(PiLpmFieldMatch.class);
50 }
51
52 /**
53 * Checks the operation of equals(), hashCode() and toString() methods.
54 */
55 @Test
56 public void testEquals() {
57 new EqualsTester()
58 .addEqualityGroup(piLpmFieldMatch1, sameAsPiLpmFieldMatch1)
59 .addEqualityGroup(piLpmFieldMatch2)
60 .testEquals();
61 }
62
63 /**
64 * Checks the construction of a PiLpmFieldMatch object.
65 */
66 @Test
67 public void testConstruction() {
68 final ImmutableByteSequence value = copyFrom(0x0a01010a);
69 int prefix = 24;
70 final PiHeaderFieldId piHeaderField = PiHeaderFieldId.of(IPV4_HEADER_NAME, DST_ADDR);
71 PiLpmFieldMatch piLpmFieldMatch = new PiLpmFieldMatch(piHeaderField, value, prefix);
72 assertThat(piLpmFieldMatch, is(notNullValue()));
73 assertThat(piLpmFieldMatch.value(), is(value));
74 assertThat(piLpmFieldMatch.prefixLength(), is(prefix));
75 assertThat(piLpmFieldMatch.type(), is(PiMatchType.LPM));
76 }
77}