Bug 5947: additional test for binding-dom-adapter
[mdsal.git] / binding / mdsal-binding-dom-adapter / src / test / java / org / opendaylight / mdsal / binding / dom / adapter / RpcServiceAdapterTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.binding.dom.adapter;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertNotNull;
13 import static org.junit.Assert.assertTrue;
14
15 import com.google.common.util.concurrent.MoreExecutors;
16 import java.lang.reflect.Method;
17 import org.junit.Test;
18 import org.opendaylight.mdsal.binding.dom.adapter.test.util.BindingBrokerTestFactory;
19 import org.opendaylight.mdsal.binding.dom.adapter.test.util.BindingTestContext;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.bi.ba.rpcservice.rev140701.OpendaylightTestRpcServiceService;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.bi.ba.rpcservice.rev140701.RockTheHouseInput;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.rpc.routing.rev140701.OpendaylightTestRoutedRpcService;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.rpc.routing.rev140701.RoutedSimpleRouteInput;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.rpc.routing.rev140701.RoutedSimpleRouteInputBuilder;
25 import org.opendaylight.yangtools.yang.binding.RpcService;
26
27 public class RpcServiceAdapterTest {
28
29     @Test
30     public void invoke() throws Throwable {
31         final BindingBrokerTestFactory bindingBrokerTestFactory = new BindingBrokerTestFactory();
32         bindingBrokerTestFactory.setExecutor(MoreExecutors.newDirectExecutorService());
33         final BindingTestContext bindingTestContext = bindingBrokerTestFactory.getTestContext();
34         bindingTestContext.start();
35
36         RpcServiceAdapter rpcServiceAdapter = new RpcServiceAdapter(OpendaylightTestRpcServiceService.class,
37                 bindingTestContext.getCodec(), bindingTestContext.getDomRpcInvoker());
38
39         Method method = TestRpcService.class.getMethod("equals", Object.class);
40         assertTrue((boolean) rpcServiceAdapter.invoke(rpcServiceAdapter.getProxy(), method,
41                 new Object[]{ rpcServiceAdapter.getProxy() }));
42         assertFalse((boolean) rpcServiceAdapter.invoke(rpcServiceAdapter.getProxy(), method,
43                 new Object[]{ new Object() }));
44
45         method = TestRpcService.class.getMethod("hashCode");
46         assertEquals(rpcServiceAdapter.getProxy().hashCode(), rpcServiceAdapter.invoke(rpcServiceAdapter.getProxy(),
47                 method, new Object[]{ }));
48
49         method = TestRpcService.class.getMethod("toString");
50         assertEquals(rpcServiceAdapter.getProxy().toString(), rpcServiceAdapter.invoke(rpcServiceAdapter.getProxy(),
51                 method, new Object[]{ }));
52
53         method = OpendaylightTestRpcServiceService.class.getMethod("rockTheHouse", RockTheHouseInput.class);
54         assertNotNull(rpcServiceAdapter.invoke(rpcServiceAdapter.getProxy(), method, new Object[]{ null }));
55
56         rpcServiceAdapter = new RpcServiceAdapter(OpendaylightTestRoutedRpcService.class,
57                 bindingTestContext.getCodec(), bindingTestContext.getDomRpcInvoker());
58         method = OpendaylightTestRoutedRpcService.class.getMethod("routedSimpleRoute", RoutedSimpleRouteInput.class);
59         assertNotNull(rpcServiceAdapter.invoke(rpcServiceAdapter.getProxy(), method,
60                 new Object[]{ new RoutedSimpleRouteInputBuilder().build() }));
61     }
62
63     private interface TestRpcService extends RpcService {
64
65         String toString();
66         int hashCode();
67         boolean equals(Object o);
68     }
69 }