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