Merge changes from topic 'rem_web_xml'
[netconf.git] / restconf / restconf-nb-rfc8040 / src / test / java / org / opendaylight / restconf / nb / rfc8040 / jersey / providers / patch / XmlPatchBodyReaderMountPointTest.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.nb.rfc8040.jersey.providers.patch;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.fail;
13
14 import java.io.InputStream;
15 import javax.ws.rs.core.MediaType;
16 import org.junit.BeforeClass;
17 import org.junit.Test;
18 import org.opendaylight.restconf.common.errors.RestconfDocumentedException;
19 import org.opendaylight.restconf.common.patch.PatchContext;
20 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.test.AbstractBodyReaderTest;
21 import org.opendaylight.restconf.nb.rfc8040.jersey.providers.test.XmlBodyReaderTest;
22 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
23
24 public class XmlPatchBodyReaderMountPointTest extends AbstractBodyReaderTest {
25
26     private final XmlToPatchBodyReader xmlToPatchBodyReader;
27     private static SchemaContext schemaContext;
28     private static final String MOUNT_POINT = "instance-identifier-module:cont/yang-ext:mount/";
29
30     public XmlPatchBodyReaderMountPointTest() throws Exception {
31         super(schemaContext);
32         xmlToPatchBodyReader = new XmlToPatchBodyReader(schemaContextHandler, mountPointServiceHandler);
33     }
34
35     @Override
36     protected MediaType getMediaType() {
37         return new MediaType(MediaType.APPLICATION_XML, null);
38     }
39
40     @BeforeClass
41     public static void initialization() {
42         schemaContext = schemaContextLoader("/instanceidentifier/yang", schemaContext);
43     }
44
45     @Test
46     public void moduleDataTest() throws Exception {
47         final String uri = MOUNT_POINT + "instance-identifier-patch-module:patch-cont/my-list1=leaf1";
48         mockBodyReader(uri, xmlToPatchBodyReader, false);
49         final InputStream inputStream = XmlBodyReaderTest.class
50                 .getResourceAsStream("/instanceidentifier/xml/xmlPATCHdata.xml");
51         final PatchContext returnValue = xmlToPatchBodyReader
52                 .readFrom(null, null, null, mediaType, null, inputStream);
53         checkPatchContextMountPoint(returnValue);
54     }
55
56     /**
57      * Test trying to use Patch create operation which requires value without value. Error code 400 should be returned.
58      */
59     @Test
60     public void moduleDataValueMissingNegativeTest() throws Exception {
61         final String uri = MOUNT_POINT + "instance-identifier-patch-module:patch-cont/my-list1=leaf1";
62         mockBodyReader(uri, xmlToPatchBodyReader, false);
63         final InputStream inputStream = XmlBodyReaderTest.class
64                 .getResourceAsStream("/instanceidentifier/xml/xmlPATCHdataValueMissing.xml");
65         try {
66             xmlToPatchBodyReader.readFrom(null, null, null, mediaType, null, inputStream);
67             fail("Test should return error 400 due to missing value node when attempt to invoke create operation");
68         } catch (final RestconfDocumentedException e) {
69             assertEquals("Error code 400 expected", 400, e.getErrors().get(0).getErrorTag().getStatusCode());
70         }
71     }
72
73     /**
74      * Test trying to use value with Patch delete operation which does not support value. Error code 400 should be
75      * returned.
76      */
77     @Test
78     public void moduleDataNotValueNotSupportedNegativeTest() throws Exception {
79         final String uri = MOUNT_POINT + "instance-identifier-patch-module:patch-cont/my-list1=leaf1";
80         mockBodyReader(uri, xmlToPatchBodyReader, false);
81         final InputStream inputStream = XmlBodyReaderTest.class
82                 .getResourceAsStream("/instanceidentifier/xml/xmlPATCHdataValueNotSupported.xml");
83         try {
84             xmlToPatchBodyReader.readFrom(null, null, null, mediaType, null, inputStream);
85             fail("Test should return error 400 due to present value node when attempt to invoke delete operation");
86         } catch (final RestconfDocumentedException e) {
87             assertEquals("Error code 400 expected", 400, e.getErrors().get(0).getErrorTag().getStatusCode());
88         }
89     }
90
91
92     /**
93      * Test of Yang Patch with absolute target path.
94      */
95     @Test
96     public void moduleDataAbsoluteTargetPathTest() throws Exception {
97         final String uri = MOUNT_POINT;
98         mockBodyReader(uri, xmlToPatchBodyReader, false);
99         final InputStream inputStream = XmlBodyReaderTest.class
100                 .getResourceAsStream("/instanceidentifier/xml/xmlPATCHdataAbsoluteTargetPath.xml");
101         final PatchContext returnValue = xmlToPatchBodyReader
102                 .readFrom(null, null, null, mediaType, null, inputStream);
103         checkPatchContextMountPoint(returnValue);
104     }
105
106     /**
107      * Test using Patch when target is completely specified in request URI and thus target leaf contains only '/' sign.
108      */
109     @Test
110     public void modulePatchCompleteTargetInURITest() throws Exception {
111         final String uri = MOUNT_POINT + "instance-identifier-patch-module:patch-cont";
112         mockBodyReader(uri, xmlToPatchBodyReader, false);
113         final InputStream inputStream = XmlBodyReaderTest.class
114                 .getResourceAsStream("/instanceidentifier/xml/xmlPATCHdataCompleteTargetInURI.xml");
115         final PatchContext returnValue = xmlToPatchBodyReader
116                 .readFrom(null, null, null, mediaType, null, inputStream);
117         checkPatchContextMountPoint(returnValue);
118     }
119
120     /**
121      * Test of Yang Patch merge operation on list. Test consists of two edit operations - replace and merge.
122      */
123     @Test
124     public void moduleDataMergeOperationOnListTest() throws Exception {
125         final String uri = MOUNT_POINT + "instance-identifier-patch-module:patch-cont/my-list1=leaf1";
126         mockBodyReader(uri, xmlToPatchBodyReader, false);
127         final InputStream inputStream = XmlBodyReaderTest.class
128                 .getResourceAsStream("/instanceidentifier/xml/xmlPATCHdataMergeOperationOnList.xml");
129         final PatchContext returnValue = xmlToPatchBodyReader
130                 .readFrom(null, null, null, mediaType, null, inputStream);
131         checkPatchContextMountPoint(returnValue);
132     }
133
134     /**
135      * Test of Yang Patch merge operation on container. Test consists of two edit operations - create and merge.
136      */
137     @Test
138     public void moduleDataMergeOperationOnContainerTest() throws Exception {
139         final String uri = MOUNT_POINT + "instance-identifier-patch-module:patch-cont";
140         mockBodyReader(uri, xmlToPatchBodyReader, false);
141         final InputStream inputStream = XmlBodyReaderTest.class
142                 .getResourceAsStream("/instanceidentifier/xml/xmlPATCHdataMergeOperationOnContainer.xml");
143         final PatchContext returnValue = xmlToPatchBodyReader
144                 .readFrom(null, null, null, mediaType, null, inputStream);
145         checkPatchContextMountPoint(returnValue);
146     }
147 }