BUG-7159: eliminate use of CrossStatementSourceReactor
[controller.git] / opendaylight / md-sal / sal-binding-dom-it / src / test / java / org / opendaylight / controller / sal / binding / test / connect / dom / DOMRpcServiceTestBugfix560.java
1 /*
2  * Copyright (c) 2014 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.controller.sal.binding.test.connect.dom;
9
10 import static org.junit.Assert.assertNotNull;
11 import static org.junit.Assert.assertTrue;
12 import static org.junit.Assert.fail;
13
14 import com.google.common.util.concurrent.CheckedFuture;
15 import com.google.common.util.concurrent.Futures;
16 import com.google.common.util.concurrent.MoreExecutors;
17 import java.io.InputStream;
18 import java.util.Collections;
19 import java.util.List;
20 import java.util.concurrent.ExecutionException;
21 import java.util.concurrent.Future;
22 import org.junit.After;
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
26 import org.opendaylight.controller.md.sal.dom.api.DOMRpcAvailabilityListener;
27 import org.opendaylight.controller.md.sal.dom.api.DOMRpcException;
28 import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
29 import org.opendaylight.controller.md.sal.dom.api.DOMRpcService;
30 import org.opendaylight.controller.md.sal.dom.spi.DefaultDOMRpcResult;
31 import org.opendaylight.controller.sal.binding.api.mount.MountProviderInstance;
32 import org.opendaylight.controller.sal.binding.api.mount.MountProviderService;
33 import org.opendaylight.controller.sal.binding.test.util.BindingBrokerTestFactory;
34 import org.opendaylight.controller.sal.binding.test.util.BindingTestContext;
35 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.bi.ba.rpcservice.rev140701.OpendaylightTestRpcServiceService;
36 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.bi.ba.rpcservice.rev140701.RockTheHouseInputBuilder;
37 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.Top;
38 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.two.level.list.TopLevelList;
39 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.test.list.rev140701.two.level.list.TopLevelListKey;
40 import org.opendaylight.yangtools.concepts.ListenerRegistration;
41 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
42 import org.opendaylight.yangtools.yang.binding.util.BindingReflections;
43 import org.opendaylight.yangtools.yang.common.QName;
44 import org.opendaylight.yangtools.yang.common.RpcResult;
45 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
46 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
47 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
48 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
49
50 /**
51  * Test case for reported bug 560
52  *
53  * @author Lukas Sedlak
54  * @see <a
55  *      href="https://bugs.opendaylight.org/show_bug.cgi?id=560">https://bugs.opendaylight.org/show_bug.cgi?id=560</a>
56  */
57 public class DOMRpcServiceTestBugfix560 {
58
59     private final static String RPC_SERVICE_NAMESPACE = "urn:opendaylight:params:xml:ns:yang:controller:md:sal:test:bi:ba:rpcservice";
60     private final static String REVISION_DATE = "2014-07-01";
61     private final static QName RPC_NAME = QName.create(RPC_SERVICE_NAMESPACE,
62             REVISION_DATE, "rock-the-house");
63
64     private static final String TLL_NAME = "id";
65     private static final QName TLL_NAME_QNAME = QName.create(TopLevelList.QNAME, "name");
66
67     private static final InstanceIdentifier<TopLevelList> BA_MOUNT_ID = createBATllIdentifier(TLL_NAME);
68     private static final org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier BI_MOUNT_ID = createBITllIdentifier(TLL_NAME);
69
70     private BindingTestContext testContext;
71     private DOMMountPointService domMountPointService;
72     private MountProviderService bindingMountPointService;
73     private SchemaContext schemaContext;
74
75     /**
76      * @throws java.lang.Exception
77      */
78     @Before
79     public void setUp() throws Exception {
80         final BindingBrokerTestFactory testFactory = new BindingBrokerTestFactory();
81         testFactory.setExecutor(MoreExecutors.newDirectExecutorService());
82         testFactory.setStartWithParsedSchema(true);
83         testContext = testFactory.getTestContext();
84
85         testContext.start();
86         domMountPointService = testContext.getDomMountProviderService();
87         bindingMountPointService = testContext.getBindingMountProviderService();
88         assertNotNull(domMountPointService);
89
90         final InputStream moduleStream = BindingReflections.getModuleInfo(
91                 OpendaylightTestRpcServiceService.class)
92                 .getModuleSourceStream();
93
94         assertNotNull(moduleStream);
95         final List<InputStream> rpcModels = Collections.singletonList(moduleStream);
96         schemaContext = YangParserTestUtils.parseYangStreams(rpcModels);
97     }
98
99     private static org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier createBITllIdentifier(
100             final String mount) {
101         return org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier
102                 .builder().node(Top.QNAME)
103                 .node(TopLevelList.QNAME)
104                 .nodeWithKey(TopLevelList.QNAME, TLL_NAME_QNAME, mount)
105                 .build();
106     }
107
108     private static InstanceIdentifier<TopLevelList> createBATllIdentifier(
109             final String mount) {
110         return InstanceIdentifier.builder(Top.class)
111                 .child(TopLevelList.class, new TopLevelListKey(mount)).build();
112     }
113
114     @Test
115     public void test() throws ExecutionException, InterruptedException {
116         // FIXME: This is made to only make sure instance identifier codec for path is instantiated.
117         domMountPointService
118                 .createMountPoint(BI_MOUNT_ID).addService(DOMRpcService.class, new DOMRpcService() {
119
120                     @Override
121                     public <T extends DOMRpcAvailabilityListener> ListenerRegistration<T> registerRpcListener(final T arg0) {
122                         // TODO Auto-generated method stub
123                         return null;
124                     }
125
126                     @Override
127                     public CheckedFuture<DOMRpcResult, DOMRpcException> invokeRpc(final SchemaPath arg0, final NormalizedNode<?, ?> arg1) {
128                         final DOMRpcResult result = new DefaultDOMRpcResult((NormalizedNode<?, ?>) null);
129                         return Futures.immediateCheckedFuture(result);
130                     }
131                 }).register();
132         final MountProviderInstance mountInstance = bindingMountPointService
133                 .getMountPoint(BA_MOUNT_ID);
134         assertNotNull(mountInstance);
135         final OpendaylightTestRpcServiceService rpcService = mountInstance
136                 .getRpcService(OpendaylightTestRpcServiceService.class);
137         assertNotNull(rpcService);
138
139         try {
140             final Future<RpcResult<Void>> result = rpcService
141                     .rockTheHouse(new RockTheHouseInputBuilder().build());
142             assertTrue(result.get().isSuccessful());
143         } catch (final IllegalStateException ex) {
144             fail("OpendaylightTestRpcServiceService class doesn't contain rockTheHouse method!");
145         }
146     }
147
148     /**
149      * @throws java.lang.Exception
150      */
151     @After
152     public void teardown() throws Exception {
153         testContext.close();
154     }
155 }