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