Merge "Bug 9092: revert to org.json temporarily"
[netconf.git] / restconf / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / nn / to / xml / test / NnToXmlWithChoiceTest.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.restconf.impl.nn.to.xml.test;
9
10 import static org.junit.Assert.assertTrue;
11
12 import com.google.common.collect.Iterables;
13 import java.io.ByteArrayOutputStream;
14 import java.io.OutputStream;
15 import java.util.List;
16 import javax.ws.rs.core.MediaType;
17 import org.junit.BeforeClass;
18 import org.junit.Test;
19 import org.opendaylight.controller.sal.rest.impl.test.providers.AbstractBodyReaderTest;
20 import org.opendaylight.netconf.sal.rest.impl.NormalizedNodeXmlBodyWriter;
21 import org.opendaylight.netconf.sal.restconf.impl.ControllerContext;
22 import org.opendaylight.netconf.sal.restconf.impl.InstanceIdentifierContext;
23 import org.opendaylight.netconf.sal.restconf.impl.NormalizedNodeContext;
24 import org.opendaylight.yangtools.yang.common.QName;
25 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
26 import org.opendaylight.yangtools.yang.data.api.schema.ChoiceNode;
27 import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
28 import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
29 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.DataContainerNodeAttrBuilder;
30 import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.DataContainerNodeBuilder;
31 import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode;
32 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
33 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
34 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
35 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
36 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
37
38 public class NnToXmlWithChoiceTest extends AbstractBodyReaderTest {
39
40     private final NormalizedNodeXmlBodyWriter xmlBodyWriter;
41     private static SchemaContext schemaContext;
42
43     public NnToXmlWithChoiceTest() throws NoSuchFieldException,
44             SecurityException {
45         super();
46         xmlBodyWriter = new NormalizedNodeXmlBodyWriter();
47     }
48
49     @BeforeClass
50     public static void initialization() {
51         schemaContext = schemaContextLoader("/nn-to-xml/choice", schemaContext);
52         CONTROLLER_CONTEXT.setSchemas(schemaContext);
53     }
54
55     @Test
56     public void cnSnToXmlWithYangChoice() throws Exception {
57         NormalizedNodeContext normalizedNodeContext = prepareNNC("lf1",
58                 "String data1");
59         OutputStream output = new ByteArrayOutputStream();
60         xmlBodyWriter.writeTo(normalizedNodeContext, null, null, null,
61                     mediaType, null, output);
62         assertTrue(output.toString().contains("<lf1>String data1</lf1>"));
63
64         normalizedNodeContext = prepareNNC("lf2", "String data2");
65         output = new ByteArrayOutputStream();
66
67         xmlBodyWriter.writeTo(normalizedNodeContext, null, null, null,
68                     mediaType, null, output);
69         assertTrue(output.toString().contains("<lf2>String data2</lf2>"));
70     }
71
72     private static NormalizedNodeContext prepareNNC(final String name, final Object value) {
73
74         final QName contQname = QName.create("module:with:choice", "2013-12-18",
75                 "cont");
76         final QName lf = QName.create("module:with:choice", "2013-12-18", name);
77         final QName choA = QName.create("module:with:choice", "2013-12-18", "choA");
78
79         final DataSchemaNode contSchemaNode = schemaContext
80                 .getDataChildByName(contQname);
81         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> dataContainerNodeAttrBuilder = Builders
82                 .containerBuilder((ContainerSchemaNode) contSchemaNode);
83
84         final DataSchemaNode choiceSchemaNode = ((ContainerSchemaNode) contSchemaNode)
85                 .getDataChildByName(choA);
86         assertTrue(choiceSchemaNode instanceof ChoiceSchemaNode);
87
88         final DataContainerNodeBuilder<NodeIdentifier, ChoiceNode> dataChoice = Builders
89                 .choiceBuilder((ChoiceSchemaNode) choiceSchemaNode);
90
91         final List<DataSchemaNode> instanceLf = ControllerContext
92                 .findInstanceDataChildrenByName(
93                         (DataNodeContainer) contSchemaNode, lf.getLocalName());
94         final DataSchemaNode schemaLf = Iterables.getFirst(instanceLf, null);
95
96         dataChoice.withChild(Builders.leafBuilder((LeafSchemaNode) schemaLf)
97                 .withValue(value).build());
98
99         dataContainerNodeAttrBuilder.withChild(dataChoice.build());
100
101         final NormalizedNodeContext testNormalizedNodeContext = new NormalizedNodeContext(
102                 new InstanceIdentifierContext<>(null,
103                         contSchemaNode, null, schemaContext),
104                 dataContainerNodeAttrBuilder.build());
105
106         return testNormalizedNodeContext;
107     }
108
109     @Override
110     protected MediaType getMediaType() {
111         return null;
112     }
113 }