blob: eb3b4914f8f4a9a1c9a9a442744d2a200a2de22f [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 PiTernaryFieldMatch class.
34 */
35public class PiTernaryFieldMatchTest {
36 final ImmutableByteSequence value1 = copyFrom(0x0a010101);
37 final ImmutableByteSequence mask1 = copyFrom(0x00ffffff);
38 final ImmutableByteSequence value2 = copyFrom(0x0a010102);
39 final ImmutableByteSequence mask2 = copyFrom(0x0000ffff);
40
41 final PiHeaderFieldId piHeaderField = PiHeaderFieldId.of(IPV4_HEADER_NAME, DST_ADDR);
42 PiTernaryFieldMatch piTernaryFieldMatch1 = new PiTernaryFieldMatch(piHeaderField, value1, mask1);
43 PiTernaryFieldMatch sameAsPiTernaryFieldMatch1 = new PiTernaryFieldMatch(piHeaderField, value1, mask1);
44 PiTernaryFieldMatch piTernaryFieldMatch2 = new PiTernaryFieldMatch(piHeaderField, value2, mask2);
45
46 /**
47 * Checks that the PiTernaryFieldMatch class is immutable.
48 */
49 @Test
50 public void testImmutability() {
51 assertThatClassIsImmutable(PiTernaryFieldMatch.class);
52 }
53
54 /**
55 * Checks the operation of equals(), hashCode() and toString() methods.
56 */
57 @Test
58 public void testEquals() {
59 new EqualsTester()
60 .addEqualityGroup(piTernaryFieldMatch1, sameAsPiTernaryFieldMatch1)
61 .addEqualityGroup(piTernaryFieldMatch2)
62 .testEquals();
63 }
64
65 /**
66 * Checks the construction of a PiTernaryFieldMatch object.
67 */
68 @Test
69 public void testConstruction() {
70 final ImmutableByteSequence value = copyFrom(0x0a01010a);
71 final ImmutableByteSequence mask = copyFrom(0x00ffffff);
72 final PiHeaderFieldId piHeaderField = PiHeaderFieldId.of(IPV4_HEADER_NAME, DST_ADDR);
73 PiTernaryFieldMatch piTernaryFieldMatch = new PiTernaryFieldMatch(piHeaderField, value, mask);
74 assertThat(piTernaryFieldMatch, is(notNullValue()));
75 assertThat(piTernaryFieldMatch.value(), is(value));
76 assertThat(piTernaryFieldMatch.mask(), is(mask));
77 assertThat(piTernaryFieldMatch.type(), is(PiMatchType.TERNARY));
78 }
79}