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