blob: b08134d87dafcd2953a877c91da3f06ae5fc88ab [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 org.junit.Test;
20import org.onosproject.net.pi.model.PiMatchType;
21
22import static org.junit.Assert.assertEquals;
23import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutableBaseClass;
24import static org.onlab.util.ImmutableByteSequence.copyFrom;
25import static org.onosproject.net.pi.runtime.PiConstantsTest.ETH_HEADER_NAME;
26import static org.onosproject.net.pi.runtime.PiConstantsTest.ETH_TYPE;
27
28/**
29 * Unit tests for PiFieldMatch class.
30 */
31public class PiFieldMatchTest {
32
33 /**
34 * Checks that the PiFieldMatch class is immutable but can be
35 * inherited from.
36 */
37 @Test
38 public void testImmutability() {
39 assertThatClassIsImmutableBaseClass(PiFieldMatch.class);
40 }
41
42 @Test
43 public void basics() {
44 final PiHeaderFieldId piHeaderField = PiHeaderFieldId.of(ETH_HEADER_NAME, ETH_TYPE);
45 PiFieldMatch piFieldMatch = new PiExactFieldMatch(piHeaderField, copyFrom(0x0806));
46
47 assertEquals(piFieldMatch.fieldId(), piHeaderField);
48 assertEquals(piFieldMatch.type(), PiMatchType.EXACT);
49 }
50}