blob: 7fb28b9b3d0e0e57f39fa01d91804387b885f9ec [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.VID;
32import static org.onosproject.net.pi.runtime.PiConstantsTest.VLAN_HEADER_NAME;
33
34/**
35 * Unit tests for PiRangeFieldMatch class.
36 */
37public class PiRangeFieldMatchTest {
Carmelo Cascone87892e22017-11-13 16:01:29 -080038 private final ImmutableByteSequence high1 = copyFrom(0x10);
39 private final ImmutableByteSequence low1 = copyFrom(0x00);
40 private final ImmutableByteSequence high2 = copyFrom(0x30);
41 private final ImmutableByteSequence low2 = copyFrom(0x40);
Frank Wange33e4ed2017-06-28 10:01:07 +080042
Carmelo Cascone87892e22017-11-13 16:01:29 -080043 private final PiMatchFieldId piMatchField = PiMatchFieldId.of(VLAN_HEADER_NAME + DOT + VID);
44 private PiRangeFieldMatch piRangeFieldMatch1 = new PiRangeFieldMatch(piMatchField, low1, high1);
45 private PiRangeFieldMatch sameAsPiRangeFieldMatch1 = new PiRangeFieldMatch(piMatchField, low1, high1);
46 private PiRangeFieldMatch piRangeFieldMatch2 = new PiRangeFieldMatch(piMatchField, low2, high2);
Frank Wange33e4ed2017-06-28 10:01:07 +080047
48 /**
49 * Checks that the PiRangeFieldMatch class is immutable.
50 */
51 @Test
52 public void testImmutability() {
53 assertThatClassIsImmutable(PiRangeFieldMatch.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(piRangeFieldMatch1, sameAsPiRangeFieldMatch1)
63 .addEqualityGroup(piRangeFieldMatch2)
64 .testEquals();
65 }
66
67 /**
68 * Checks the construction of a PiRangeFieldMatch object.
69 */
70 @Test
71 public void testConstruction() {
72 final ImmutableByteSequence high = copyFrom(0x50);
73 final ImmutableByteSequence low = copyFrom(0x00);
Carmelo Cascone87892e22017-11-13 16:01:29 -080074 final PiMatchFieldId piMatchField = PiMatchFieldId.of(VLAN_HEADER_NAME + DOT + VID);
75 PiRangeFieldMatch piRangeFieldMatch = new PiRangeFieldMatch(piMatchField, low, high);
Frank Wange33e4ed2017-06-28 10:01:07 +080076 assertThat(piRangeFieldMatch, is(notNullValue()));
77 assertThat(piRangeFieldMatch.lowValue(), is(low));
78 assertThat(piRangeFieldMatch.highValue(), is(high));
79 assertThat(piRangeFieldMatch.type(), is(PiMatchType.RANGE));
80 }
81}