X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-remoterpc-connector%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fremote%2Frpc%2FRpcBrokerTest.java;h=7ea9191e7c7d4d07e868d94345197ea224b35978;hp=16b13910a8f91539f0ec4a085fe589485737d6b0;hb=a4fcc7debbd036c6e1df8c88df1c0268c62e76e4;hpb=f84f3b8fb24b1ee2074fbbb3f5c64e3ba3191e3e diff --git a/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/RpcBrokerTest.java b/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/RpcBrokerTest.java index 16b13910a8..7ea9191e7c 100644 --- a/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/RpcBrokerTest.java +++ b/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/RpcBrokerTest.java @@ -1,16 +1,59 @@ /* - * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. + * Copyright (c) 2014, 2017 Cisco Systems, Inc. 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.controller.remote.rpc; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.when; +import akka.actor.Status.Failure; +import java.time.Duration; +import org.junit.Test; +import org.opendaylight.controller.remote.rpc.messages.ExecuteRpc; +import org.opendaylight.controller.remote.rpc.messages.RpcResponse; +import org.opendaylight.mdsal.dom.api.DOMRpcException; +import org.opendaylight.mdsal.dom.api.DOMRpcImplementationNotAvailableException; +import org.opendaylight.mdsal.dom.api.DOMRpcResult; +import org.opendaylight.mdsal.dom.spi.DefaultDOMRpcResult; +import org.opendaylight.yangtools.util.concurrent.FluentFutures; +import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode; public class RpcBrokerTest extends AbstractRpcTest { + @Test + public void testExecuteRpc() { + final ContainerNode invokeRpcResult = makeRPCOutput("bar"); + final DOMRpcResult rpcResult = new DefaultDOMRpcResult(invokeRpcResult); + when(domRpcService1.invokeRpc(eq(TEST_RPC_TYPE), any())).thenReturn( + FluentFutures.immediateFluentFuture(rpcResult)); + + final ExecuteRpc executeMsg = ExecuteRpc.from(TEST_RPC_ID, null); + + rpcInvoker1.tell(executeMsg, rpcRegistry1Probe.getRef()); + + final RpcResponse rpcResponse = rpcRegistry1Probe.expectMsgClass(Duration.ofSeconds(5), RpcResponse.class); + + assertEquals(rpcResult.getResult(), rpcResponse.getResultNormalizedNode()); + } + + @Test + public void testExecuteRpcFailureWithException() { + when(domRpcService1.invokeRpc(eq(TEST_RPC_TYPE), any())).thenReturn(FluentFutures.immediateFailedFluentFuture( + new DOMRpcImplementationNotAvailableException("NOT FOUND"))); + + final ExecuteRpc executeMsg = ExecuteRpc.from(TEST_RPC_ID, null); + + rpcInvoker1.tell(executeMsg, rpcRegistry1Probe.getRef()); + + final Failure rpcResponse = rpcRegistry1Probe.expectMsgClass(Duration.ofSeconds(5), Failure.class); + assertTrue(rpcResponse.cause() instanceof DOMRpcException); + } }