blob: 993c5e2d06ab25c959d12922127766fe61f1b459 [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.PiActionParamId;
Frank Wange33e4ed2017-06-28 10:01:07 +080023
24import static org.hamcrest.MatcherAssert.assertThat;
25import static org.hamcrest.Matchers.is;
26import static org.hamcrest.Matchers.notNullValue;
27import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutable;
28import static org.onlab.util.ImmutableByteSequence.copyFrom;
29import static org.onosproject.net.pi.runtime.PiConstantsTest.DST_ADDR;
30import static org.onosproject.net.pi.runtime.PiConstantsTest.SRC_ADDR;
31
32/**
33 * Unit tests for PiActionParam class.
34 */
35public class PiActionParamTest {
Carmelo Cascone87892e22017-11-13 16:01:29 -080036 private ImmutableByteSequence value1 = copyFrom(0x0a010101);
37 private ImmutableByteSequence value2 = copyFrom(0x0a010102);
38 private final PiActionParam piActionParam1 = new PiActionParam(PiActionParamId.of(DST_ADDR), value1);
39 private final PiActionParam sameAsPiActionParam1 = new PiActionParam(PiActionParamId.of(DST_ADDR), value1);
40 private final PiActionParam piActionParam2 = new PiActionParam(PiActionParamId.of(DST_ADDR), value2);
Frank Wange33e4ed2017-06-28 10:01:07 +080041
42 /**
43 * Checks that the PiActionParam class is immutable.
44 */
45 @Test
46 public void testImmutability() {
47 assertThatClassIsImmutable(PiActionParam.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(piActionParam1, sameAsPiActionParam1)
57 .addEqualityGroup(piActionParam2)
58 .testEquals();
59 }
60
61 /**
62 * Checks the construction of a PiActionParam object.
63 */
64 @Test
65 public void testConstruction() {
66 ImmutableByteSequence value = copyFrom(0x0b010102);
67 final PiActionParamId piActionParamId = PiActionParamId.of(SRC_ADDR);
68 final PiActionParam piActionParam = new PiActionParam(piActionParamId, value);
69 assertThat(piActionParam, is(notNullValue()));
70 assertThat(piActionParam.id(), is(piActionParamId));
71 assertThat(piActionParam.value(), is(value));
72 }
73}