Merge "Changed mount point URI decoding in restconf"
[controller.git] / opendaylight / netconf / config-netconf-connector / src / test / java / org / opendaylight / controller / netconf / confignetconfconnector / NetconfMappingTest.java
1 /*
2  * Copyright (c) 2013 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
9 package org.opendaylight.controller.netconf.confignetconfconnector;
10
11 import com.google.common.base.Optional;
12 import com.google.common.base.Preconditions;
13 import com.google.common.collect.Lists;
14 import com.google.common.collect.Maps;
15 import com.google.common.collect.Sets;
16 import org.apache.commons.lang3.StringUtils;
17 import org.junit.Before;
18 import org.junit.Ignore;
19 import org.junit.Test;
20 import org.junit.matchers.JUnitMatchers;
21 import org.mockito.Mock;
22 import org.mockito.MockitoAnnotations;
23 import org.opendaylight.controller.config.api.annotations.AbstractServiceInterface;
24 import org.opendaylight.controller.config.api.annotations.ServiceInterfaceAnnotation;
25 import org.opendaylight.controller.config.manager.impl.AbstractConfigTest;
26 import org.opendaylight.controller.config.manager.impl.factoriesresolver.HardcodedModuleFactoriesResolver;
27 import org.opendaylight.controller.config.util.ConfigTransactionJMXClient;
28 import org.opendaylight.controller.config.yang.store.api.YangStoreSnapshot;
29 import org.opendaylight.controller.config.yang.store.impl.MbeParser;
30 import org.opendaylight.controller.config.yang.test.impl.ComplexDtoBInner;
31 import org.opendaylight.controller.config.yang.test.impl.ComplexList;
32 import org.opendaylight.controller.config.yang.test.impl.Deep;
33 import org.opendaylight.controller.config.yang.test.impl.DepTestImplModuleFactory;
34 import org.opendaylight.controller.config.yang.test.impl.DtoAInner;
35 import org.opendaylight.controller.config.yang.test.impl.DtoAInnerInner;
36 import org.opendaylight.controller.config.yang.test.impl.DtoC;
37 import org.opendaylight.controller.config.yang.test.impl.DtoD;
38 import org.opendaylight.controller.config.yang.test.impl.NetconfTestImplModuleFactory;
39 import org.opendaylight.controller.config.yang.test.impl.NetconfTestImplModuleMXBean;
40 import org.opendaylight.controller.config.yang.test.impl.Peers;
41 import org.opendaylight.controller.config.yangjmxgenerator.ModuleMXBeanEntry;
42 import org.opendaylight.controller.netconf.api.NetconfDocumentedException;
43 import org.opendaylight.controller.netconf.api.NetconfOperationRouter;
44 import org.opendaylight.controller.netconf.confignetconfconnector.operations.Commit;
45 import org.opendaylight.controller.netconf.confignetconfconnector.operations.DiscardChanges;
46 import org.opendaylight.controller.netconf.confignetconfconnector.operations.editconfig.EditConfig;
47 import org.opendaylight.controller.netconf.confignetconfconnector.operations.get.Get;
48 import org.opendaylight.controller.netconf.confignetconfconnector.operations.getconfig.GetConfig;
49 import org.opendaylight.controller.netconf.confignetconfconnector.operations.runtimerpc.RuntimeRpc;
50 import org.opendaylight.controller.netconf.confignetconfconnector.transactions.TransactionProvider;
51 import org.opendaylight.controller.netconf.impl.mapping.operations.DefaultCloseSession;
52 import org.opendaylight.controller.netconf.mapping.api.HandlingPriority;
53 import org.opendaylight.controller.netconf.mapping.api.NetconfOperation;
54 import org.opendaylight.controller.netconf.util.test.XmlFileLoader;
55 import org.opendaylight.controller.netconf.util.xml.XmlElement;
56 import org.opendaylight.controller.netconf.util.xml.XmlNetconfConstants;
57 import org.opendaylight.controller.netconf.util.xml.XmlUtil;
58 import org.slf4j.Logger;
59 import org.slf4j.LoggerFactory;
60 import org.w3c.dom.Document;
61 import org.w3c.dom.Element;
62 import org.w3c.dom.NodeList;
63 import org.xml.sax.SAXException;
64
65 import javax.management.InstanceAlreadyExistsException;
66 import javax.management.InstanceNotFoundException;
67 import javax.management.ObjectName;
68 import javax.xml.parsers.ParserConfigurationException;
69 import java.io.FileNotFoundException;
70 import java.io.IOException;
71 import java.io.InputStream;
72 import java.math.BigInteger;
73 import java.net.URISyntaxException;
74 import java.util.ArrayList;
75 import java.util.Arrays;
76 import java.util.Collection;
77 import java.util.List;
78 import java.util.Map;
79 import java.util.Set;
80
81 import static org.junit.Assert.assertEquals;
82 import static org.junit.Assert.assertThat;
83 import static org.junit.Assert.assertTrue;
84 import static org.junit.Assert.fail;
85 import static org.mockito.Mockito.doNothing;
86 import static org.mockito.Mockito.doReturn;
87 import static org.mockito.Mockito.verify;
88 import static org.mockito.Mockito.verifyNoMoreInteractions;
89
90
91 public class NetconfMappingTest extends AbstractConfigTest {
92     private static final Logger logger = LoggerFactory.getLogger(NetconfMappingTest.class);
93
94     private static final String INSTANCE_NAME = "instance-from-code";
95     private static final String NETCONF_SESSION_ID = "foo";
96     private NetconfTestImplModuleFactory factory;
97     private DepTestImplModuleFactory factory2;
98
99     @Mock
100     YangStoreSnapshot yangStoreSnapshot;
101     @Mock
102     NetconfOperationRouter netconfOperationRouter;
103
104     private TransactionProvider transactionProvider;
105
106     @Before
107     public void setUp() throws Exception {
108         MockitoAnnotations.initMocks(this);
109         doReturn(getMbes()).when(this.yangStoreSnapshot).getModuleMXBeanEntryMap();
110         this.factory = new NetconfTestImplModuleFactory();
111         this.factory2 = new DepTestImplModuleFactory();
112         super.initConfigTransactionManagerImpl(new HardcodedModuleFactoriesResolver(this.factory, this.factory2));
113
114         transactionProvider = new TransactionProvider(this.configRegistryClient, NETCONF_SESSION_ID);
115     }
116
117     private ObjectName createModule(final String instanceName) throws InstanceAlreadyExistsException, InstanceNotFoundException, URISyntaxException {
118         final ConfigTransactionJMXClient transaction = this.configRegistryClient.createTransaction();
119
120         final ObjectName on = transaction.createModule(this.factory.getImplementationName(), instanceName);
121         final NetconfTestImplModuleMXBean mxBean = transaction.newMXBeanProxy(on, NetconfTestImplModuleMXBean.class);
122         setModule(mxBean, transaction, instanceName + "_dep");
123
124         int i = 1;
125         for (Class<? extends AbstractServiceInterface> sInterface : factory.getImplementedServiceIntefaces()) {
126             ServiceInterfaceAnnotation annotation = sInterface.getAnnotation(ServiceInterfaceAnnotation.class);
127             transaction.saveServiceReference(
128                     transaction.getServiceInterfaceName(annotation.namespace(), annotation.localName()), "ref_from_code_to_" + instanceName + "_" + i++,
129                     on);
130
131         }
132         transaction.commit();
133         return on;
134     }
135
136     @Test
137     public void testServicePersistance() throws Exception {
138         createModule(INSTANCE_NAME);
139
140         edit("netconfMessages/editConfig.xml");
141         Element config = getConfigCandidate();
142         assertCorrectServiceNames(config, 6, "ref_test2", "user_to_instance_from_code", "ref_dep_user",
143                 "ref_dep_user_two", "ref_from_code_to_instance-from-code_dep_1",
144                 "ref_from_code_to_instance-from-code_1");
145
146
147         edit("netconfMessages/editConfig_addServiceName.xml");
148         config = getConfigCandidate();
149         assertCorrectServiceNames(config, 7, "ref_test2", "user_to_instance_from_code", "ref_dep_user",
150                 "ref_dep_user_two", "ref_from_code_to_instance-from-code_dep_1",
151                 "ref_from_code_to_instance-from-code_1", "ref_dep_user_another");
152
153         edit("netconfMessages/editConfig_addServiceNameOnTest.xml");
154         config = getConfigCandidate();
155         assertCorrectServiceNames(config, 7, "ref_test2", "user_to_instance_from_code", "ref_dep_user",
156                 "ref_dep_user_two", "ref_from_code_to_instance-from-code_dep_1",
157                 "ref_from_code_to_instance-from-code_1", "ref_dep_user_another");
158
159         commit();
160         config = getConfigRunning();
161         assertCorrectRefNamesForDependencies(config);
162         assertCorrectServiceNames(config, 7, "ref_test2", "user_to_instance_from_code", "ref_dep_user",
163                 "ref_dep_user_two", "ref_from_code_to_instance-from-code_dep_1",
164                 "ref_from_code_to_instance-from-code_1", "ref_dep_user_another");
165
166         edit("netconfMessages/editConfig_replace_default.xml");
167         config = getConfigCandidate();
168         assertCorrectServiceNames(config, 2, "ref_dep", "ref_dep2");
169
170         edit("netconfMessages/editConfig_remove.xml");
171         config = getConfigCandidate();
172         assertCorrectServiceNames(config, 0);
173
174         commit();
175         config = getConfigCandidate();
176         assertCorrectServiceNames(config, 0);
177
178     }
179
180     private void assertCorrectRefNamesForDependencies(Element config) {
181         NodeList modulesList = config.getElementsByTagName("modules");
182         assertEquals(1, modulesList.getLength());
183
184         Element modules = (Element) modulesList.item(0);
185
186         String trimmedModules = XmlUtil.toString(modules).replaceAll("\\s", "");
187         int defaultRefNameCount = StringUtils.countMatches(trimmedModules, "ref_dep2");
188         int userRefNameCount = StringUtils.countMatches(trimmedModules, "ref_dep_user_two");
189
190         assertEquals(0, defaultRefNameCount);
191         assertEquals(2, userRefNameCount);
192     }
193
194     private void assertCorrectServiceNames(Element configCandidate, int servicesSize, String... refNames) {
195         NodeList elements = configCandidate.getElementsByTagName("provider");
196         assertEquals(servicesSize, elements.getLength());
197
198         NodeList servicesList = configCandidate.getElementsByTagName("services");
199         assertEquals(1, servicesList.getLength());
200
201         Element services = (Element) servicesList.item(0);
202         String trimmedServices = XmlUtil.toString(services).replaceAll("\\s", "");
203
204         for (String s : refNames) {
205             assertThat(trimmedServices, JUnitMatchers.containsString(s));
206         }
207     }
208
209     @Test
210     public void testConfigNetconfUnionTypes() throws Exception {
211
212         createModule(INSTANCE_NAME);
213
214         edit("netconfMessages/editConfig.xml");
215         commit();
216         Element response = getConfigRunning();
217         String trimmedResponse = XmlUtil.toString(response).replaceAll("\\s", "");
218         assertContainsString(trimmedResponse, "<ipxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">0:0:0:0:0:0:0:1</ip>");
219         assertContainsString(trimmedResponse, "<union-test-attrxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">456</union-test-attr>");
220
221
222         edit("netconfMessages/editConfig_setUnions.xml");
223         commit();
224         response = getConfigRunning();
225
226         trimmedResponse = XmlUtil.toString(response).replaceAll("\\s", "");
227         assertContainsString(trimmedResponse, "<ipxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">127.1.2.3</ip>");
228         assertContainsString(trimmedResponse, "<union-test-attrxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">randomStringForUnion</union-test-attr>");
229
230     }
231
232     @Test
233     public void testConfigNetconf() throws Exception {
234
235         createModule(INSTANCE_NAME);
236
237         edit("netconfMessages/editConfig.xml");
238         Element configCandidate = getConfigCandidate();
239         System.err.println(XmlUtil.toString(configCandidate));
240         checkBinaryLeafEdited(configCandidate);
241
242
243         // default-operation:none, should not affect binary leaf
244         edit("netconfMessages/editConfig_none.xml");
245         checkBinaryLeafEdited(getConfigCandidate());
246
247         // check after edit
248         commit();
249         Element response = getConfigRunning();
250
251         checkBinaryLeafEdited(response);
252         checkTypeConfigAttribute(response);
253         checkTypedefs(response);
254         checkTestingDeps(response);
255         checkEnum(response);
256         checkBigDecimal(response);
257
258         edit("netconfMessages/editConfig_remove.xml");
259
260         commit();
261         response = getConfigCandidate();
262         final String responseFromCandidate = XmlUtil.toString(response).replaceAll("\\s+", "");
263         response = getConfigRunning();
264         final String responseFromRunning = XmlUtil.toString(response).replaceAll("\\s+", "");
265         assertEquals(responseFromCandidate, responseFromRunning);
266
267         final String expectedResult = XmlFileLoader.fileToString("netconfMessages/editConfig_expectedResult.xml")
268                 .replaceAll("\\s+", "");
269
270         assertEquals(expectedResult, responseFromRunning);
271         assertEquals(expectedResult, responseFromCandidate);
272
273         edit("netconfMessages/editConfig_none.xml");
274         doNothing().when(netconfOperationRouter).close();
275         closeSession();
276         verify(netconfOperationRouter).close();
277         verifyNoMoreInteractions(netconfOperationRouter);
278     }
279
280     private void checkBigDecimal(Element response) {
281         String responseTrimmed = XmlUtil.toString(response).replaceAll("\\s", "");
282
283         assertContainsString(responseTrimmed, "<sleep-factorxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">2.58</sleep-factor>");
284         // Default
285         assertContainsString(responseTrimmed, "<sleep-factorxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">2.00</sleep-factor>");
286
287     }
288
289     private void closeSession() throws NetconfDocumentedException, ParserConfigurationException, SAXException,
290             IOException {
291         DefaultCloseSession closeOp = new DefaultCloseSession(NETCONF_SESSION_ID);
292         executeOp(closeOp, "netconfMessages/closeSession.xml");
293     }
294
295     private void edit(String resource) throws ParserConfigurationException, SAXException, IOException,
296             NetconfDocumentedException {
297         EditConfig editOp = new EditConfig(yangStoreSnapshot, transactionProvider, configRegistryClient,
298                 NETCONF_SESSION_ID);
299         executeOp(editOp, resource);
300     }
301
302     private void commit() throws ParserConfigurationException, SAXException, IOException, NetconfDocumentedException {
303         Commit commitOp = new Commit(transactionProvider, configRegistryClient, NETCONF_SESSION_ID);
304         executeOp(commitOp, "netconfMessages/commit.xml");
305     }
306
307     private Element getConfigCandidate() throws ParserConfigurationException, SAXException, IOException,
308             NetconfDocumentedException {
309         GetConfig getConfigOp = new GetConfig(yangStoreSnapshot, Optional.<String> absent(), transactionProvider,
310                 configRegistryClient, NETCONF_SESSION_ID);
311         return executeOp(getConfigOp, "netconfMessages/getConfig_candidate.xml");
312     }
313
314     private Element getConfigRunning() throws ParserConfigurationException, SAXException, IOException,
315             NetconfDocumentedException {
316         GetConfig getConfigOp = new GetConfig(yangStoreSnapshot, Optional.<String> absent(), transactionProvider,
317                 configRegistryClient, NETCONF_SESSION_ID);
318         return executeOp(getConfigOp, "netconfMessages/getConfig.xml");
319     }
320
321     @Ignore("second edit message corrupted")
322     @Test(expected = NetconfDocumentedException.class)
323     public void testConfigNetconfReplaceDefaultEx() throws Exception {
324
325         createModule(INSTANCE_NAME);
326
327         edit("netconfMessages/editConfig.xml");
328         edit("netconfMessages/editConfig_replace_default_ex.xml");
329     }
330
331     @Test
332     public void testConfigNetconfReplaceDefault() throws Exception {
333
334         createModule(INSTANCE_NAME);
335
336         edit("netconfMessages/editConfig.xml");
337         commit();
338         Element response = getConfigRunning();
339         final int allInstances = response.getElementsByTagName("module").getLength();
340
341         edit("netconfMessages/editConfig_replace_default.xml");
342
343         commit();
344         response = getConfigRunning();
345
346         final int afterReplace = response.getElementsByTagName("module").getLength();
347         assertEquals(4, allInstances);
348         assertEquals(2, afterReplace);
349     }
350
351     @Test(expected = NetconfDocumentedException.class)
352     public void testSameAttrDifferentNamespaces() throws Exception {
353         try {
354             edit("netconfMessages/namespaces/editConfig_sameAttrDifferentNamespaces.xml");
355         } catch (NetconfDocumentedException e) {
356             String message = e.getMessage();
357             assertContainsString(message, "Element simple-long-2 present multiple times with different namespaces");
358             assertContainsString(message, "urn:opendaylight:params:xml:ns:yang:controller:test:impl");
359             assertContainsString(message, XmlNetconfConstants.URN_OPENDAYLIGHT_PARAMS_XML_NS_YANG_CONTROLLER_CONFIG);
360             throw e;
361         }
362     }
363
364     @Test(expected = NetconfDocumentedException.class)
365     public void testDifferentNamespaceInTO() throws Exception {
366         try {
367             edit("netconfMessages/namespaces/editConfig_differentNamespaceTO.xml");
368         } catch (NetconfDocumentedException e) {
369             String message = e.getMessage();
370             assertContainsString(message, "Unrecognised elements");
371             assertContainsString(message, "simple-int2");
372             assertContainsString(message, "dto_d");
373             throw e;
374         }
375     }
376
377     @Test(expected = NetconfDocumentedException.class)
378     public void testSameAttrDifferentNamespacesList() throws Exception {
379         try {
380             edit("netconfMessages/namespaces/editConfig_sameAttrDifferentNamespacesList.xml");
381         } catch (NetconfDocumentedException e) {
382             String message = e.getMessage();
383             assertContainsString(message, "Element binaryLeaf present multiple times with different namespaces");
384             assertContainsString(message, "urn:opendaylight:params:xml:ns:yang:controller:test:impl");
385             assertContainsString(message, XmlNetconfConstants.URN_OPENDAYLIGHT_PARAMS_XML_NS_YANG_CONTROLLER_CONFIG);
386             throw e;
387         }
388     }
389
390     @Test
391     public void testTypeNameConfigAttributeMatching() throws Exception {
392         edit("netconfMessages/editConfig.xml");
393         commit();
394         edit("netconfMessages/namespaces/editConfig_typeNameConfigAttributeMatching.xml");
395         commit();
396
397         Element response = getConfigRunning();
398         checkTypeConfigAttribute(response);
399     }
400
401     // TODO add <modules operation="replace"> functionality
402     @Test(expected = NetconfDocumentedException.class)
403     public void testConfigNetconfReplaceModuleEx() throws Exception {
404
405         createModule(INSTANCE_NAME);
406
407         edit("netconfMessages/editConfig.xml");
408         edit("netconfMessages/editConfig_replace_module_ex.xml");
409     }
410
411     @Test
412     public void testUnrecognisedConfigElements() throws Exception {
413
414         String format = "netconfMessages/unrecognised/editConfig_unrecognised%d.xml";
415         final int TESTS_COUNT = 8;
416
417         for (int i = 0; i < TESTS_COUNT; i++) {
418             String file = String.format(format, i + 1);
419             try {
420                 edit(file);
421             } catch (NetconfDocumentedException e) {
422                 assertContainsString(e.getMessage(), "Unrecognised elements");
423                 assertContainsString(e.getMessage(), "unknownAttribute");
424                 continue;
425             }
426             fail("Unrecognised test should throw exception " + file);
427         }
428     }
429
430     @Test
431     @Ignore
432     // FIXME
433     public void testConfigNetconfReplaceModule() throws Exception {
434
435         createModule(INSTANCE_NAME);
436
437         edit("netconfMessages/editConfig.xml");
438         commit();
439         Element response = getConfigRunning();
440         final int allInstances = response.getElementsByTagName("instance").getLength();
441
442         edit("netconfMessages/editConfig_replace_module.xml");
443
444         commit();
445         response = getConfigRunning();
446         final int afterReplace = response.getElementsByTagName("instance").getLength();
447
448         assertEquals(4 + 4 /* Instances from services */, allInstances);
449         assertEquals(3 + 3, afterReplace);
450     }
451
452     @Test(expected = NetconfDocumentedException.class)
453     public void testEx() throws Exception {
454
455         commit();
456     }
457
458     @Test(expected = NetconfDocumentedException.class)
459     public void testEx2() throws Exception {
460         discard();
461     }
462
463     private void discard() throws ParserConfigurationException, SAXException, IOException, NetconfDocumentedException {
464         DiscardChanges discardOp = new DiscardChanges(transactionProvider, configRegistryClient, NETCONF_SESSION_ID);
465         executeOp(discardOp, "netconfMessages/discardChanges.xml");
466     }
467
468     private void checkBinaryLeafEdited(final Element response) {
469         String responseTrimmed = XmlUtil.toString(response).replaceAll("\\s", "");
470         String substring = "<binaryLeafxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">YmluYXJ5</binaryLeaf>";
471         assertContainsString(responseTrimmed, substring);
472         substring = "<binaryLeafxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">ZGVmYXVsdEJpbg==</binaryLeaf>";
473         assertContainsString(responseTrimmed, substring);
474     }
475
476     private void checkTypedefs(final Element response) {
477         String responseTrimmed = XmlUtil.toString(response).replaceAll("\\s", "");
478
479         String substring = "<extendedxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">10</extended>";
480         assertContainsString(responseTrimmed, substring);
481         // Default
482         assertContainsString(responseTrimmed,
483                 "<extendedxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">1</extended>");
484
485         assertContainsString(responseTrimmed,
486                 "<extended-twicexmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">20</extended-twice>");
487         // Default
488         assertContainsString(responseTrimmed,
489                 "<extended-twicexmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">2</extended-twice>");
490
491         assertContainsString(responseTrimmed,
492                 "<extended-enumxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">TWO</extended-enum>");
493         // Default
494         assertContainsString(responseTrimmed,
495                 "<extended-enumxmlns=\"urn:opendaylight:params:xml:ns:yang:controller:test:impl\">ONE</extended-enum>");
496     }
497
498     private void assertContainsString(String string, String substring) {
499         assertThat(string, JUnitMatchers.containsString(substring));
500     }
501
502     private void checkEnum(final Element response) {
503         XmlElement modulesElement = XmlElement.fromDomElement(response).getOnlyChildElement("data")
504                 .getOnlyChildElement("modules");
505
506         String enumName = "extended-enum";
507         String enumContent = "TWO";
508
509         for (XmlElement moduleElement : modulesElement.getChildElements("module")) {
510             String name = moduleElement.getOnlyChildElement("name").getTextContent();
511             if(name.equals(INSTANCE_NAME)) {
512                 XmlElement enumAttr = moduleElement.getOnlyChildElement(enumName);
513                 assertEquals(enumContent, enumAttr.getTextContent());
514
515                 return;
516             }
517         }
518
519         fail("Enum attribute " + enumName + ":" + enumContent + " not present in " + XmlUtil.toString(response));
520     }
521
522     private void checkTestingDeps(Element response) {
523         int testingDepsSize = response.getElementsByTagName("testing-deps").getLength();
524         assertEquals(2, testingDepsSize);
525     }
526
527     private void checkTypeConfigAttribute(Element response) {
528
529         XmlElement modulesElement = XmlElement.fromDomElement(response).getOnlyChildElement("data")
530                 .getOnlyChildElement("modules");
531
532         List<String> expectedValues = Lists.newArrayList("default-string", "configAttributeType");
533         Set<String> configAttributeType = Sets.newHashSet();
534
535         for (XmlElement moduleElement : modulesElement.getChildElements("module")) {
536             for (XmlElement type : moduleElement.getChildElements("type")) {
537                 if (type.getAttribute(XmlUtil.XMLNS_ATTRIBUTE_KEY).equals("") == false) {
538                     configAttributeType.add(type.getTextContent());
539                 }
540             }
541         }
542
543         for (String expectedValue : expectedValues) {
544             assertTrue(configAttributeType.contains(expectedValue));
545         }
546     }
547
548     private Map<String, Map<String, ModuleMXBeanEntry>> getMbes() throws Exception {
549         final List<InputStream> yangDependencies = getYangs();
550
551         final Map<String, Map<String, ModuleMXBeanEntry>> mBeanEntries = Maps.newHashMap();
552         mBeanEntries.putAll(new MbeParser().parseYangFiles(yangDependencies).getModuleMXBeanEntryMap());
553
554         return mBeanEntries;
555     }
556
557     @Test
558     public void testConfigNetconfRuntime() throws Exception {
559
560         createModule(INSTANCE_NAME);
561
562         edit("netconfMessages/editConfig.xml");
563         checkBinaryLeafEdited(getConfigCandidate());
564
565         // check after edit
566         commit();
567         Element response = get();
568
569         assertEquals(2/*With runtime beans*/ + 2 /*Without runtime beans*/, getElementsSize(response, "module"));
570         // data from state
571         assertEquals(2, getElementsSize(response, "asdf"));
572         // data from running config
573         assertEquals(2, getElementsSize(response, "simple-short"));
574
575         assertEquals(8, getElementsSize(response, "inner-running-data"));
576         assertEquals(8, getElementsSize(response, "deep2"));
577         assertEquals(8 * 4, getElementsSize(response, "inner-inner-running-data"));
578         assertEquals(8 * 4, getElementsSize(response, "deep3"));
579         assertEquals(8 * 4 * 2, getElementsSize(response, "list-of-strings"));
580         assertEquals(8, getElementsSize(response, "inner-running-data-additional"));
581         assertEquals(8, getElementsSize(response, "deep4"));
582         // TODO assert keys
583
584         RuntimeRpc netconf = new RuntimeRpc(yangStoreSnapshot, configRegistryClient, NETCONF_SESSION_ID);
585
586         response = executeOp(netconf, "netconfMessages/rpc.xml");
587         assertContainsString(XmlUtil.toString(response), "testarg1".toUpperCase());
588
589         response = executeOp(netconf, "netconfMessages/rpcInner.xml");
590         assertContainsString(XmlUtil.toString(response), "ok");
591
592         response = executeOp(netconf, "netconfMessages/rpcInnerInner.xml");
593         assertContainsString(XmlUtil.toString(response), "true");
594
595         response = executeOp(netconf, "netconfMessages/rpcInnerInner_complex_output.xml");
596         assertContainsString(XmlUtil.toString(response), "1");
597         assertContainsString(XmlUtil.toString(response), "2");
598     }
599
600     private Element get() throws NetconfDocumentedException, ParserConfigurationException, SAXException, IOException {
601         Get getOp = new Get(yangStoreSnapshot, configRegistryClient, NETCONF_SESSION_ID, transactionProvider);
602         return executeOp(getOp, "netconfMessages/get.xml");
603     }
604
605     private int getElementsSize(Element response, String elementName) {
606         return response.getElementsByTagName(elementName).getLength();
607     }
608
609     private Element executeOp(final NetconfOperation op, final String filename) throws ParserConfigurationException,
610             SAXException, IOException, NetconfDocumentedException {
611
612         final Document request = XmlFileLoader.xmlFileToDocument(filename);
613
614         logger.debug("Executing netconf operation\n{}", XmlUtil.toString(request));
615         HandlingPriority priority = op.canHandle(request);
616
617         Preconditions.checkState(priority != HandlingPriority.CANNOT_HANDLE);
618
619         final Document response = op.handle(request, netconfOperationRouter);
620         logger.debug("Got response\n{}", XmlUtil.toString(response));
621         return response.getDocumentElement();
622     }
623
624     private List<InputStream> getYangs() throws FileNotFoundException {
625         List<String> paths = Arrays.asList("/META-INF/yang/config.yang", "/META-INF/yang/rpc-context.yang",
626                 "/META-INF/yang/config-test.yang", "/META-INF/yang/config-test-impl.yang", "/META-INF/yang/test-types.yang",
627                 "/META-INF/yang/ietf-inet-types.yang");
628         final Collection<InputStream> yangDependencies = new ArrayList<>();
629         for (String path : paths) {
630             final InputStream is = Preconditions
631                     .checkNotNull(getClass().getResourceAsStream(path), path + " not found");
632             yangDependencies.add(is);
633         }
634         return Lists.newArrayList(yangDependencies);
635     }
636
637     private void setModule(final NetconfTestImplModuleMXBean mxBean, final ConfigTransactionJMXClient transaction, String depName)
638             throws InstanceAlreadyExistsException, InstanceNotFoundException {
639         mxBean.setSimpleInt((long) 44);
640         mxBean.setBinaryLeaf(new byte[] { 8, 7, 9 });
641         final DtoD dtob = getDtoD();
642         mxBean.setDtoD(dtob);
643         //
644         final DtoC dtoa = getDtoC();
645         mxBean.setDtoC(dtoa);
646         mxBean.setSimpleBoolean(false);
647         //
648         final Peers p1 = new Peers();
649         p1.setCoreSize(44L);
650         p1.setPort("port1");
651         p1.setSimpleInt3(456);
652         final Peers p2 = new Peers();
653         p2.setCoreSize(44L);
654         p2.setPort("port23");
655         p2.setSimpleInt3(456);
656         mxBean.setPeers(Lists.<Peers> newArrayList(p1, p2));
657         // //
658         mxBean.setSimpleLong(454545L);
659         mxBean.setSimpleLong2(44L);
660         mxBean.setSimpleBigInteger(BigInteger.valueOf(999L));
661         mxBean.setSimpleByte(new Byte((byte) 4));
662         mxBean.setSimpleShort(new Short((short) 4));
663         mxBean.setSimpleTest(545);
664
665         mxBean.setComplexList(Lists.<ComplexList> newArrayList());
666         mxBean.setSimpleList(Lists.<Integer> newArrayList());
667
668         final ObjectName testingDepOn = transaction.createModule(this.factory2.getImplementationName(), depName);
669         int i = 1;
670         for (Class<? extends AbstractServiceInterface> sInterface : factory2.getImplementedServiceIntefaces()) {
671             ServiceInterfaceAnnotation annotation = sInterface.getAnnotation(ServiceInterfaceAnnotation.class);
672             transaction.saveServiceReference(
673                     transaction.getServiceInterfaceName(annotation.namespace(), annotation.localName()), "ref_from_code_to_" + depName + "_" + i++,
674                     testingDepOn);
675
676         }
677         mxBean.setTestingDep(testingDepOn);
678     }
679
680     private static DtoD getDtoD() {
681         final DtoD dtob = new DtoD();
682         dtob.setSimpleInt1((long) 444);
683         dtob.setSimpleInt2((long) 4444);
684         dtob.setSimpleInt3(454);
685         final ComplexDtoBInner dtobInner = new ComplexDtoBInner();
686         final Deep deep = new Deep();
687         deep.setSimpleInt3(4);
688         dtobInner.setDeep(deep);
689         dtobInner.setSimpleInt3(44);
690         dtobInner.setSimpleList(Lists.newArrayList(4));
691         dtob.setComplexDtoBInner(Lists.newArrayList(dtobInner));
692         dtob.setSimpleList(Lists.newArrayList(4));
693         return dtob;
694     }
695
696     private static DtoC getDtoC() {
697         final DtoC dtoa = new DtoC();
698         // dtoa.setSimpleArg((long) 55);
699         final DtoAInner dtoAInner = new DtoAInner();
700         final DtoAInnerInner dtoAInnerInner = new DtoAInnerInner();
701         dtoAInnerInner.setSimpleArg(456L);
702         dtoAInner.setDtoAInnerInner(dtoAInnerInner);
703         dtoAInner.setSimpleArg(44L);
704         dtoa.setDtoAInner(dtoAInner);
705         return dtoa;
706     }
707
708 }