From 0d278ce4087b56dc4a5db659de2527d71e01899b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20de=20Talhou=C3=ABt?= Date: Fri, 17 Apr 2015 13:32:10 -0400 Subject: [PATCH] Add JUnit testing for RoutingService class. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Ie40d1009a840f646260c676b5338088d926b73bc Signed-off-by: Alexis de Talhouët --- .../services/RoutingServiceTest.java | 114 ++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 openstack/net-virt-providers/src/test/java/org/opendaylight/ovsdb/openstack/netvirt/providers/openflow13/services/RoutingServiceTest.java diff --git a/openstack/net-virt-providers/src/test/java/org/opendaylight/ovsdb/openstack/netvirt/providers/openflow13/services/RoutingServiceTest.java b/openstack/net-virt-providers/src/test/java/org/opendaylight/ovsdb/openstack/netvirt/providers/openflow13/services/RoutingServiceTest.java new file mode 100644 index 0000000000..a56f6c5c9a --- /dev/null +++ b/openstack/net-virt-providers/src/test/java/org/opendaylight/ovsdb/openstack/netvirt/providers/openflow13/services/RoutingServiceTest.java @@ -0,0 +1,114 @@ +/* + * Copyright (c) 2015 Inocybe and others. All rights reserved. + * + * This program and the accompanying materials are made available under the + * terms of the Eclipse Public License v1.0 which accompanies this distribution, + * and is available at http://www.eclipse.org/legal/epl-v10.html + */ + +package org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.services; + +import static org.junit.Assert.assertEquals; +import static org.mockito.Matchers.any; +import static org.mockito.Matchers.anyBoolean; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +import java.net.InetAddress; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.runners.MockitoJUnitRunner; +import org.opendaylight.controller.md.sal.binding.api.DataBroker; +import org.opendaylight.controller.md.sal.binding.api.ReadWriteTransaction; +import org.opendaylight.controller.md.sal.binding.api.WriteTransaction; +import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType; +import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException; +import org.opendaylight.ovsdb.openstack.netvirt.api.Action; +import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.MdsalConsumer; +import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.PipelineOrchestrator; +import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.Service; +import org.opendaylight.ovsdb.plugin.api.Status; +import org.opendaylight.ovsdb.plugin.api.StatusCode; +import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node; +import org.opendaylight.yangtools.yang.binding.InstanceIdentifier; + +import com.google.common.util.concurrent.CheckedFuture; + +/** + * Unit test fort {@link RoutingService} + */ +@RunWith(MockitoJUnitRunner.class) +public class RoutingServiceTest { + + @InjectMocks private RoutingService routingService = new RoutingService(); + + @Mock private MdsalConsumer mdsalConsumer; + @Mock private PipelineOrchestrator orchestrator; + + @Mock private ReadWriteTransaction readWriteTransaction; + @Mock private WriteTransaction writeTransaction; + @Mock private CheckedFuture commitFuture; + + private static final String SEGMENTATION_ID = "2"; + private static final String HOST_ADDRESS = "127.0.0.1"; + private static final String MAC_ADDRESS = "87:1D:5E:02:40:B8"; + + @Before + public void setUp() throws Exception { + when(readWriteTransaction.submit()).thenReturn(commitFuture); + when(writeTransaction.submit()).thenReturn(commitFuture); + + DataBroker dataBroker = mock(DataBroker.class); + when(dataBroker.newReadWriteTransaction()).thenReturn(readWriteTransaction); + when(dataBroker.newWriteOnlyTransaction()).thenReturn(writeTransaction); + + when(mdsalConsumer.getDataBroker()).thenReturn(dataBroker); + + when(orchestrator.getNextServiceInPipeline(any(Service.class))).thenReturn(Service.ARP_RESPONDER); + } + + /** + * Test method {@link RoutingService#programRouterInterface(Node, Long, String, String, String, InetAddress, int, Action)} + */ + @Test + public void testProgramRouterInterface() throws Exception { + InetAddress address = mock(InetAddress.class); + when(address.getHostAddress()).thenReturn(HOST_ADDRESS); + + assertEquals("Error, did not return the expected StatusCode", new Status(StatusCode.SUCCESS), routingService.programRouterInterface(mock(Node.class), Long.valueOf(123), SEGMENTATION_ID, SEGMENTATION_ID, MAC_ADDRESS, address, 1, Action.ADD)); + verify(readWriteTransaction, times(2)).put(any(LogicalDatastoreType.class), any(InstanceIdentifier.class), any(Node.class), anyBoolean()); + verify(readWriteTransaction, times(1)).submit(); + verify(commitFuture, times(1)).get(); + + assertEquals("Error, did not return the expected StatusCode", new Status(StatusCode.SUCCESS), routingService.programRouterInterface(mock(Node.class), Long.valueOf(123), SEGMENTATION_ID, SEGMENTATION_ID, MAC_ADDRESS, address, 1, Action.DELETE)); + verify(writeTransaction, times(1)).delete(any(LogicalDatastoreType.class), any(InstanceIdentifier.class)); + verify(readWriteTransaction, times(1)).submit(); + verify(commitFuture, times(2)).get(); // 1 + 1 above + } + + /** + * Test method {@link RoutingService#programDefaultRouteEntry(Node, Long, String, String, InetAddress, Action)} + */ + @Test + public void testProgramDefaultRouteEntry() throws Exception { + InetAddress address = mock(InetAddress.class); + when(address.getHostAddress()).thenReturn(HOST_ADDRESS); + + assertEquals("Error, did not return the expected StatusCode", new Status(StatusCode.SUCCESS), routingService.programDefaultRouteEntry(mock(Node.class), Long.valueOf(123), SEGMENTATION_ID, MAC_ADDRESS, address, Action.ADD)); + verify(readWriteTransaction, times(2)).put(any(LogicalDatastoreType.class), any(InstanceIdentifier.class), any(Node.class), anyBoolean()); + verify(readWriteTransaction, times(1)).submit(); + verify(commitFuture, times(1)).get(); + + assertEquals("Error, did not return the expected StatusCode", new Status(StatusCode.SUCCESS), routingService.programDefaultRouteEntry(mock(Node.class), Long.valueOf(123), SEGMENTATION_ID, MAC_ADDRESS, address, Action.DELETE)); + verify(writeTransaction, times(1)).delete(any(LogicalDatastoreType.class), any(InstanceIdentifier.class)); + verify(readWriteTransaction, times(1)).submit(); + verify(commitFuture, times(2)).get(); // 1 + 1 above + } + +} -- 2.36.6