31807c84e8a8c3828706c6839e10989c75c24441
[netconf.git] / restconf / restconf-nb-bierman02 / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / JSONRestconfServiceImplTest.java
1 /*
2  * Copyright (c) 2015 Brocade Communications 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.restconf.impl.test;
9
10 import static org.hamcrest.CoreMatchers.containsString;
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertNotNull;
13 import static org.junit.Assert.assertThat;
14 import static org.junit.Assert.assertTrue;
15 import static org.mockito.Matchers.any;
16 import static org.mockito.Matchers.eq;
17 import static org.mockito.Matchers.isNull;
18 import static org.mockito.Matchers.notNull;
19 import static org.mockito.Matchers.same;
20 import static org.mockito.Mockito.doReturn;
21 import static org.mockito.Mockito.mock;
22 import static org.mockito.Mockito.reset;
23 import static org.mockito.Mockito.verify;
24 import static org.mockito.Mockito.when;
25
26 import com.google.common.base.Optional;
27 import com.google.common.io.Resources;
28 import com.google.common.util.concurrent.Futures;
29 import java.io.FileNotFoundException;
30 import java.io.IOException;
31 import java.nio.charset.StandardCharsets;
32 import java.util.ArrayList;
33 import java.util.List;
34 import java.util.Map;
35 import javax.ws.rs.core.Response.Status;
36 import org.junit.Before;
37 import org.junit.BeforeClass;
38 import org.junit.Test;
39 import org.mockito.ArgumentCaptor;
40 import org.mockito.Mockito;
41 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
42 import org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException;
43 import org.opendaylight.controller.md.sal.dom.api.DOMMountPoint;
44 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
45 import org.opendaylight.controller.md.sal.dom.api.DOMRpcException;
46 import org.opendaylight.controller.md.sal.dom.api.DOMRpcImplementationNotAvailableException;
47 import org.opendaylight.controller.md.sal.dom.api.DOMRpcResult;
48 import org.opendaylight.controller.md.sal.dom.spi.DefaultDOMRpcResult;
49 import org.opendaylight.netconf.sal.restconf.impl.BrokerFacade;
50 import org.opendaylight.netconf.sal.restconf.impl.ControllerContext;
51 import org.opendaylight.netconf.sal.restconf.impl.JSONRestconfServiceImpl;
52 import org.opendaylight.netconf.sal.restconf.impl.PutResult;
53 import org.opendaylight.netconf.sal.restconf.impl.RestconfImpl;
54 import org.opendaylight.restconf.common.patch.PatchContext;
55 import org.opendaylight.restconf.common.patch.PatchStatusContext;
56 import org.opendaylight.restconf.common.patch.PatchStatusEntity;
57 import org.opendaylight.yangtools.yang.common.OperationFailedException;
58 import org.opendaylight.yangtools.yang.common.QName;
59 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
60 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
61 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifierWithPredicates;
62 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
63 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
64 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
65 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerNode;
66 import org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode;
67 import org.opendaylight.yangtools.yang.data.api.schema.MapNode;
68 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
69 import org.opendaylight.yangtools.yang.data.impl.schema.ImmutableNodes;
70 import org.opendaylight.yangtools.yang.data.impl.schema.builder.impl.ImmutableContainerNodeBuilder;
71 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
72 import org.opendaylight.yangtools.yang.model.api.SchemaPath;
73 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
74
75 /**
76  * Unit tests for JSONRestconfServiceImpl.
77  *
78  * @author Thomas Pantelis
79  */
80 @Deprecated
81 public class JSONRestconfServiceImplTest {
82     static final String IETF_INTERFACES_NS = "urn:ietf:params:xml:ns:yang:ietf-interfaces";
83     static final String IETF_INTERFACES_VERSION = "2013-07-04";
84     static final QName INTERFACES_QNAME = QName.create(IETF_INTERFACES_NS, IETF_INTERFACES_VERSION, "interfaces");
85     static final QName INTERFACE_QNAME = QName.create(IETF_INTERFACES_NS, IETF_INTERFACES_VERSION, "interface");
86     static final QName NAME_QNAME = QName.create(IETF_INTERFACES_NS, IETF_INTERFACES_VERSION, "name");
87     static final QName TYPE_QNAME = QName.create(IETF_INTERFACES_NS, IETF_INTERFACES_VERSION, "type");
88     static final QName ENABLED_QNAME = QName.create(IETF_INTERFACES_NS, IETF_INTERFACES_VERSION, "enabled");
89     static final QName DESC_QNAME = QName.create(IETF_INTERFACES_NS, IETF_INTERFACES_VERSION, "description");
90
91     static final String TEST_MODULE_NS = "test:module";
92     static final String TEST_MODULE_VERSION = "2014-01-09";
93     static final QName TEST_CONT_QNAME = QName.create(TEST_MODULE_NS, TEST_MODULE_VERSION, "cont");
94     static final QName TEST_CONT1_QNAME = QName.create(TEST_MODULE_NS, TEST_MODULE_VERSION, "cont1");
95     static final QName TEST_LF11_QNAME = QName.create(TEST_MODULE_NS, TEST_MODULE_VERSION, "lf11");
96     static final QName TEST_LF12_QNAME = QName.create(TEST_MODULE_NS, TEST_MODULE_VERSION, "lf12");
97
98     static final String TOASTER_MODULE_NS = "http://netconfcentral.org/ns/toaster";
99     static final String TOASTER_MODULE_VERSION = "2009-11-20";
100     static final QName TOASTER_DONENESS_QNAME =
101             QName.create(TOASTER_MODULE_NS, TOASTER_MODULE_VERSION, "toasterDoneness");
102     static final QName TOASTER_TYPE_QNAME = QName.create(TOASTER_MODULE_NS, TOASTER_MODULE_VERSION, "toasterToastType");
103     static final QName WHEAT_BREAD_QNAME = QName.create(TOASTER_MODULE_NS, TOASTER_MODULE_VERSION, "wheat-bread");
104     static final QName MAKE_TOAST_QNAME = QName.create(TOASTER_MODULE_NS, TOASTER_MODULE_VERSION, "make-toast");
105     static final QName CANCEL_TOAST_QNAME = QName.create(TOASTER_MODULE_NS, TOASTER_MODULE_VERSION, "cancel-toast");
106     static final QName TEST_OUTPUT_QNAME = QName.create(TOASTER_MODULE_NS, TOASTER_MODULE_VERSION, "testOutput");
107     static final QName TEXT_OUT_QNAME = QName.create(TOASTER_MODULE_NS, TOASTER_MODULE_VERSION, "textOut");
108
109     private static BrokerFacade brokerFacade;
110
111     private final JSONRestconfServiceImpl service = new JSONRestconfServiceImpl();
112
113     @BeforeClass
114     public static void init() throws IOException, ReactorException {
115         ControllerContext.getInstance().setSchemas(TestUtils.loadSchemaContext("/full-versions/yangs"));
116         brokerFacade = mock(BrokerFacade.class);
117         RestconfImpl.getInstance().setBroker(brokerFacade);
118         RestconfImpl.getInstance().setControllerContext(ControllerContext.getInstance());
119     }
120
121     @Before
122     public void setup() {
123         reset(brokerFacade);
124     }
125
126     private static String loadData(final String path) throws IOException {
127         return Resources.asCharSource(JSONRestconfServiceImplTest.class.getResource(path),
128                 StandardCharsets.UTF_8).read();
129     }
130
131     @SuppressWarnings("rawtypes")
132     @Test
133     public void testPut() throws Exception {
134         final PutResult result = mock(PutResult.class);
135         when(brokerFacade.commitConfigurationDataPut(notNull(SchemaContext.class),
136                 notNull(YangInstanceIdentifier.class), notNull(NormalizedNode.class), Mockito.anyString(),
137                 Mockito.anyString())).thenReturn(result);
138         when(result.getFutureOfPutData())
139                 .thenReturn(Futures.immediateCheckedFuture(null));
140         when(result.getStatus()).thenReturn(Status.OK);
141         final String uriPath = "ietf-interfaces:interfaces/interface/eth0";
142         final String payload = loadData("/parts/ietf-interfaces_interfaces.json");
143         this.service.put(uriPath, payload);
144
145         final ArgumentCaptor<YangInstanceIdentifier> capturedPath =
146                 ArgumentCaptor.forClass(YangInstanceIdentifier.class);
147         final ArgumentCaptor<NormalizedNode> capturedNode = ArgumentCaptor.forClass(NormalizedNode.class);
148         verify(brokerFacade).commitConfigurationDataPut(notNull(SchemaContext.class), capturedPath.capture(),
149                 capturedNode.capture(), Mockito.anyString(), Mockito.anyString());
150
151         verifyPath(capturedPath.getValue(), INTERFACES_QNAME, INTERFACE_QNAME,
152                 new Object[]{INTERFACE_QNAME, NAME_QNAME, "eth0"});
153
154         assertTrue("Expected MapEntryNode. Actual " + capturedNode.getValue().getClass(),
155                 capturedNode.getValue() instanceof MapEntryNode);
156         final MapEntryNode actualNode = (MapEntryNode) capturedNode.getValue();
157         assertEquals("MapEntryNode node type", INTERFACE_QNAME, actualNode.getNodeType());
158         verifyLeafNode(actualNode, NAME_QNAME, "eth0");
159         verifyLeafNode(actualNode, TYPE_QNAME, "ethernetCsmacd");
160         verifyLeafNode(actualNode, ENABLED_QNAME, Boolean.FALSE);
161         verifyLeafNode(actualNode, DESC_QNAME, "some interface");
162     }
163
164     @SuppressWarnings("rawtypes")
165     @Test
166     public void testPutBehindMountPoint() throws Exception {
167         final DOMMountPoint mockMountPoint = setupTestMountPoint();
168         final PutResult result = mock(PutResult.class);
169         when(brokerFacade.commitMountPointDataPut(notNull(DOMMountPoint.class),
170                 notNull(YangInstanceIdentifier.class), notNull(NormalizedNode.class), Mockito.anyString(),
171                 Mockito.anyString())).thenReturn(result);
172         when(result.getFutureOfPutData()).thenReturn(Futures.immediateCheckedFuture(null));
173         when(result.getStatus()).thenReturn(Status.OK);
174         final String uriPath = "ietf-interfaces:interfaces/yang-ext:mount/test-module:cont/cont1";
175         final String payload = loadData("/full-versions/testCont1Data.json");
176
177         this.service.put(uriPath, payload);
178
179         final ArgumentCaptor<YangInstanceIdentifier> capturedPath =
180                 ArgumentCaptor.forClass(YangInstanceIdentifier.class);
181         final ArgumentCaptor<NormalizedNode> capturedNode = ArgumentCaptor.forClass(NormalizedNode.class);
182         verify(brokerFacade).commitMountPointDataPut(same(mockMountPoint), capturedPath.capture(),
183                 capturedNode.capture(), Mockito.anyString(), Mockito.anyString());
184
185         verifyPath(capturedPath.getValue(), TEST_CONT_QNAME, TEST_CONT1_QNAME);
186
187         assertTrue("Expected ContainerNode", capturedNode.getValue() instanceof ContainerNode);
188         final ContainerNode actualNode = (ContainerNode) capturedNode.getValue();
189         assertEquals("ContainerNode node type", TEST_CONT1_QNAME, actualNode.getNodeType());
190         verifyLeafNode(actualNode, TEST_LF11_QNAME, "lf11 data");
191         verifyLeafNode(actualNode, TEST_LF12_QNAME, "lf12 data");
192     }
193
194     @Test(expected = OperationFailedException.class)
195     @SuppressWarnings("checkstyle:IllegalThrows")
196     public void testPutFailure() throws Throwable {
197         final PutResult result = mock(PutResult.class);
198
199         when(result.getFutureOfPutData())
200                 .thenReturn(Futures.immediateFailedCheckedFuture(new TransactionCommitFailedException("mock")));
201         when(result.getStatus()).thenReturn(Status.OK);
202         when(brokerFacade.commitConfigurationDataPut(notNull(SchemaContext.class),
203                 notNull(YangInstanceIdentifier.class), notNull(NormalizedNode.class), Mockito.anyString(),
204                 Mockito.anyString())).thenReturn(result);
205
206         final String uriPath = "ietf-interfaces:interfaces/interface/eth0";
207         final String payload = loadData("/parts/ietf-interfaces_interfaces.json");
208
209         this.service.put(uriPath, payload);
210     }
211
212     @SuppressWarnings("rawtypes")
213     @Test
214     public void testPost() throws Exception {
215         doReturn(Futures.immediateCheckedFuture(null)).when(brokerFacade).commitConfigurationDataPost(
216                 any(SchemaContext.class), any(YangInstanceIdentifier.class), any(NormalizedNode.class),
217                 Mockito.anyString(), Mockito.anyString());
218
219         final String uriPath = null;
220         final String payload = loadData("/parts/ietf-interfaces_interfaces_absolute_path.json");
221
222         this.service.post(uriPath, payload);
223
224         final ArgumentCaptor<YangInstanceIdentifier> capturedPath =
225                 ArgumentCaptor.forClass(YangInstanceIdentifier.class);
226         final ArgumentCaptor<NormalizedNode> capturedNode = ArgumentCaptor.forClass(NormalizedNode.class);
227         verify(brokerFacade).commitConfigurationDataPost(notNull(SchemaContext.class), capturedPath.capture(),
228                 capturedNode.capture(), Mockito.anyString(), Mockito.anyString());
229
230         verifyPath(capturedPath.getValue(), INTERFACES_QNAME);
231
232         assertTrue("Expected ContainerNode", capturedNode.getValue() instanceof ContainerNode);
233         final ContainerNode actualNode = (ContainerNode) capturedNode.getValue();
234         assertEquals("ContainerNode node type", INTERFACES_QNAME, actualNode.getNodeType());
235
236         final Optional<DataContainerChild<?, ?>> mapChild = actualNode.getChild(new NodeIdentifier(INTERFACE_QNAME));
237         assertEquals(INTERFACE_QNAME.toString() + " present", true, mapChild.isPresent());
238         assertTrue("Expected MapNode. Actual " + mapChild.get().getClass(), mapChild.get() instanceof MapNode);
239         final MapNode mapNode = (MapNode)mapChild.get();
240
241         final NodeIdentifierWithPredicates entryNodeID = new NodeIdentifierWithPredicates(
242                 INTERFACE_QNAME, NAME_QNAME, "eth0");
243         final Optional<MapEntryNode> entryChild = mapNode.getChild(entryNodeID);
244         assertEquals(entryNodeID.toString() + " present", true, entryChild.isPresent());
245         final MapEntryNode entryNode = entryChild.get();
246         verifyLeafNode(entryNode, NAME_QNAME, "eth0");
247         verifyLeafNode(entryNode, TYPE_QNAME, "ethernetCsmacd");
248         verifyLeafNode(entryNode, ENABLED_QNAME, Boolean.FALSE);
249         verifyLeafNode(entryNode, DESC_QNAME, "some interface");
250     }
251
252     @SuppressWarnings("rawtypes")
253     @Test
254     public void testPostBehindMountPoint() throws Exception {
255         final DOMMountPoint mockMountPoint = setupTestMountPoint();
256         doReturn(Futures.immediateCheckedFuture(null)).when(brokerFacade).commitConfigurationDataPost(
257                 notNull(DOMMountPoint.class), notNull(YangInstanceIdentifier.class), notNull(NormalizedNode.class),
258                 Mockito.anyString(), Mockito.anyString());
259
260         final String uriPath = "ietf-interfaces:interfaces/yang-ext:mount/test-module:cont";
261         final String payload = loadData("/full-versions/testCont1Data.json");
262
263         this.service.post(uriPath, payload);
264
265         final ArgumentCaptor<YangInstanceIdentifier> capturedPath =
266                 ArgumentCaptor.forClass(YangInstanceIdentifier.class);
267         final ArgumentCaptor<NormalizedNode> capturedNode = ArgumentCaptor.forClass(NormalizedNode.class);
268         verify(brokerFacade).commitConfigurationDataPost(same(mockMountPoint), capturedPath.capture(),
269                 capturedNode.capture(), Mockito.anyString(), Mockito.anyString());
270
271         verifyPath(capturedPath.getValue(), TEST_CONT_QNAME, TEST_CONT1_QNAME);
272
273         assertTrue("Expected ContainerNode", capturedNode.getValue() instanceof ContainerNode);
274         final ContainerNode actualNode = (ContainerNode) capturedNode.getValue();
275         assertEquals("ContainerNode node type", TEST_CONT1_QNAME, actualNode.getNodeType());
276         verifyLeafNode(actualNode, TEST_LF11_QNAME, "lf11 data");
277         verifyLeafNode(actualNode, TEST_LF12_QNAME, "lf12 data");
278     }
279
280     @Test(expected = TransactionCommitFailedException.class)
281     @SuppressWarnings("checkstyle:IllegalThrows")
282     public void testPostFailure() throws Throwable {
283         doReturn(Futures.immediateFailedCheckedFuture(new TransactionCommitFailedException("mock"))).when(brokerFacade)
284                 .commitConfigurationDataPost(any(SchemaContext.class), any(YangInstanceIdentifier.class),
285                         any(NormalizedNode.class), Mockito.anyString(), Mockito.anyString());
286
287         final String uriPath = null;
288         final String payload = loadData("/parts/ietf-interfaces_interfaces_absolute_path.json");
289
290         try {
291             this.service.post(uriPath, payload);
292         } catch (final OperationFailedException e) {
293             assertNotNull(e.getCause());
294             throw e.getCause();
295         }
296     }
297
298     @SuppressWarnings("rawtypes")
299     @Test
300     public void testPatch() throws Exception {
301         final PatchStatusContext result = mock(PatchStatusContext.class);
302         when(brokerFacade.patchConfigurationDataWithinTransaction(notNull(PatchContext.class)))
303             .thenReturn(result);
304
305         List<PatchStatusEntity> patchSTatus = new ArrayList<>();
306
307         PatchStatusEntity entity = new PatchStatusEntity("edit1", true, null);
308
309         patchSTatus.add(entity);
310
311         when(result.getEditCollection())
312                 .thenReturn(patchSTatus);
313         when(result.getGlobalErrors()).thenReturn(new ArrayList<>());
314         when(result.getPatchId()).thenReturn("1");
315         final String uriPath = "ietf-interfaces:interfaces/interface/eth0";
316         final String payload = loadData("/parts/ietf-interfaces_interfaces_patch.json");
317         final Optional<String> patchResult = this.service.patch(uriPath, payload);
318
319         assertTrue(patchResult.get().contains("\"ok\":[null]"));
320     }
321
322     @SuppressWarnings("rawtypes")
323     @Test
324     public void testPatchBehindMountPoint() throws Exception {
325         final DOMMountPoint mockMountPoint = setupTestMountPoint();
326         final PatchStatusContext result = mock(PatchStatusContext.class);
327         when(brokerFacade.patchConfigurationDataWithinTransaction(notNull(PatchContext.class)))
328             .thenReturn(result);
329
330         List<PatchStatusEntity> patchSTatus = new ArrayList<>();
331
332         PatchStatusEntity entity = new PatchStatusEntity("edit1", true, null);
333
334         patchSTatus.add(entity);
335
336         when(result.getEditCollection())
337                 .thenReturn(patchSTatus);
338         when(result.getGlobalErrors()).thenReturn(new ArrayList<>());
339         when(result.getPatchId()).thenReturn("1");
340
341         final String uriPath = "ietf-interfaces:interfaces/yang-ext:mount/test-module:cont/cont1";
342         final String payload = loadData("/full-versions/testCont1DataPatch.json");
343
344         final Optional<String> patchResult = this.service.patch(uriPath, payload);
345
346         assertTrue(patchResult.get().contains("\"ok\":[null]"));
347     }
348
349     @Test(expected = OperationFailedException.class)
350     @SuppressWarnings("checkstyle:IllegalThrows")
351     public void testPatchFailure() throws Throwable {
352         final PatchStatusContext result = mock(PatchStatusContext.class);
353         when(brokerFacade.patchConfigurationDataWithinTransaction(notNull(PatchContext.class)))
354             .thenThrow(new TransactionCommitFailedException("Transaction failed"));
355
356         final String uriPath = "ietf-interfaces:interfaces/interface/eth0";
357         final String payload = loadData("/parts/ietf-interfaces_interfaces_patch.json");
358
359         final Optional<String> patchResult = this.service.patch(uriPath, payload);
360
361         assertTrue("Patch output is not null", patchResult.isPresent());
362         String patch = patchResult.get();
363         assertTrue(patch.contains("TransactionCommitFailedException"));
364     }
365
366     @Test
367     public void testDelete() throws Exception {
368         doReturn(Futures.immediateCheckedFuture(null)).when(brokerFacade)
369                 .commitConfigurationDataDelete(notNull(YangInstanceIdentifier.class));
370
371         final String uriPath = "ietf-interfaces:interfaces/interface/eth0";
372
373         this.service.delete(uriPath);
374
375         final ArgumentCaptor<YangInstanceIdentifier> capturedPath =
376                 ArgumentCaptor.forClass(YangInstanceIdentifier.class);
377         verify(brokerFacade).commitConfigurationDataDelete(capturedPath.capture());
378
379         verifyPath(capturedPath.getValue(), INTERFACES_QNAME, INTERFACE_QNAME,
380                 new Object[]{INTERFACE_QNAME, NAME_QNAME, "eth0"});
381     }
382
383     @Test(expected = OperationFailedException.class)
384     public void testDeleteFailure() throws Exception {
385         final String invalidUriPath = "ietf-interfaces:interfaces/invalid";
386
387         this.service.delete(invalidUriPath);
388     }
389
390     @Test
391     public void testGetConfig() throws Exception {
392         testGet(LogicalDatastoreType.CONFIGURATION);
393     }
394
395     @Test
396     public void testGetOperational() throws Exception {
397         testGet(LogicalDatastoreType.OPERATIONAL);
398     }
399
400     @Test
401     public void testGetWithNoData() throws OperationFailedException {
402         doReturn(null).when(brokerFacade).readConfigurationData(notNull(YangInstanceIdentifier.class),
403                 Mockito.anyString());
404         final String uriPath = "ietf-interfaces:interfaces";
405         this.service.get(uriPath, LogicalDatastoreType.CONFIGURATION);
406     }
407
408     @Test(expected = OperationFailedException.class)
409     public void testGetFailure() throws Exception {
410         final String invalidUriPath = "/ietf-interfaces:interfaces/invalid";
411         this.service.get(invalidUriPath, LogicalDatastoreType.CONFIGURATION);
412     }
413
414     @SuppressWarnings("rawtypes")
415     @Test
416     public void testInvokeRpcWithInput() throws Exception {
417         final SchemaPath path = SchemaPath.create(true, MAKE_TOAST_QNAME);
418
419         final DOMRpcResult expResult = new DefaultDOMRpcResult((NormalizedNode<?, ?>)null);
420         doReturn(Futures.immediateCheckedFuture(expResult)).when(brokerFacade).invokeRpc(eq(path),
421                 any(NormalizedNode.class));
422
423         final String uriPath = "toaster:make-toast";
424         final String input = loadData("/full-versions/make-toast-rpc-input.json");
425
426         final Optional<String> output = this.service.invokeRpc(uriPath, Optional.of(input));
427
428         assertEquals("Output present", false, output.isPresent());
429
430         final ArgumentCaptor<NormalizedNode> capturedNode = ArgumentCaptor.forClass(NormalizedNode.class);
431         verify(brokerFacade).invokeRpc(eq(path), capturedNode.capture());
432
433         assertTrue("Expected ContainerNode. Actual " + capturedNode.getValue().getClass(),
434                 capturedNode.getValue() instanceof ContainerNode);
435         final ContainerNode actualNode = (ContainerNode) capturedNode.getValue();
436         verifyLeafNode(actualNode, TOASTER_DONENESS_QNAME, Long.valueOf(10));
437         verifyLeafNode(actualNode, TOASTER_TYPE_QNAME, WHEAT_BREAD_QNAME);
438     }
439
440     @Test
441     public void testInvokeRpcWithNoInput() throws Exception {
442         final SchemaPath path = SchemaPath.create(true, CANCEL_TOAST_QNAME);
443
444         final DOMRpcResult expResult = new DefaultDOMRpcResult((NormalizedNode<?, ?>)null);
445         doReturn(Futures.immediateCheckedFuture(expResult)).when(brokerFacade).invokeRpc(any(SchemaPath.class),
446                 any(NormalizedNode.class));
447
448         final String uriPath = "toaster:cancel-toast";
449
450         final Optional<String> output = this.service.invokeRpc(uriPath, Optional.<String>absent());
451
452         assertEquals("Output present", false, output.isPresent());
453
454         verify(brokerFacade).invokeRpc(eq(path), isNull(NormalizedNode.class));
455     }
456
457     @Test
458     public void testInvokeRpcWithOutput() throws Exception {
459         final SchemaPath path = SchemaPath.create(true, TEST_OUTPUT_QNAME);
460
461         final NormalizedNode<?, ?> outputNode = ImmutableContainerNodeBuilder.create()
462                 .withNodeIdentifier(new YangInstanceIdentifier.NodeIdentifier(TEST_OUTPUT_QNAME))
463                 .withChild(ImmutableNodes.leafNode(TEXT_OUT_QNAME, "foo")).build();
464         final DOMRpcResult expResult = new DefaultDOMRpcResult(outputNode);
465         doReturn(Futures.immediateCheckedFuture(expResult)).when(brokerFacade).invokeRpc(any(SchemaPath.class),
466                 any(NormalizedNode.class));
467
468         final String uriPath = "toaster:testOutput";
469
470         final Optional<String> output = this.service.invokeRpc(uriPath, Optional.<String>absent());
471
472         assertEquals("Output present", true, output.isPresent());
473         assertNotNull("Returned null response", output.get());
474         assertThat("Missing \"textOut\"", output.get(), containsString("\"textOut\":\"foo\""));
475
476         verify(brokerFacade).invokeRpc(eq(path), isNull(NormalizedNode.class));
477     }
478
479     @Test(expected = OperationFailedException.class)
480     public void testInvokeRpcFailure() throws Exception {
481         final DOMRpcException exception = new DOMRpcImplementationNotAvailableException("testExeption");
482         doReturn(Futures.immediateFailedCheckedFuture(exception)).when(brokerFacade).invokeRpc(any(SchemaPath.class),
483                 any(NormalizedNode.class));
484
485         final String uriPath = "toaster:cancel-toast";
486
487         this.service.invokeRpc(uriPath, Optional.<String>absent());
488     }
489
490     void testGet(final LogicalDatastoreType datastoreType) throws OperationFailedException {
491         final MapEntryNode entryNode = ImmutableNodes.mapEntryBuilder(INTERFACE_QNAME, NAME_QNAME, "eth0")
492                 .withChild(ImmutableNodes.leafNode(NAME_QNAME, "eth0"))
493                 .withChild(ImmutableNodes.leafNode(TYPE_QNAME, "ethernetCsmacd"))
494                 .withChild(ImmutableNodes.leafNode(ENABLED_QNAME, Boolean.TRUE))
495                 .withChild(ImmutableNodes.leafNode(DESC_QNAME, "eth interface"))
496                 .build();
497
498         if (datastoreType == LogicalDatastoreType.CONFIGURATION) {
499             doReturn(entryNode).when(brokerFacade).readConfigurationData(notNull(YangInstanceIdentifier.class),
500                     Mockito.anyString());
501         } else {
502             doReturn(entryNode).when(brokerFacade).readOperationalData(notNull(YangInstanceIdentifier.class));
503         }
504
505         final String uriPath = "/ietf-interfaces:interfaces/interface/eth0";
506
507         final Optional<String> optionalResp = this.service.get(uriPath, datastoreType);
508         assertEquals("Response present", true, optionalResp.isPresent());
509         final String jsonResp = optionalResp.get();
510
511         assertNotNull("Returned null response", jsonResp);
512         assertThat("Missing \"name\"", jsonResp, containsString("\"name\":\"eth0\""));
513         assertThat("Missing \"type\"", jsonResp, containsString("\"type\":\"ethernetCsmacd\""));
514         assertThat("Missing \"enabled\"", jsonResp, containsString("\"enabled\":true"));
515         assertThat("Missing \"description\"", jsonResp, containsString("\"description\":\"eth interface\""));
516
517         final ArgumentCaptor<YangInstanceIdentifier> capturedPath =
518                 ArgumentCaptor.forClass(YangInstanceIdentifier.class);
519         if (datastoreType == LogicalDatastoreType.CONFIGURATION) {
520             verify(brokerFacade).readConfigurationData(capturedPath.capture(), Mockito.anyString());
521         } else {
522             verify(brokerFacade).readOperationalData(capturedPath.capture());
523         }
524
525         verifyPath(capturedPath.getValue(), INTERFACES_QNAME, INTERFACE_QNAME,
526                 new Object[]{INTERFACE_QNAME, NAME_QNAME, "eth0"});
527     }
528
529     DOMMountPoint setupTestMountPoint() throws FileNotFoundException, ReactorException {
530         final SchemaContext schemaContextTestModule = TestUtils.loadSchemaContext("/full-versions/test-module");
531         final DOMMountPoint mockMountPoint = mock(DOMMountPoint.class);
532         doReturn(schemaContextTestModule).when(mockMountPoint).getSchemaContext();
533
534         final DOMMountPointService mockMountService = mock(DOMMountPointService.class);
535         doReturn(Optional.of(mockMountPoint))
536                 .when(mockMountService).getMountPoint(notNull(YangInstanceIdentifier.class));
537
538         ControllerContext.getInstance().setMountService(mockMountService);
539         return mockMountPoint;
540     }
541
542     void verifyLeafNode(final DataContainerNode<?> parent, final QName leafType, final Object leafValue) {
543         final Optional<DataContainerChild<?, ?>> leafChild = parent.getChild(new NodeIdentifier(leafType));
544         assertEquals(leafType.toString() + " present", true, leafChild.isPresent());
545         assertEquals(leafType.toString() + " value", leafValue, leafChild.get().getValue());
546     }
547
548     void verifyPath(final YangInstanceIdentifier path, final Object... expArgs) {
549         final List<PathArgument> pathArgs = path.getPathArguments();
550         assertEquals("Arg count for actual path " + path, expArgs.length, pathArgs.size());
551         int index = 0;
552         for (final PathArgument actual: pathArgs) {
553             QName expNodeType;
554             if (expArgs[index] instanceof Object[]) {
555                 final Object[] listEntry = (Object[]) expArgs[index];
556                 expNodeType = (QName) listEntry[0];
557
558                 assertTrue(actual instanceof NodeIdentifierWithPredicates);
559                 final Map<QName, Object> keyValues = ((NodeIdentifierWithPredicates)actual).getKeyValues();
560                 assertEquals(String.format("Path arg %d keyValues size", index + 1), 1, keyValues.size());
561                 final QName expKey = (QName) listEntry[1];
562                 assertEquals(String.format("Path arg %d keyValue for %s", index + 1, expKey), listEntry[2],
563                         keyValues.get(expKey));
564             } else {
565                 expNodeType = (QName) expArgs[index];
566             }
567
568             assertEquals(String.format("Path arg %d node type", index + 1), expNodeType, actual.getNodeType());
569             index++;
570         }
571
572     }
573 }