blob: f36ba6b2cff597da942154379b7e9c931ea1e5f1 [file] [log] [blame]
Frank Wange33e4ed2017-06-28 10:01:07 +08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
Frank Wange33e4ed2017-06-28 10:01:07 +08003 *
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;
Carmelo Cascone87892e22017-11-13 16:01:29 -080022import org.onosproject.net.pi.model.PiMatchFieldId;
Frank Wange33e4ed2017-06-28 10:01:07 +080023import org.onosproject.net.pi.model.PiMatchType;
24
25import static org.hamcrest.MatcherAssert.assertThat;
26import static org.hamcrest.Matchers.is;
27import static org.hamcrest.Matchers.notNullValue;
28import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutable;
29import static org.onlab.util.ImmutableByteSequence.copyFrom;
Carmelo Cascone87892e22017-11-13 16:01:29 -080030import static org.onosproject.net.pi.runtime.PiConstantsTest.DOT;
Frank Wange33e4ed2017-06-28 10:01:07 +080031import static org.onosproject.net.pi.runtime.PiConstantsTest.DST_ADDR;
32import static org.onosproject.net.pi.runtime.PiConstantsTest.IPV4_HEADER_NAME;
33
34/**
35 * Unit tests for PiTernaryFieldMatch class.
36 */
37public class PiTernaryFieldMatchTest {
Carmelo Cascone87892e22017-11-13 16:01:29 -080038 private final ImmutableByteSequence value1 = copyFrom(0x0a010101);
39 private final ImmutableByteSequence mask1 = copyFrom(0x00ffffff);
40 private final ImmutableByteSequence value2 = copyFrom(0x0a010102);
41 private final ImmutableByteSequence mask2 = copyFrom(0x0000ffff);
Frank Wange33e4ed2017-06-28 10:01:07 +080042
Carmelo Cascone87892e22017-11-13 16:01:29 -080043 private final PiMatchFieldId piMatchField = PiMatchFieldId.of(IPV4_HEADER_NAME + DOT + DST_ADDR);
44 private PiTernaryFieldMatch piTernaryFieldMatch1 = new PiTernaryFieldMatch(piMatchField, value1, mask1);
45 private PiTernaryFieldMatch sameAsPiTernaryFieldMatch1 = new PiTernaryFieldMatch(piMatchField, value1, mask1);
46 private PiTernaryFieldMatch piTernaryFieldMatch2 = new PiTernaryFieldMatch(piMatchField, value2, mask2);
Frank Wange33e4ed2017-06-28 10:01:07 +080047
48 /**
49 * Checks that the PiTernaryFieldMatch class is immutable.
50 */
51 @Test
52 public void testImmutability() {
53 assertThatClassIsImmutable(PiTernaryFieldMatch.class);
54 }
55
56 /**
57 * Checks the operation of equals(), hashCode() and toString() methods.
58 */
59 @Test
60 public void testEquals() {
61 new EqualsTester()
62 .addEqualityGroup(piTernaryFieldMatch1, sameAsPiTernaryFieldMatch1)
63 .addEqualityGroup(piTernaryFieldMatch2)
64 .testEquals();
65 }
66
67 /**
68 * Checks the construction of a PiTernaryFieldMatch object.
69 */
70 @Test
71 public void testConstruction() {
72 final ImmutableByteSequence value = copyFrom(0x0a01010a);
73 final ImmutableByteSequence mask = copyFrom(0x00ffffff);
Carmelo Cascone87892e22017-11-13 16:01:29 -080074 final PiMatchFieldId piMatchField = PiMatchFieldId.of(IPV4_HEADER_NAME + DOT + DST_ADDR);
75 PiTernaryFieldMatch piTernaryFieldMatch = new PiTernaryFieldMatch(piMatchField, value, mask);
Frank Wange33e4ed2017-06-28 10:01:07 +080076 assertThat(piTernaryFieldMatch, is(notNullValue()));
77 assertThat(piTernaryFieldMatch.value(), is(value));
78 assertThat(piTernaryFieldMatch.mask(), is(mask));
79 assertThat(piTernaryFieldMatch.type(), is(PiMatchType.TERNARY));
80 }
81}