Search in sources :

Example 86 with NormalizedNodeContext

use of org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext in project netconf by opendaylight.

the class TestXmlBodyReader method findFooContainerUsingNamespaceTest.

/**
 * Test when container with the same name is placed in two modules (foo-module and bar-module). Namespace must be
 * used to distinguish between them to find correct one. Check if container was found not only according to its name
 * but also by correct namespace used in payload.
 */
@Test
public void findFooContainerUsingNamespaceTest() throws Exception {
    mockBodyReader("", this.xmlBodyReader, true);
    final InputStream inputStream = TestXmlBodyReader.class.getResourceAsStream("/instanceidentifier/xml/xmlDataFindFooContainer.xml");
    final NormalizedNodeContext returnValue = this.xmlBodyReader.readFrom(null, null, null, this.mediaType, null, inputStream);
    // check return value
    checkNormalizedNodeContext(returnValue);
    // check if container was found both according to its name and namespace
    assertEquals("Not correct container found, name was ignored", "foo-bar-container", returnValue.getData().getIdentifier().getNodeType().getLocalName());
    assertEquals("Not correct container found, namespace was ignored", "foo:module", returnValue.getData().getIdentifier().getNodeType().getNamespace().toString());
}
Also used : InputStream(java.io.InputStream) NormalizedNodeContext(org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext) Test(org.junit.Test)

Example 87 with NormalizedNodeContext

use of org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext in project netconf by opendaylight.

the class TestXmlBodyReader method runXmlTest.

private void runXmlTest(final boolean isPost, final String path) throws Exception {
    mockBodyReader(path, xmlBodyReader, isPost);
    final InputStream inputStream = TestXmlBodyReader.class.getResourceAsStream("/foo-xml-test/foo.xml");
    final NormalizedNodeContext nnc = xmlBodyReader.readFrom(null, null, null, mediaType, null, inputStream);
    assertNotNull(nnc);
    assertTrue(nnc.getData() instanceof MapEntryNode);
    final MapEntryNode data = (MapEntryNode) nnc.getData();
    assertEquals(2, data.size());
    for (final DataContainerChild child : data.body()) {
        switch(child.getIdentifier().getNodeType().getLocalName()) {
            case "key-leaf":
                assertEquals("key-value", child.body());
                break;
            case "ordinary-leaf":
                assertEquals("leaf-value", child.body());
                break;
            default:
                fail();
        }
    }
}
Also used : DataContainerChild(org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild) InputStream(java.io.InputStream) MapEntryNode(org.opendaylight.yangtools.yang.data.api.schema.MapEntryNode) NormalizedNodeContext(org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext)

Example 88 with NormalizedNodeContext

use of org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext in project netconf by opendaylight.

the class TestXmlBodyReader method moduleSubContainerAugmentDataPostTest.

@Test
public void moduleSubContainerAugmentDataPostTest() throws Exception {
    final DataSchemaNode dataSchemaNode = schemaContext.getDataChildByName(QName.create(INSTANCE_IDENTIFIER_MODULE_QNAME, "cont"));
    final Module augmentModule = schemaContext.findModules(XMLNamespace.of("augment:module")).iterator().next();
    final QName contAugmentQName = QName.create(augmentModule.getQNameModule(), "cont-augment");
    final YangInstanceIdentifier.AugmentationIdentifier augII = new YangInstanceIdentifier.AugmentationIdentifier(Sets.newHashSet(contAugmentQName));
    final YangInstanceIdentifier dataII = YangInstanceIdentifier.of(dataSchemaNode.getQName()).node(augII).node(contAugmentQName);
    final String uri = "instance-identifier-module:cont";
    mockBodyReader(uri, this.xmlBodyReader, true);
    final InputStream inputStream = TestXmlBodyReader.class.getResourceAsStream("/instanceidentifier/xml/xml_augment_container.xml");
    final NormalizedNodeContext returnValue = this.xmlBodyReader.readFrom(null, null, null, this.mediaType, null, inputStream);
    checkNormalizedNodeContext(returnValue);
    checkExpectValueNormalizeNodeContext(dataSchemaNode, returnValue, dataII);
}
Also used : DataSchemaNode(org.opendaylight.yangtools.yang.model.api.DataSchemaNode) QName(org.opendaylight.yangtools.yang.common.QName) InputStream(java.io.InputStream) QNameModule(org.opendaylight.yangtools.yang.common.QNameModule) Module(org.opendaylight.yangtools.yang.model.api.Module) YangInstanceIdentifier(org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier) NormalizedNodeContext(org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext) Test(org.junit.Test)

Example 89 with NormalizedNodeContext

use of org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext in project netconf by opendaylight.

the class TestXmlBodyReader method moduleSubContainerChoiceAugmentDataPostTest.

