Migrate to java.time.Duration
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / test / java / org / opendaylight / controller / remote / rpc / RpcBrokerTest.java
index 16b13910a8f91539f0ec4a085fe589485737d6b0..7ea9191e7c7d4d07e868d94345197ea224b35978 100644 (file)
@@ -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);
+    }
 }