X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=pce%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Ftransportpce%2Fpce%2Fimpl%2FPceServiceRPCImplTest.java;h=549a708cbbf83f6f9b95d1c54b809f595ed4c275;hb=d9ef75efa4ff5164c84d1d1e62ac1d4a7e21ab6a;hp=609df3c96d0eaa271430a91e569b023b68762c99;hpb=38788ce8eedd77f7b1dc089df00d9e2a9bcfc1f8;p=transportpce.git diff --git a/pce/src/test/java/org/opendaylight/transportpce/pce/impl/PceServiceRPCImplTest.java b/pce/src/test/java/org/opendaylight/transportpce/pce/impl/PceServiceRPCImplTest.java index 609df3c96..549a708cb 100644 --- a/pce/src/test/java/org/opendaylight/transportpce/pce/impl/PceServiceRPCImplTest.java +++ b/pce/src/test/java/org/opendaylight/transportpce/pce/impl/PceServiceRPCImplTest.java @@ -8,14 +8,22 @@ package org.opendaylight.transportpce.pce.impl; -import static org.junit.Assert.assertNotNull; + +import static org.junit.jupiter.api.Assertions.assertNotNull; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; import java.util.concurrent.ExecutionException; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.extension.ExtendWith; +import org.mockito.Mock; +import org.mockito.junit.jupiter.MockitoExtension; import org.opendaylight.mdsal.binding.api.NotificationPublishService; +import org.opendaylight.mdsal.binding.api.RpcProviderService; +import org.opendaylight.transportpce.common.mapping.PortMapping; import org.opendaylight.transportpce.common.network.NetworkTransactionImpl; -import org.opendaylight.transportpce.common.network.RequestProcessor; import org.opendaylight.transportpce.pce.service.PathComputationService; import org.opendaylight.transportpce.pce.service.PathComputationServiceImpl; import org.opendaylight.transportpce.pce.utils.NotificationPublishServiceMock; @@ -23,43 +31,60 @@ import org.opendaylight.transportpce.pce.utils.PceTestData; import org.opendaylight.transportpce.pce.utils.PceTestUtils; import org.opendaylight.transportpce.pce.utils.TransactionUtils; import org.opendaylight.transportpce.test.AbstractTest; -import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.pce.rev200128.CancelResourceReserveInputBuilder; - - +import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.pce.rev240205.CancelResourceReserveInputBuilder; +@ExtendWith(MockitoExtension.class) public class PceServiceRPCImplTest extends AbstractTest { private PathComputationService pathComputationService; private NotificationPublishService notificationPublishService; private NetworkTransactionImpl networkTransaction; - private PceServiceRPCImpl pceServiceRPC; + @Mock + private PortMapping portMapping; + @Mock + private RpcProviderService rpcProviderService; - @Before - public void setUp() throws ExecutionException, InterruptedException { - PceTestUtils.writeNetworkIntoDataStore(this.getDataBroker(), this.getDataStoreContextUtil(), + + @BeforeEach + void setUp() throws ExecutionException, InterruptedException { + PceTestUtils.writeNetworkIntoDataStore(getDataBroker(), getDataStoreContextUtil(), TransactionUtils.getNetworkForSpanLoss()); notificationPublishService = new NotificationPublishServiceMock(); - networkTransaction = new NetworkTransactionImpl(new RequestProcessor(this.getDataBroker())); - pathComputationService = new PathComputationServiceImpl(networkTransaction, notificationPublishService); - pceServiceRPC = new PceServiceRPCImpl(pathComputationService); + networkTransaction = new NetworkTransactionImpl(getDataBroker()); + pathComputationService = new PathComputationServiceImpl(networkTransaction, notificationPublishService, + null, portMapping); + } + @Test + void testRpcRegistration() { + new PceServiceRPCImpl(rpcProviderService, pathComputationService); + verify(rpcProviderService, times(1)).registerRpcImplementations( + any(CancelResourceReserveImpl.class), any(PathComputationRequestImpl.class), + any(PathComputationRerouteRequestImpl.class)); + } + + @Test + void testCancelResourceReserve() { + assertNotNull(new CancelResourceReserveImpl(pathComputationService) + .invoke(new CancelResourceReserveInputBuilder().build())); } @Test - public void testCancelResourceReserve() { - CancelResourceReserveInputBuilder cancelResourceReserveInput = new CancelResourceReserveInputBuilder(); - assertNotNull(pceServiceRPC.cancelResourceReserve(cancelResourceReserveInput.build())); + void testPathComputationRequest() { + assertNotNull(new PathComputationRequestImpl(pathComputationService) + .invoke(PceTestData.getPCERequest())); } @Test - public void testPathComputationRequest() { - assertNotNull(pceServiceRPC.pathComputationRequest(PceTestData.getPCERequest())); + void testPathComputationRerouteRequest() { + assertNotNull(new PathComputationRerouteRequestImpl(pathComputationService) + .invoke(PceTestData.getPCERerouteRequest())); } @Test - public void testPathComputationRequestCoRoutingOrGeneral2() { - assertNotNull(pceServiceRPC.pathComputationRequest( - PceTestData.getPathComputationRequestInputWithCoRoutingOrGeneral2())); + void testPathComputationRequestCoRoutingOrGeneral2() { + assertNotNull(new PathComputationRequestImpl(pathComputationService) + .invoke(PceTestData.getPathComputationRequestInputWithCoRoutingOrGeneral2())); } }