Do not reference individual builders
[netconf.git] / netconf / mdsal-netconf-connector / src / test / java / org / opendaylight / netconf / mdsal / connector / ops / RuntimeRpcTest.java
1 /*
2  * Copyright (c) 2015 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.netconf.mdsal.connector.ops;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertThrows;
12 import static org.junit.Assert.assertTrue;
13 import static org.mockito.ArgumentMatchers.any;
14 import static org.mockito.Mockito.doAnswer;
15 import static org.mockito.Mockito.doNothing;
16 import static org.opendaylight.yangtools.util.concurrent.FluentFutures.immediateFailedFluentFuture;
17 import static org.opendaylight.yangtools.util.concurrent.FluentFutures.immediateFluentFuture;
18
19 import com.google.common.base.Preconditions;
20 import com.google.common.io.ByteSource;
21 import com.google.common.util.concurrent.FluentFuture;
22 import java.io.IOException;
23 import java.util.Collection;
24 import java.util.List;
25 import javax.xml.parsers.ParserConfigurationException;
26 import org.custommonkey.xmlunit.DetailedDiff;
27 import org.custommonkey.xmlunit.Diff;
28 import org.custommonkey.xmlunit.XMLUnit;
29 import org.custommonkey.xmlunit.examples.RecursiveElementNameAndTextQualifier;
30 import org.junit.After;
31 import org.junit.AfterClass;
32 import org.junit.Before;
33 import org.junit.BeforeClass;
34 import org.junit.Test;
35 import org.junit.runner.RunWith;
36 import org.mockito.Mock;
37 import org.mockito.junit.MockitoJUnitRunner;
38 import org.opendaylight.mdsal.dom.api.DOMRpcAvailabilityListener;
39 import org.opendaylight.mdsal.dom.api.DOMRpcException;
40 import org.opendaylight.mdsal.dom.api.DOMRpcResult;
41 import org.opendaylight.mdsal.dom.api.DOMRpcService;
42 import org.opendaylight.mdsal.dom.api.DOMSchemaService;
43 import org.opendaylight.mdsal.dom.spi.DefaultDOMRpcResult;
44 import org.opendaylight.netconf.api.DocumentedException;
45 import org.opendaylight.netconf.api.xml.XmlUtil;
46 import org.opendaylight.netconf.mapping.api.HandlingPriority;
47 import org.opendaylight.netconf.mapping.api.NetconfOperationChainedExecution;
48 import org.opendaylight.netconf.mdsal.connector.CurrentSchemaContext;
49 import org.opendaylight.netconf.util.test.XmlFileLoader;
50 import org.opendaylight.yangtools.concepts.ListenerRegistration;
51 import org.opendaylight.yangtools.concepts.NoOpListenerRegistration;
52 import org.opendaylight.yangtools.yang.common.ErrorSeverity;
53 import org.opendaylight.yangtools.yang.common.ErrorTag;
54 import org.opendaylight.yangtools.yang.common.ErrorType;
55 import org.opendaylight.yangtools.yang.common.QName;
56 import org.opendaylight.yangtools.yang.common.XMLNamespace;
57 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
58 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
59 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
60 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode;
61 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
62 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
63 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContextListener;
64 import org.opendaylight.yangtools.yang.model.api.Module;
65 import org.opendaylight.yangtools.yang.model.api.RpcDefinition;
66 import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
67 import org.opendaylight.yangtools.yang.model.repo.api.YangTextSchemaSource;
68 import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceProvider;
69 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
70 import org.slf4j.Logger;
71 import org.slf4j.LoggerFactory;
72 import org.w3c.dom.Document;
73 import org.xml.sax.SAXException;
74
75 @RunWith(MockitoJUnitRunner.StrictStubs.class)
76 public class RuntimeRpcTest {
77     private static final Logger LOG = LoggerFactory.getLogger(RuntimeRpcTest.class);
78     private static final String SESSION_ID_FOR_REPORTING = "netconf-test-session1";
79     private static final Document RPC_REPLY_OK = getReplyOk();
80
81     private static Document getReplyOk() {
82         try {
83             return XmlFileLoader.xmlFileToDocument("messages/mapping/rpcs/runtimerpc-ok-reply.xml");
84         } catch (final IOException | SAXException | ParserConfigurationException e) {
85             LOG.debug("unable to load rpc reply ok.", e);
86             return XmlUtil.newDocument();
87         }
88     }
89
90     private static final DOMRpcService RPC_SERVICE_VOID_INVOKER = new DOMRpcService() {
91         @Override
92         public FluentFuture<DOMRpcResult> invokeRpc(final QName type, final NormalizedNode input) {
93             return immediateFluentFuture(new DefaultDOMRpcResult(null, List.of()));
94         }
95
96         @Override
97         public <T extends DOMRpcAvailabilityListener> ListenerRegistration<T> registerRpcListener(final T listener) {
98             return NoOpListenerRegistration.of(listener);
99         }
100     };
101
102     private static final DOMRpcService RPC_SERVICE_FAILED_INVOCATION = new DOMRpcService() {
103         @Override
104         public FluentFuture<DOMRpcResult> invokeRpc(final QName type, final NormalizedNode input) {
105             return immediateFailedFluentFuture(new DOMRpcException("rpc invocation not implemented yet") {
106                 private static final long serialVersionUID = 1L;
107             });
108         }
109
110         @Override
111         public <T extends DOMRpcAvailabilityListener> ListenerRegistration<T> registerRpcListener(final T listener) {
112             return NoOpListenerRegistration.of(listener);
113         }
114     };
115
116     private final DOMRpcService rpcServiceSuccessfulInvocation = new DOMRpcService() {
117         @Override
118         public FluentFuture<DOMRpcResult> invokeRpc(final QName type, final NormalizedNode input) {
119             final Collection<DataContainerChild> children = ((ContainerNode) input).body();
120             final Module module = SCHEMA_CONTEXT.findModules(type.getNamespace()).stream()
121                 .findFirst().orElse(null);
122             final RpcDefinition rpcDefinition = getRpcDefinitionFromModule(module, module.getNamespace(),
123                 type.getLocalName());
124             final ContainerNode node = Builders.containerBuilder()
125                     .withNodeIdentifier(new NodeIdentifier(rpcDefinition.getOutput().getQName()))
126                     .withValue(children)
127                     .build();
128
129             return immediateFluentFuture(new DefaultDOMRpcResult(node));
130         }
131
132         @Override
133         public <T extends DOMRpcAvailabilityListener> ListenerRegistration<T> registerRpcListener(final T lsnr) {
134             return NoOpListenerRegistration.of(lsnr);
135         }
136     };
137
138     private static EffectiveModelContext SCHEMA_CONTEXT = null;
139     private CurrentSchemaContext currentSchemaContext = null;
140
141     @Mock
142     private DOMSchemaService schemaService;
143     @Mock
144     private EffectiveModelContextListener listener;
145     @Mock
146     private ListenerRegistration<?> registration;
147     @Mock
148     private SchemaSourceProvider<YangTextSchemaSource> sourceProvider;
149
150     @BeforeClass
151     public static void beforeClass() {
152         SCHEMA_CONTEXT = YangParserTestUtils.parseYangResource("/yang/mdsal-netconf-rpc-test.yang");
153     }
154
155     @AfterClass
156     public static void afterClass() {
157         SCHEMA_CONTEXT = null;
158     }
159
160     @Before
161     public void setUp() throws Exception {
162         doNothing().when(registration).close();
163         doAnswer(invocationOnMock -> {
164             ((EffectiveModelContextListener) invocationOnMock.getArguments()[0]).onModelContextUpdated(SCHEMA_CONTEXT);
165             return registration;
166         }).when(schemaService).registerSchemaContextListener(any(EffectiveModelContextListener.class));
167
168         XMLUnit.setIgnoreWhitespace(true);
169         XMLUnit.setIgnoreAttributeOrder(true);
170
171         doAnswer(invocationOnMock -> {
172             final SourceIdentifier sId = (SourceIdentifier) invocationOnMock.getArguments()[0];
173             final YangTextSchemaSource yangTextSchemaSource =
174                     YangTextSchemaSource.delegateForByteSource(sId, ByteSource.wrap("module test".getBytes()));
175             return immediateFluentFuture(yangTextSchemaSource);
176         }).when(sourceProvider).getSource(any(SourceIdentifier.class));
177
178         currentSchemaContext = CurrentSchemaContext.create(schemaService, sourceProvider);
179     }
180
181     @After
182     public void tearDown() {
183         currentSchemaContext.close();
184     }
185
186     @Test
187     public void testVoidOutputRpc() throws Exception {
188         final RuntimeRpc rpc = new RuntimeRpc(SESSION_ID_FOR_REPORTING, currentSchemaContext, RPC_SERVICE_VOID_INVOKER);
189
190         final Document rpcDocument = XmlFileLoader.xmlFileToDocument("messages/mapping/rpcs/rpc-void-output.xml");
191         final HandlingPriority priority = rpc.canHandle(rpcDocument);
192         Preconditions.checkState(priority != HandlingPriority.CANNOT_HANDLE);
193
194         final Document response = rpc.handle(rpcDocument, NetconfOperationChainedExecution.EXECUTION_TERMINATION_POINT);
195
196         verifyResponse(response, RPC_REPLY_OK);
197     }
198
199     @Test
200     public void testSuccesfullNonVoidInvocation() throws Exception {
201         final RuntimeRpc rpc = new RuntimeRpc(
202             SESSION_ID_FOR_REPORTING, currentSchemaContext, rpcServiceSuccessfulInvocation);
203
204         final Document rpcDocument = XmlFileLoader.xmlFileToDocument("messages/mapping/rpcs/rpc-nonvoid.xml");
205         final HandlingPriority priority = rpc.canHandle(rpcDocument);
206         Preconditions.checkState(priority != HandlingPriority.CANNOT_HANDLE);
207
208         final Document response = rpc.handle(rpcDocument, NetconfOperationChainedExecution.EXECUTION_TERMINATION_POINT);
209         verifyResponse(response, XmlFileLoader.xmlFileToDocument("messages/mapping/rpcs/rpc-nonvoid-control.xml"));
210     }
211
212     @Test
213     public void testSuccesfullContainerInvocation() throws Exception {
214         final RuntimeRpc rpc = new RuntimeRpc(
215             SESSION_ID_FOR_REPORTING, currentSchemaContext, rpcServiceSuccessfulInvocation);
216
217         final Document rpcDocument = XmlFileLoader.xmlFileToDocument("messages/mapping/rpcs/rpc-container.xml");
218         final HandlingPriority priority = rpc.canHandle(rpcDocument);
219         Preconditions.checkState(priority != HandlingPriority.CANNOT_HANDLE);
220
221         final Document response = rpc.handle(rpcDocument, NetconfOperationChainedExecution.EXECUTION_TERMINATION_POINT);
222         verifyResponse(response, XmlFileLoader.xmlFileToDocument("messages/mapping/rpcs/rpc-container-control.xml"));
223     }
224
225     @Test
226     public void testFailedInvocation() throws Exception {
227         final RuntimeRpc rpc = new RuntimeRpc(
228                 SESSION_ID_FOR_REPORTING, currentSchemaContext, RPC_SERVICE_FAILED_INVOCATION);
229
230         final Document rpcDocument = XmlFileLoader.xmlFileToDocument("messages/mapping/rpcs/rpc-nonvoid.xml");
231         final HandlingPriority priority = rpc.canHandle(rpcDocument);
232         Preconditions.checkState(priority != HandlingPriority.CANNOT_HANDLE);
233
234         final DocumentedException e = assertThrows(DocumentedException.class,
235                 () -> rpc.handle(rpcDocument, NetconfOperationChainedExecution.EXECUTION_TERMINATION_POINT));
236
237         assertEquals(e.getErrorSeverity(), ErrorSeverity.ERROR);
238         assertEquals(e.getErrorTag(), ErrorTag.OPERATION_FAILED);
239         assertEquals(e.getErrorType(), ErrorType.APPLICATION);
240     }
241
242     @Test
243     public void testVoidInputOutputRpc() throws Exception {
244         final RuntimeRpc rpc = new RuntimeRpc(SESSION_ID_FOR_REPORTING, currentSchemaContext, RPC_SERVICE_VOID_INVOKER);
245
246         final Document rpcDocument = XmlFileLoader.xmlFileToDocument("messages/mapping/rpcs/rpc-void-input-output.xml");
247         final HandlingPriority priority = rpc.canHandle(rpcDocument);
248         Preconditions.checkState(priority != HandlingPriority.CANNOT_HANDLE);
249
250         final Document response = rpc.handle(rpcDocument, NetconfOperationChainedExecution.EXECUTION_TERMINATION_POINT);
251
252         verifyResponse(response, RPC_REPLY_OK);
253     }
254
255     @Test
256     public void testBadNamespaceInRpc() throws Exception {
257         final RuntimeRpc rpc = new RuntimeRpc(SESSION_ID_FOR_REPORTING, currentSchemaContext, RPC_SERVICE_VOID_INVOKER);
258         final Document rpcDocument = XmlFileLoader.xmlFileToDocument("messages/mapping/rpcs/rpc-bad-namespace.xml");
259
260         final DocumentedException e = assertThrows(DocumentedException.class,
261                 () -> rpc.handle(rpcDocument, NetconfOperationChainedExecution.EXECUTION_TERMINATION_POINT));
262
263         assertEquals(e.getErrorSeverity(), ErrorSeverity.ERROR);
264         assertEquals(e.getErrorTag(), ErrorTag.BAD_ELEMENT);
265         assertEquals(e.getErrorType(), ErrorType.APPLICATION);
266     }
267
268     private static void verifyResponse(final Document response, final Document template) {
269         final DetailedDiff dd = new DetailedDiff(new Diff(response, template));
270         dd.overrideElementQualifier(new RecursiveElementNameAndTextQualifier());
271         //we care about order so response has to be identical
272         assertTrue(dd.identical());
273     }
274
275     private static RpcDefinition getRpcDefinitionFromModule(final Module module, final XMLNamespace namespaceURI,
276             final String name) {
277         for (final RpcDefinition rpcDef : module.getRpcs()) {
278             if (rpcDef.getQName().getNamespace().equals(namespaceURI)
279                     && rpcDef.getQName().getLocalName().equals(name)) {
280                 return rpcDef;
281             }
282         }
283
284         return null;
285     }
286 }