Merge "Changed NetconfDeviceDatastoreAdapter and NetconfDeviceTopologyAdapter to...
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / MediaTypesTest.java
index 33041a8abbd12b824e250a46070f41c23b75b277..a00b0d1fc6830aa9b5c2fba93af22c4867b0f57d 100644 (file)
@@ -30,15 +30,11 @@ import org.junit.Test;
 import org.opendaylight.controller.sal.rest.api.Draft02;
 import org.opendaylight.controller.sal.rest.api.RestconfService;
 import org.opendaylight.controller.sal.rest.impl.JsonNormalizedNodeBodyReader;
-import org.opendaylight.controller.sal.rest.impl.JsonToCompositeNodeProvider;
 import org.opendaylight.controller.sal.rest.impl.NormalizedNodeJsonBodyWriter;
 import org.opendaylight.controller.sal.rest.impl.NormalizedNodeXmlBodyWriter;
-import org.opendaylight.controller.sal.rest.impl.StructuredDataToJsonProvider;
-import org.opendaylight.controller.sal.rest.impl.StructuredDataToXmlProvider;
+import org.opendaylight.controller.sal.rest.impl.RestconfDocumentedExceptionMapper;
 import org.opendaylight.controller.sal.rest.impl.XmlNormalizedNodeBodyReader;
-import org.opendaylight.controller.sal.rest.impl.XmlToCompositeNodeProvider;
 import org.opendaylight.controller.sal.restconf.impl.NormalizedNodeContext;
