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=edf5efa06008b038cb7d56d8119a58b0094088a4;hb=b1b3bafd549bb501937cea5c976d5344608b6ed3;hp=06251d40cbd4c7dc8e81a9974346dd2e39468aaf;hpb=7be521daacc5ce221474b434ab34c27eb37ec158;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 06251d40c..edf5efa06 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,15 +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.Ignore; -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; @@ -24,43 +31,57 @@ 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; -@Ignore +@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())); + networkTransaction = new NetworkTransactionImpl(getDataBroker()); pathComputationService = new PathComputationServiceImpl(networkTransaction, notificationPublishService, - null); - pceServiceRPC = new PceServiceRPCImpl(pathComputationService); + null, portMapping); + } + @Test + void testRpcRegistration() { + new PceServiceRPCImpl(rpcProviderService, pathComputationService); + verify(rpcProviderService, times(1)).registerRpcImplementations(any()); + } + + @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())); } }