blob: c2793e7107b93bff04f9935010c771c2aae7383f [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;
Carmelo Cascone87892e22017-11-13 16:01:29 -080021import org.onosproject.net.pi.model.PiActionParamId;
Frank Wange33e4ed2017-06-28 10:01:07 +080022
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.DST_ADDR;
28import static org.onosproject.net.pi.runtime.PiConstantsTest.PORT;
29import static org.onosproject.net.pi.runtime.PiConstantsTest.SRC_ADDR;
30
31/**
32 * Unit tests for PiActionParamId class.
33 */
34public class PiActionParamIdTest {
35 final PiActionParamId piActionParamId1 = PiActionParamId.of(PORT);
36 final PiActionParamId sameAsPiActionParamId1 = PiActionParamId.of(PORT);
37 final PiActionParamId piActionParamId2 = PiActionParamId.of(DST_ADDR);
38
39 /**
40 * Checks that the PiActionParamId class is immutable.
41 */
42 @Test
43 public void testImmutability() {
44 assertThatClassIsImmutable(PiActionParamId.class);
45 }
46
47 /**
48 * Checks the operation of equals(), hashCode() and toString() methods.
49 */
50 @Test
51 public void testEquals() {
52 new EqualsTester()
53 .addEqualityGroup(piActionParamId1, sameAsPiActionParamId1)
54 .addEqualityGroup(piActionParamId2)
55 .testEquals();
56 }
57
58 /**
59 * Checks the construction of a PiActionParamId object.
60 */
61 @Test
62 public void testConstruction() {
63 final String param = SRC_ADDR;
Carmelo Cascone87892e22017-11-13 16:01:29 -080064 final PiActionParamId actionParamId = PiActionParamId.of(param);
Frank Wange33e4ed2017-06-28 10:01:07 +080065 assertThat(actionParamId, is(notNullValue()));
Carmelo Cascone87892e22017-11-13 16:01:29 -080066 assertThat(actionParamId.id(), is(param));
Frank Wange33e4ed2017-06-28 10:01:07 +080067 }
68}