80b147be607d3d7ce96ac45809e8d871ec76b00e
[netconf.git] / restconf / sal-rest-connector / src / test / java / org / opendaylight / restconf / jersey / providers / JsonBodyReaderTest.java
1 /*
2  * Copyright (c) 2016 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.restconf.jersey.providers;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertNotNull;
13 import static org.mockito.Mockito.mock;
14 import static org.mockito.Mockito.when;
15
16 import com.google.common.collect.Sets;
17 import java.io.File;
18 import java.io.FileNotFoundException;
19 import java.io.InputStream;
20 import java.net.URI;
21 import java.text.ParseException;
22 import java.text.SimpleDateFormat;
23 import java.util.Collection;
24 import javax.ws.rs.core.MediaType;
25 import org.junit.BeforeClass;
26 import org.junit.Test;
27 import org.opendaylight.controller.md.sal.dom.api.DOMMountPointService;
28 import org.opendaylight.controller.md.sal.rest.common.TestRestconfUtils;
29 import org.opendaylight.controller.sal.rest.impl.test.providers.TestXmlBodyReader;
30 import org.opendaylight.netconf.sal.restconf.impl.NormalizedNodeContext;
31 import org.opendaylight.yangtools.yang.common.QName;
32 import org.opendaylight.yangtools.yang.common.QNameModule;
33 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
34 import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodes;
35 import org.opendaylight.yangtools.yang.model.api.DataNodeContainer;
36 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
37 import org.opendaylight.yangtools.yang.model.api.Module;
38 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
39 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
40 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
41
42 public class JsonBodyReaderTest extends AbstractBodyReaderTest {
43
44     private final JsonNormalizedNodeBodyReader jsonBodyReader;
45     private static SchemaContext schemaContext;
46
47     private static final QNameModule INSTANCE_IDENTIFIER_MODULE_QNAME = initializeInstanceIdentifierModule();
48
49     private static QNameModule initializeInstanceIdentifierModule() {
50         try {
51             return QNameModule.create(URI.create("instance:identifier:module"),
52                     new SimpleDateFormat("yyyy-MM-dd").parse("2014-01-17"));
53         } catch (final ParseException e) {
54             throw new Error(e);
55         }
56     }
57
58     public JsonBodyReaderTest() throws Exception {
59         super();
60         this.jsonBodyReader = new JsonNormalizedNodeBodyReader();
61     }
62
63     @Override
64     protected MediaType getMediaType() {
65         return new MediaType(MediaType.APPLICATION_XML, null);
66     }
67
68     @BeforeClass
69     public static void initialization()
70             throws NoSuchFieldException, SecurityException, FileNotFoundException, SourceException, ReactorException {
71         final Collection<File> testFiles = TestRestconfUtils.loadFiles("/instanceidentifier/yang");
72         testFiles.addAll(TestRestconfUtils.loadFiles("/modules"));
73         testFiles.addAll(TestRestconfUtils.loadFiles("/invoke-rpc"));
74         schemaContext = TestRestconfUtils.parseYangSources(testFiles);
75         controllerContext.setSchemas(schemaContext);
76         when(mountPointServiceHandler.get()).thenReturn(mock(DOMMountPointService.class));
77     }
78
79     @Test
80     public void moduleDataTest() throws Exception {
81         final DataSchemaNode dataSchemaNode = schemaContext
82                 .getDataChildByName(QName.create(INSTANCE_IDENTIFIER_MODULE_QNAME, "cont"));
83         final YangInstanceIdentifier dataII = YangInstanceIdentifier.of(dataSchemaNode.getQName());
84         final String uri = "instance-identifier-module:cont";
85         mockBodyReader(uri, this.jsonBodyReader, false);
86         final InputStream inputStream = JsonBodyReaderTest.class
87                 .getResourceAsStream("/instanceidentifier/json/jsondata.json");
88         final NormalizedNodeContext returnValue = this.jsonBodyReader.readFrom(null, null, null, this.mediaType, null,
89                 inputStream);
90         checkNormalizedNodeContext(returnValue);
91         checkExpectValueNormalizeNodeContext(dataSchemaNode, returnValue, dataII);
92     }
93
94     @Test
95     public void moduleSubContainerDataPutTest() throws Exception {
96         final DataSchemaNode dataSchemaNode = schemaContext
97                 .getDataChildByName(QName.create(INSTANCE_IDENTIFIER_MODULE_QNAME, "cont"));
98         final QName cont1QName = QName.create(dataSchemaNode.getQName(), "cont1");
99         final YangInstanceIdentifier dataII = YangInstanceIdentifier.of(dataSchemaNode.getQName()).node(cont1QName);
100         final DataSchemaNode dataSchemaNodeOnPath = ((DataNodeContainer) dataSchemaNode).getDataChildByName(cont1QName);
101         final String uri = "instance-identifier-module:cont/cont1";
102         mockBodyReader(uri, this.jsonBodyReader, false);
103         final InputStream inputStream = JsonBodyReaderTest.class
104                 .getResourceAsStream("/instanceidentifier/json/json_sub_container.json");
105         final NormalizedNodeContext returnValue = this.jsonBodyReader.readFrom(null, null, null, this.mediaType, null,
106                 inputStream);
107         checkNormalizedNodeContext(returnValue);
108         checkExpectValueNormalizeNodeContext(dataSchemaNodeOnPath, returnValue, dataII);
109     }
110
111     @Test
112     public void moduleSubContainerDataPostTest() throws Exception {
113         final DataSchemaNode dataSchemaNode = schemaContext
114                 .getDataChildByName(QName.create(INSTANCE_IDENTIFIER_MODULE_QNAME, "cont"));
115         final QName cont1QName = QName.create(dataSchemaNode.getQName(), "cont1");
116         final YangInstanceIdentifier dataII = YangInstanceIdentifier.of(dataSchemaNode.getQName()).node(cont1QName);
117         final String uri = "instance-identifier-module:cont";
118         mockBodyReader(uri, this.jsonBodyReader, true);
119         final InputStream inputStream = JsonBodyReaderTest.class
120                 .getResourceAsStream("/instanceidentifier/json/json_sub_container.json");
121         final NormalizedNodeContext returnValue = this.jsonBodyReader.readFrom(null, null, null, this.mediaType, null,
122                 inputStream);
123         checkNormalizedNodeContext(returnValue);
124         checkExpectValueNormalizeNodeContext(dataSchemaNode, returnValue, dataII);
125     }
126
127     @Test
128     public void moduleSubContainerAugmentDataPostTest() throws Exception {
129         final DataSchemaNode dataSchemaNode = schemaContext
130                 .getDataChildByName(QName.create(INSTANCE_IDENTIFIER_MODULE_QNAME, "cont"));
131         final Module augmentModule = schemaContext.findModuleByNamespace(new URI("augment:module")).iterator().next();
132         final QName contAugmentQName = QName.create(augmentModule.getQNameModule(), "cont-augment");
133         final YangInstanceIdentifier.AugmentationIdentifier augII = new YangInstanceIdentifier.AugmentationIdentifier(
134                 Sets.newHashSet(contAugmentQName));
135         final YangInstanceIdentifier dataII = YangInstanceIdentifier.of(dataSchemaNode.getQName()).node(augII)
136                 .node(contAugmentQName);
137         final String uri = "instance-identifier-module:cont";
138         mockBodyReader(uri, this.jsonBodyReader, true);
139         final InputStream inputStream = TestXmlBodyReader.class
140                 .getResourceAsStream("/instanceidentifier/json/json_augment_container.json");
141         final NormalizedNodeContext returnValue = this.jsonBodyReader.readFrom(null, null, null, this.mediaType, null,
142                 inputStream);
143         checkNormalizedNodeContext(returnValue);
144         checkExpectValueNormalizeNodeContext(dataSchemaNode, returnValue, dataII);
145     }
146
147     @Test
148     public void moduleSubContainerChoiceAugmentDataPostTest() throws Exception {
149         final DataSchemaNode dataSchemaNode = schemaContext
150                 .getDataChildByName(QName.create(INSTANCE_IDENTIFIER_MODULE_QNAME, "cont"));
151         final Module augmentModule = schemaContext.findModuleByNamespace(new URI("augment:module")).iterator().next();
152         final QName augmentChoice1QName = QName.create(augmentModule.getQNameModule(), "augment-choice1");
153         final QName augmentChoice2QName = QName.create(augmentChoice1QName, "augment-choice2");
154         final QName containerQName = QName.create(augmentChoice1QName, "case-choice-case-container1");
155         final YangInstanceIdentifier.AugmentationIdentifier augChoice1II = new YangInstanceIdentifier.AugmentationIdentifier(
156                 Sets.newHashSet(augmentChoice1QName));
157         final YangInstanceIdentifier.AugmentationIdentifier augChoice2II = new YangInstanceIdentifier.AugmentationIdentifier(
158                 Sets.newHashSet(augmentChoice2QName));
159         final YangInstanceIdentifier dataII = YangInstanceIdentifier.of(dataSchemaNode.getQName()).node(augChoice1II)
160                 .node(augmentChoice1QName).node(augChoice2II).node(augmentChoice2QName).node(containerQName);
161         final String uri = "instance-identifier-module:cont";
162         mockBodyReader(uri, this.jsonBodyReader, true);
163         final InputStream inputStream = TestXmlBodyReader.class
164                 .getResourceAsStream("/instanceidentifier/json/json_augment_choice_container.json");
165         final NormalizedNodeContext returnValue = this.jsonBodyReader.readFrom(null, null, null, this.mediaType, null,
166                 inputStream);
167         checkNormalizedNodeContext(returnValue);
168         checkExpectValueNormalizeNodeContext(dataSchemaNode, returnValue, dataII);
169     }
170
171     private void checkExpectValueNormalizeNodeContext(final DataSchemaNode dataSchemaNode,
172             final NormalizedNodeContext nnContext, final YangInstanceIdentifier dataNodeIdent) {
173         assertEquals(dataSchemaNode, nnContext.getInstanceIdentifierContext().getSchemaNode());
174         assertEquals(dataNodeIdent, nnContext.getInstanceIdentifierContext().getInstanceIdentifier());
175         assertNotNull(NormalizedNodes.findNode(nnContext.getData(), dataNodeIdent));
176     }
177 }