blob: 5650c823a5cc1f5d2a0a87f7d4150b244ccd0bd4 [file] [log] [blame]
Phaneendra Mandaab5a7362015-12-02 01:10:01 +05301/*
2 * Copyright 2015 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 */
16package org.onosproject.driver.extensions;
17
18import static org.hamcrest.MatcherAssert.assertThat;
19import static org.hamcrest.Matchers.is;
20import static org.hamcrest.Matchers.notNullValue;
21
22import org.junit.Test;
Phaneendra Mandaa272a9f2015-12-04 02:42:55 +053023import org.onosproject.net.NshServicePathId;
Phaneendra Mandaab5a7362015-12-02 01:10:01 +053024
25import com.google.common.testing.EqualsTester;
26
27/**
28 * Unit tests for NiciraSetNshSpi class.
29 */
30public class NiciraSetNshSpiTest {
31
Phaneendra Mandaa272a9f2015-12-04 02:42:55 +053032 final NiciraSetNshSpi nshSpi1 = new NiciraSetNshSpi(NshServicePathId.of(10));
33 final NiciraSetNshSpi sameAsNshSpi1 = new NiciraSetNshSpi(NshServicePathId.of(10));
34 final NiciraSetNshSpi nshSpi2 = new NiciraSetNshSpi(NshServicePathId.of(20));
Phaneendra Mandaab5a7362015-12-02 01:10:01 +053035
36 /**
37 * Checks the operation of equals() methods.
38 */
39 @Test
40 public void testEquals() {
41 new EqualsTester().addEqualityGroup(nshSpi1, sameAsNshSpi1).addEqualityGroup(nshSpi2).testEquals();
42 }
43
44 /**
45 * Checks the construction of a NiciraSetNshSpi object.
46 */
47 @Test
48 public void testConstruction() {
Phaneendra Mandaa272a9f2015-12-04 02:42:55 +053049 final NiciraSetNshSpi niciraSetNshSpi = new NiciraSetNshSpi(NshServicePathId.of(10));
Phaneendra Mandaab5a7362015-12-02 01:10:01 +053050 assertThat(niciraSetNshSpi, is(notNullValue()));
Phaneendra Mandaa272a9f2015-12-04 02:42:55 +053051 assertThat(niciraSetNshSpi.nshSpi().servicePathId(), is(10));
Phaneendra Mandaab5a7362015-12-02 01:10:01 +053052 }
53}