blob: 587d8b8d1531b7632eb116b99464839536b290a6 [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.onosproject.net.pi.model.PiMatchType;
22
23import static org.hamcrest.MatcherAssert.assertThat;
24import static org.hamcrest.Matchers.is;
25import static org.hamcrest.Matchers.notNullValue;
26import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutable;
27import static org.onosproject.net.pi.runtime.PiConstantsTest.VID;
28import static org.onosproject.net.pi.runtime.PiConstantsTest.VLAN_HEADER_NAME;
29
30/**
31 * Unit tests for PiValidFieldMatch class.
32 */
33public class PiValidFieldMatchTest {
34
35 final boolean isValid1 = true;
36 final boolean isValid2 = false;
37 final PiHeaderFieldId piHeaderField = PiHeaderFieldId.of(VLAN_HEADER_NAME, VID);
38 PiValidFieldMatch piValidFieldMatch1 = new PiValidFieldMatch(piHeaderField, isValid1);
39 PiValidFieldMatch sameAsPiValidFieldMatch1 = new PiValidFieldMatch(piHeaderField, isValid1);
40 PiValidFieldMatch piValidFieldMatch2 = new PiValidFieldMatch(piHeaderField, isValid2);
41
42 /**
43 * Checks that the PiValidFieldMatch class is immutable.
44 */
45 @Test
46 public void testImmutability() {
47 assertThatClassIsImmutable(PiValidFieldMatch.class);
48 }
49
50 /**
51 * Checks the operation of equals(), hashCode() and toString() methods.
52 */
53 @Test
54 public void testEquals() {
55 new EqualsTester()
56 .addEqualityGroup(piValidFieldMatch1, sameAsPiValidFieldMatch1)
57 .addEqualityGroup(piValidFieldMatch2)
58 .testEquals();
59 }
60
61 /**
62 * Checks the construction of a PiValidFieldMatch object.
63 */
64 @Test
65 public void testConstruction() {
66 final boolean isValid = true;
67 final PiHeaderFieldId piHeaderField = PiHeaderFieldId.of(VLAN_HEADER_NAME, VID);
68 PiValidFieldMatch piTernaryFieldMatch = new PiValidFieldMatch(piHeaderField, isValid);
69 assertThat(piTernaryFieldMatch, is(notNullValue()));
70 assertThat(piTernaryFieldMatch.isValid(), is(isValid));
71 assertThat(piTernaryFieldMatch.type(), is(PiMatchType.VALID));
72 }
73}