Bug 2358 - Remove tests cnsn to json and add tests nn to json
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / nn / to / json / test / NnToJsonNotExistingLeafTypeTest.java
diff --git a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/nn/to/json/test/NnToJsonNotExistingLeafTypeTest.java b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/nn/to/json/test/NnToJsonNotExistingLeafTypeTest.java
new file mode 100644 (file)
index 0000000..94ad703
--- /dev/null
@@ -0,0 +1,89 @@
+/*
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.controller.sal.restconf.impl.nn.to.json.test;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+import com.google.common.base.Preconditions;
+import org.junit.Test;
+import org.opendaylight.controller.sal.restconf.impl.InstanceIdentifierContext;
+import org.opendaylight.controller.sal.restconf.impl.NormalizedNodeContext;
+import org.opendaylight.controller.sal.restconf.impl.test.DummyType;
+import org.opendaylight.controller.sal.restconf.impl.test.TestUtils;
+import org.opendaylight.yangtools.yang.common.QName;
+import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.NodeIdentifier;
+import org.opendaylight.yangtools.yang.data.api.schema.ContainerNode;
+import org.opendaylight.yangtools.yang.data.api.schema.NormalizedNodes;
+import org.opendaylight.yangtools.yang.data.impl.schema.Builders;
+import org.opendaylight.yangtools.yang.data.impl.schema.builder.api.DataContainerNodeAttrBuilder;
+import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
+import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
+import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
+import org.opendaylight.yangtools.yang.model.api.SchemaPath;
+import org.opendaylight.yangtools.yang.parser.builder.impl.ContainerSchemaNodeBuilder;
+import org.opendaylight.yangtools.yang.parser.builder.impl.LeafSchemaNodeBuilder;
+
+public class NnToJsonNotExistingLeafTypeTest {
+
+    @Test
+    public void incorrectTopLevelElementTest() {
+        final NormalizedNodeContext normalizedNodeContext = prepareNormalizedNode();
+        assertNotNull(normalizedNodeContext);
+        assertEquals(normalizedNodeContext.getData().getNodeType()
+                .getLocalName(), "cont");
+
+        final String output = NormalizedNodes.toStringTree(normalizedNodeContext
+                .getData());
+        assertNotNull(output);
+        assertTrue(output.contains("lf1"));
+    }
+
+    private NormalizedNodeContext prepareNormalizedNode() {
+        final QName lf1 = QName.create("simple:uri", "2012-12-17", "lf1");
+
+        final DataSchemaNode contSchemaNode = prepareDataSchemaNode();
+
+        Preconditions.checkState(contSchemaNode instanceof ContainerSchemaNode);
+        final ContainerSchemaNode conContSchemaNode = (ContainerSchemaNode) contSchemaNode;
+
+        final DataContainerNodeAttrBuilder<NodeIdentifier, ContainerNode> contContBuilder = Builders
+                .containerBuilder(conContSchemaNode);
+
+        final DataSchemaNode lf1SchemaNode = conContSchemaNode
+                .getDataChildByName(lf1);
+        Preconditions.checkState(lf1SchemaNode instanceof LeafSchemaNode);
+
+        final String lf1String = "";
+        contContBuilder.withChild(Builders
+                .leafBuilder((LeafSchemaNode) lf1SchemaNode)
+                .withValue(lf1String).build());
+
+        final NormalizedNodeContext testNormalizedNodeContext = new NormalizedNodeContext(
+                new InstanceIdentifierContext<DataSchemaNode>(null,
+                        contSchemaNode, null, null), contContBuilder.build());
+
+        return testNormalizedNodeContext;
+    }
+
+    private DataSchemaNode prepareDataSchemaNode() {
+        final ContainerSchemaNodeBuilder contBuild = new ContainerSchemaNodeBuilder(
+                "module", 1, TestUtils.buildQName("cont", "simple:uri",
+                        "2012-12-17"), SchemaPath.create(true,
+                        QName.create("dummy")));
+        final LeafSchemaNodeBuilder leafBuild = new LeafSchemaNodeBuilder("module",
+                2, TestUtils.buildQName("lf1", "simple:uri", "2012-12-17"),
+                SchemaPath.create(true, QName.create("dummy")));
+        leafBuild.setType(new DummyType());
+        leafBuild.setConfiguration(true);
+
+        contBuild.addChildNode(leafBuild);
+        return contBuild.build();
+    }
+
+}