@Test
public void moduleSubContainerChoiceAugmentDataPostTest() throws Exception {
    final DataSchemaNode dataSchemaNode = schemaContext.getDataChildByName(QName.create(INSTANCE_IDENTIFIER_MODULE_QNAME, "cont"));
    final Module augmentModule = schemaContext.findModules(XMLNamespace.of("augment:module")).iterator().next();
    final QName augmentChoice1QName = QName.create(augmentModule.getQNameModule(), "augment-choice1");
    final QName augmentChoice2QName = QName.create(augmentChoice1QName, "augment-choice2");
    final QName containerQName = QName.create(augmentChoice1QName, "case-choice-case-container1");
    final YangInstanceIdentifier.AugmentationIdentifier augChoice1II = new YangInstanceIdentifier.AugmentationIdentifier(Sets.newHashSet(augmentChoice1QName));
    final YangInstanceIdentifier.AugmentationIdentifier augChoice2II = new YangInstanceIdentifier.AugmentationIdentifier(Sets.newHashSet(augmentChoice2QName));
    final YangInstanceIdentifier dataII = YangInstanceIdentifier.of(dataSchemaNode.getQName()).node(augChoice1II).node(augmentChoice1QName).node(augChoice2II).node(augmentChoice2QName).node(containerQName);
    final String uri = "instance-identifier-module:cont";
    mockBodyReader(uri, this.xmlBodyReader, true);
    final InputStream inputStream = TestXmlBodyReader.class.getResourceAsStream("/instanceidentifier/xml/xml_augment_choice_container.xml");
    final NormalizedNodeContext returnValue = this.xmlBodyReader.readFrom(null, null, null, this.mediaType, null, inputStream);
    checkNormalizedNodeContext(returnValue);
    checkExpectValueNormalizeNodeContext(dataSchemaNode, returnValue, dataII);
}
Also used : DataSchemaNode(org.opendaylight.yangtools.yang.model.api.DataSchemaNode) QName(org.opendaylight.yangtools.yang.common.QName) InputStream(java.io.InputStream) QNameModule(org.opendaylight.yangtools.yang.common.QNameModule) Module(org.opendaylight.yangtools.yang.model.api.Module) YangInstanceIdentifier(org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier) NormalizedNodeContext(org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext) Test(org.junit.Test)

Example 90 with NormalizedNodeContext

use of org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext in project netconf by opendaylight.

the class TestXmlBodyReaderMountPoint method findFooContainerUsingNamespaceTest.

/**
 * Test when container with the same name is placed in two modules (foo-module and bar-module). Namespace must be
 * used to distinguish between them to find correct one. Check if container was found not only according to its name
 * but also by correct namespace used in payload.
 */
@Test
public void findFooContainerUsingNamespaceTest() throws Exception {
    mockBodyReader("instance-identifier-module:cont/yang-ext:mount", this.xmlBodyReader, true);
    final InputStream inputStream = TestXmlBodyReader.class.getResourceAsStream("/instanceidentifier/xml/xmlDataFindFooContainer.xml");
    final NormalizedNodeContext returnValue = this.xmlBodyReader.readFrom(null, null, null, this.mediaType, null, inputStream);
    // check return value
    checkMountPointNormalizedNodeContext(returnValue);
    // check if container was found both according to its name and namespace
    assertEquals("Not correct container found, name was ignored", "foo-bar-container", returnValue.getData().getIdentifier().getNodeType().getLocalName());
    assertEquals("Not correct container found, namespace was ignored", "foo:module", returnValue.getData().getIdentifier().getNodeType().getNamespace().toString());
}
Also used : InputStream(java.io.InputStream) NormalizedNodeContext(org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext) Test(org.junit.Test)

Aggregations

NormalizedNodeContext (org.opendaylight.netconf.sal.rest.impl.NormalizedNodeContext)105 Test (org.junit.Test)70 InputStream (java.io.InputStream)36 AbstractBodyReaderTest (org.opendaylight.controller.sal.rest.impl.test.providers.AbstractBodyReaderTest)34 DataSchemaNode (org.opendaylight.yangtools.yang.model.api.DataSchemaNode)34 QName (org.opendaylight.yangtools.yang.common.QName)25 YangInstanceIdentifier (org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier)22 ContainerNode (org.opendaylight.yangtools.yang.data.api.schema.ContainerNode)21 NodeIdentifier (org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier)18 RestconfDocumentedException (org.opendaylight.restconf.common.errors.RestconfDocumentedException)13 LeafSchemaNode (org.opendaylight.yangtools.yang.model.api.LeafSchemaNode)13 Module (org.opendaylight.yangtools.yang.model.api.Module)12 ByteArrayOutputStream (java.io.ByteArrayOutputStream)9 OutputStream (java.io.OutputStream)9 NormalizedNode (org.opendaylight.yangtools.yang.data.api.schema.NormalizedNode)9 ContainerSchemaNode (org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode)9 UriInfo (javax.ws.rs.core.UriInfo)8 DOMMountPoint (org.opendaylight.mdsal.dom.api.DOMMountPoint)8 QNameModule (org.opendaylight.yangtools.yang.common.QNameModule)8 IOException (java.io.IOException)7