2 * Copyright 2015 Open Networking Laboratory
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onosproject.vtnrsc.flowclassifier;
18 import static org.hamcrest.MatcherAssert.assertThat;
19 import static org.hamcrest.Matchers.is;
20 import static org.hamcrest.Matchers.notNullValue;
21 import static org.onlab.junit.ImmutableClassChecker.assertThatClassIsImmutable;
23 import org.junit.Test;
24 import org.onosproject.vtnrsc.FlowClassifierId;
26 import com.google.common.testing.EqualsTester;
27 import java.util.UUID;
30 * Unit tests for FlowClassifierId class.
32 public class FlowClassifierIdTest {
34 final FlowClassifierId flowClassifierId1 = FlowClassifierId
35 .flowClassifierId("78dcd363-fc23-aeb6-f44b-56dc5e2fb3ae");
36 final FlowClassifierId sameAsFlowClassifierId1 = FlowClassifierId
37 .flowClassifierId("78dcd363-fc23-aeb6-f44b-56dc5e2fb3ae");
38 final FlowClassifierId flowClassifierId2 = FlowClassifierId
39 .flowClassifierId("dace4513-24fc-4fae-af4b-321c5e2eb3d1");
42 * Checks that the FlowClassifierId class is immutable.
45 public void testImmutability() {
46 assertThatClassIsImmutable(FlowClassifierId.class);
50 * Checks the operation of equals() methods.
53 public void testEquals() {
54 new EqualsTester().addEqualityGroup(flowClassifierId1, sameAsFlowClassifierId1)
55 .addEqualityGroup(flowClassifierId2).testEquals();
59 * Checks the construction of a FlowClassifierId object.
62 public void testConstruction() {
63 final String flowClassifierIdValue = "dace4513-24fc-4fae-af4b-321c5e2eb3d1";
64 final FlowClassifierId flowClassifierId = FlowClassifierId.flowClassifierId(flowClassifierIdValue);
65 assertThat(flowClassifierId, is(notNullValue()));
66 assertThat(flowClassifierId.value(), is(UUID.fromString(flowClassifierIdValue)));