blob: e783850328cd5fe1fefebaa9a6ae5c72c302ca6f [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;
21
22import static org.hamcrest.MatcherAssert.assertThat;
23import static org.hamcrest.Matchers.is;
24import static org.hamcrest.Matchers.notNullValue;
25import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutable;
26import static org.onosproject.net.pi.runtime.PiConstantsTest.DST_ADDR;
27import static org.onosproject.net.pi.runtime.PiConstantsTest.PORT;
28import static org.onosproject.net.pi.runtime.PiConstantsTest.SRC_ADDR;
29
30/**
31 * Unit tests for PiActionParamId class.
32 */
33public class PiActionParamIdTest {
34 final PiActionParamId piActionParamId1 = PiActionParamId.of(PORT);
35 final PiActionParamId sameAsPiActionParamId1 = PiActionParamId.of(PORT);
36 final PiActionParamId piActionParamId2 = PiActionParamId.of(DST_ADDR);
37
38 /**
39 * Checks that the PiActionParamId class is immutable.
40 */
41 @Test
42 public void testImmutability() {
43 assertThatClassIsImmutable(PiActionParamId.class);
44 }
45
46 /**
47 * Checks the operation of equals(), hashCode() and toString() methods.
48 */
49 @Test
50 public void testEquals() {
51 new EqualsTester()
52 .addEqualityGroup(piActionParamId1, sameAsPiActionParamId1)
53 .addEqualityGroup(piActionParamId2)
54 .testEquals();
55 }
56
57 /**
58 * Checks the construction of a PiActionParamId object.
59 */
60 @Test
61 public void testConstruction() {
62 final String param = SRC_ADDR;
63 final PiActionParamId actionParamId = PiActionParamId.of(SRC_ADDR);
64 assertThat(actionParamId, is(notNullValue()));
65 assertThat(actionParamId.name(), is(param));
66 }
67}