-import org.opendaylight.yangtools.yang.data.api.CompositeNode;
 
 public class MediaTypesTest extends JerseyTest {
 
@@ -63,37 +59,37 @@ public class MediaTypesTest extends JerseyTest {
         // enable(TestProperties.RECORD_LOG_LEVEL);
         // set(TestProperties.RECORD_LOG_LEVEL, Level.ALL.intValue());
         ResourceConfig resourceConfig = new ResourceConfig();
-        resourceConfig = resourceConfig.registerInstances(restconfService, StructuredDataToXmlProvider.INSTANCE,
-                StructuredDataToJsonProvider.INSTANCE, XmlToCompositeNodeProvider.INSTANCE,
-                JsonToCompositeNodeProvider.INSTANCE, new NormalizedNodeJsonBodyWriter(), new NormalizedNodeXmlBodyWriter(),
-                new JsonNormalizedNodeBodyReader(), new XmlNormalizedNodeBodyReader());
+        resourceConfig = resourceConfig.registerInstances(restconfService,  new NormalizedNodeJsonBodyWriter(),
+                new NormalizedNodeXmlBodyWriter(), new XmlNormalizedNodeBodyReader(), new JsonNormalizedNodeBodyReader());
+        resourceConfig.registerClasses(RestconfDocumentedExceptionMapper.class);
         return resourceConfig;
     }
 
     @Test
+    @Ignore
     public void testPostOperationsWithInputDataMediaTypes() throws UnsupportedEncodingException {
         final String uriPrefix = "/operations/";
         final String uriPath = "ietf-interfaces:interfaces";
         final String uri = uriPrefix + uriPath;
-        when(restconfService.invokeRpc(eq(uriPath), any(CompositeNode.class), any(UriInfo.class))).thenReturn(null);
+        when(restconfService.invokeRpc(eq(uriPath), any(NormalizedNodeContext.class), any(UriInfo.class))).thenReturn(null);
         post(uri, Draft02.MediaTypes.OPERATION + JSON, Draft02.MediaTypes.OPERATION + JSON, jsonData);
-        verify(restconfService, times(1)).invokeRpc(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(1)).invokeRpc(eq(uriPath), any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, Draft02.MediaTypes.OPERATION + XML, Draft02.MediaTypes.OPERATION + XML, xmlData);
-        verify(restconfService, times(2)).invokeRpc(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(2)).invokeRpc(eq(uriPath), any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, MediaType.APPLICATION_JSON, MediaType.APPLICATION_JSON, jsonData);
-        verify(restconfService, times(3)).invokeRpc(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(3)).invokeRpc(eq(uriPath), any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, MediaType.APPLICATION_XML, MediaType.APPLICATION_XML, xmlData);
-        verify(restconfService, times(4)).invokeRpc(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(4)).invokeRpc(eq(uriPath), any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, MediaType.TEXT_XML, MediaType.TEXT_XML, xmlData);
-        verify(restconfService, times(5)).invokeRpc(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(5)).invokeRpc(eq(uriPath), any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, null, MediaType.TEXT_XML, xmlData);
-        verify(restconfService, times(6)).invokeRpc(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(6)).invokeRpc(eq(uriPath), any(NormalizedNodeContext.class), any(UriInfo.class));
 
         // negative tests
         post(uri, MediaType.TEXT_PLAIN, MediaType.TEXT_XML, xmlData);
-        verify(restconfService, times(6)).invokeRpc(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(6)).invokeRpc(eq(uriPath), any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, MediaType.TEXT_XML, MediaType.TEXT_PLAIN, xmlData);
-        verify(restconfService, times(6)).invokeRpc(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(6)).invokeRpc(eq(uriPath), any(NormalizedNodeContext.class), any(UriInfo.class));
     }
 
     @Test
@@ -162,42 +158,58 @@ public class MediaTypesTest extends JerseyTest {
     }
 
     @Test
+    @Ignore
     public void testPostConfigWithPathMediaTypes() throws UnsupportedEncodingException {
         final String uriPrefix = "/config/";
         final String uriPath = "ietf-interfaces:interfaces";
         final String uri = uriPrefix + uriPath;
-        when(restconfService.createConfigurationData(eq(uriPath), any(CompositeNode.class), any(UriInfo.class))).thenReturn(null);
+        when(restconfService.createConfigurationData(eq(uriPath), any(NormalizedNodeContext.class),
+                any(UriInfo.class))).thenReturn(null);
         post(uri, null, Draft02.MediaTypes.DATA + JSON, jsonData);
-        verify(restconfService, times(1)).createConfigurationData(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(1)).createConfigurationData(eq(uriPath),
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, null, Draft02.MediaTypes.DATA + XML, xmlData);
-        verify(restconfService, times(2)).createConfigurationData(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(2)).createConfigurationData(eq(uriPath),
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, null, MediaType.APPLICATION_JSON, jsonData);
-        verify(restconfService, times(3)).createConfigurationData(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(3)).createConfigurationData(eq(uriPath),
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, null, MediaType.APPLICATION_XML, xmlData);
-        verify(restconfService, times(4)).createConfigurationData(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(4)).createConfigurationData(eq(uriPath),
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, null, MediaType.TEXT_XML, xmlData);
-        verify(restconfService, times(5)).createConfigurationData(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(5)).createConfigurationData(eq(uriPath),
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, "fooMediaType", MediaType.TEXT_XML, xmlData);
-        verify(restconfService, times(6)).createConfigurationData(eq(uriPath), any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(6)).createConfigurationData(eq(uriPath),
+                any(NormalizedNodeContext.class), any(UriInfo.class));
     }
 
     @Test
+    @Ignore
     public void testPostConfigMediaTypes() throws UnsupportedEncodingException {
         final String uriPrefix = "/config/";
         final String uri = uriPrefix;
-        when(restconfService.createConfigurationData(any(CompositeNode.class), any(UriInfo.class))).thenReturn(null);
+        when(restconfService.createConfigurationData(any(NormalizedNodeContext.class),
+                any(UriInfo.class))).thenReturn(null);
         post(uri, null, Draft02.MediaTypes.DATA + JSON, jsonData);
-        verify(restconfService, times(1)).createConfigurationData(any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(1)).createConfigurationData(
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, null, Draft02.MediaTypes.DATA + XML, xmlData);
-        verify(restconfService, times(2)).createConfigurationData(any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(2)).createConfigurationData(
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, null, MediaType.APPLICATION_JSON, jsonData);
-        verify(restconfService, times(3)).createConfigurationData(any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(3)).createConfigurationData(
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, null, MediaType.APPLICATION_XML, xmlData);
-        verify(restconfService, times(4)).createConfigurationData(any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(4)).createConfigurationData(
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, null, MediaType.TEXT_XML, xmlData);
-        verify(restconfService, times(5)).createConfigurationData(any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(5)).createConfigurationData(
+                any(NormalizedNodeContext.class), any(UriInfo.class));
         post(uri, "fooMediaType", MediaType.TEXT_XML, xmlData);
-        verify(restconfService, times(6)).createConfigurationData(any(CompositeNode.class), any(UriInfo.class));
+        verify(restconfService, times(6)).createConfigurationData(
+                any(NormalizedNodeContext.class), any(UriInfo.class));
     }
 
     @Test