Remove explicit default super-constructor calls
[netconf.git] / restconf / restconf-nb-bierman02 / 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.restconf.common.context.InstanceIdentifierContext;
23 import org.opendaylight.restconf.common.context.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         xmlBodyWriter = new NormalizedNodeXmlBodyWriter();
46     }
47
48     @BeforeClass
49     public static void initialization() {
50         schemaContext = schemaContextLoader("/nn-to-xml/choice", schemaContext);
51         CONTROLLER_CONTEXT.setSchemas(schemaContext);
52     }
53
54     @Test
55     public void cnSnToXmlWithYangChoice() throws Exception {
56         NormalizedNodeContext normalizedNodeContext = prepareNNC("lf1",
57                 "String data1");
58         OutputStream output = new ByteArrayOutputStream();
59         xmlBodyWriter.writeTo(normalizedNodeContext, null, null, null,
60                     mediaType, null, output);
61         assertTrue(output.toString().contains("<lf1>String data1</lf1>"));
62
63         normalizedNodeContext = prepareNNC("lf2", "String data2");
64         output = new ByteArrayOutputStream();
65
66         xmlBodyWriter.writeTo(normalizedNodeContext, null, null, null,
67                     mediaType, null, output);
68         assertTrue(output.toString().contains("<lf2>String data2</lf2>"));
69     }
70
71     private static NormalizedNodeContext prepareNNC(final String name, final Object value) {
72
73         final QName contQname = QName.create("module:with:choice", "2013-12-18",
74                 "cont");
75         final QName lf = QName.create("module:with:choice", "2013-12-18", name);
76         final QName choA = QName.create("module:with:choice", "2013-12-18", "choA");
77
78         final DataSchemaNode contSchemaNode = schemaContext
79                 .getDataChildByName(contQname);
80         final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> dataContainerNodeAttrBuilder = Builders
81                 .containerBuilder((ContainerSchemaNode) contSchemaNode);
82
83         final DataSchemaNode choiceSchemaNode = ((ContainerSchemaNode) contSchemaNode)
84                 .getDataChildByName(choA);
85         assertTrue(choiceSchemaNode instanceof ChoiceSchemaNode);
86
87         final DataContainerNodeBuilder<NodeIdentifier, ChoiceNode> dataChoice = Builders
88                 .choiceBuilder((ChoiceSchemaNode) choiceSchemaNode);
89
90         final List<DataSchemaNode> instanceLf = ControllerContext
91                 .findInstanceDataChildrenByName(
92                         (DataNodeContainer) contSchemaNode, lf.getLocalName());
93         final DataSchemaNode schemaLf = Iterables.getFirst(instanceLf, null);
94
95         dataChoice.withChild(Builders.leafBuilder((LeafSchemaNode) schemaLf)
96                 .withValue(value).build());
97
98         dataContainerNodeAttrBuilder.withChild(dataChoice.build());
99
100         final NormalizedNodeContext testNormalizedNodeContext = new NormalizedNodeContext(
101                 new InstanceIdentifierContext<>(null,
102                         contSchemaNode, null, schemaContext),
103                 dataContainerNodeAttrBuilder.build());
104
105         return testNormalizedNodeContext;
106     }
107
108     @Override
109     protected MediaType getMediaType() {
110         return null;
111     }
112 }