blob: ea9e569a92aabad716e3034be97b9e269aaf8ec0 [file] [log] [blame]
/*
* Copyright 2018-present Open Networking Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onosproject.openstacknode.api;
import com.google.common.testing.EqualsTester;
import org.junit.Test;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
/**
* Unit tests for DefaultOpenstackPhyInterface.
*/
public class DefaultOpenstackPhyInterfaceTest {
private static final String NETWORK_1 = "mgmtnetwork";
private static final String NETWORK_2 = "oamnetwork";
private static final String INTERFACE_1 = "eth3";
private static final String INTERFACE_2 = "eth4";
private static final OpenstackPhyInterface OS_PHY_INTF_1 =
new DefaultOpenstackPhyInterface(NETWORK_1, INTERFACE_1);
private static final OpenstackPhyInterface OS_PHY_INTF_2 =
new DefaultOpenstackPhyInterface(NETWORK_1, INTERFACE_1);
private static final OpenstackPhyInterface OS_PHY_INTF_3 =
new DefaultOpenstackPhyInterface(NETWORK_2, INTERFACE_2);
@Test
public void testEquality() {
new EqualsTester().addEqualityGroup(OS_PHY_INTF_1, OS_PHY_INTF_2)
.addEqualityGroup(OS_PHY_INTF_3)
.testEquals();
}
@Test
public void testConstruction() {
DefaultOpenstackPhyInterface phyIntf = (DefaultOpenstackPhyInterface)
OS_PHY_INTF_1;
assertThat(phyIntf.network(), is(NETWORK_1));
assertThat(phyIntf.intf(), is(INTERFACE_1));
}
}