X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2Fjson%2Fto%2Fcnsn%2Ftest%2FJsonIdentityrefToCnSnTest.java;h=86c1595386a2f0fb9ef8fd36003ad057ec85c519;hb=81236f34ad88ffcb71c8d7cdb15b82bad2e50251;hp=cda635e84713a86f6fbe1485b00d78e83889e6a2;hpb=bdcd6c4baea3357499a1fcdff459259b56373baa;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/json/to/cnsn/test/JsonIdentityrefToCnSnTest.java b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/json/to/cnsn/test/JsonIdentityrefToCnSnTest.java index cda635e847..86c1595386 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/json/to/cnsn/test/JsonIdentityrefToCnSnTest.java +++ b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/json/to/cnsn/test/JsonIdentityrefToCnSnTest.java @@ -7,20 +7,8 @@ */ package org.opendaylight.controller.sal.restconf.impl.json.to.cnsn.test; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertTrue; - -import java.util.List; import org.junit.BeforeClass; -import org.junit.Test; -import org.opendaylight.controller.sal.rest.impl.JsonToCompositeNodeProvider; -import org.opendaylight.controller.sal.restconf.impl.test.TestUtils; import org.opendaylight.controller.sal.restconf.impl.test.YangAndXmlAndDataSchemaLoader; -import org.opendaylight.yangtools.yang.common.QName; -import org.opendaylight.yangtools.yang.data.api.CompositeNode; -import org.opendaylight.yangtools.yang.data.api.Node; -import org.opendaylight.yangtools.yang.data.api.SimpleNode; public class JsonIdentityrefToCnSnTest extends YangAndXmlAndDataSchemaLoader { @@ -29,57 +17,4 @@ public class JsonIdentityrefToCnSnTest extends YangAndXmlAndDataSchemaLoader { dataLoad("/json-to-cnsn/identityref", 2, "identityref-module", "cont"); } - @Test - public void jsonIdentityrefToCompositeNode() { - Node node = TestUtils.readInputToCnSn("/json-to-cnsn/identityref/json/data.json", false, - JsonToCompositeNodeProvider.INSTANCE); - assertNotNull(node); - - TestUtils.normalizeCompositeNode(node, modules, searchedModuleName + ":" + searchedDataSchemaName); - - assertEquals("cont", node.getNodeType().getLocalName()); - - assert(node instanceof CompositeNode); - List> childs = ((CompositeNode)node).getValue(); - assertEquals(1, childs.size()); - Node nd = childs.iterator().next(); - assertTrue(nd instanceof CompositeNode); - assertEquals("cont1", nd.getNodeType().getLocalName()); - - childs = ((CompositeNode) nd).getValue(); - assertEquals(4, childs.size()); - SimpleNode lf11 = null; - SimpleNode lf12 = null; - SimpleNode lf13 = null; - SimpleNode lf14 = null; - for (Node child : childs) { - assertTrue(child instanceof SimpleNode); - if (child.getNodeType().getLocalName().equals("lf11")) { - lf11 = (SimpleNode) child; - } else if (child.getNodeType().getLocalName().equals("lf12")) { - lf12 = (SimpleNode) child; - } else if (child.getNodeType().getLocalName().equals("lf13")) { - lf13 = (SimpleNode) child; - } else if (child.getNodeType().getLocalName().equals("lf14")) { - lf14 = (SimpleNode) child; - } - } - - assertTrue(lf11.getValue() instanceof QName); - assertEquals("iden", ((QName) lf11.getValue()).getLocalName()); - assertEquals("identity:module", ((QName) lf11.getValue()).getNamespace().toString()); - - assertTrue(lf12.getValue() instanceof QName); - assertEquals("iden_local", ((QName) lf12.getValue()).getLocalName()); - assertEquals("identityref:module", ((QName) lf12.getValue()).getNamespace().toString()); - - assertTrue(lf13.getValue() instanceof QName); - assertEquals("iden_local", ((QName) lf13.getValue()).getLocalName()); - assertEquals("identityref:module", ((QName) lf13.getValue()).getNamespace().toString()); - - assertTrue(lf14.getValue() instanceof QName); - assertEquals("iden_local", ((QName) lf14.getValue()).getLocalName()); - assertEquals("identity:module", ((QName) lf14.getValue()).getNamespace().toString()); - } - }