Add missing copyright text
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / cnsn / to / json / test / CnSnJsonBasicYangTypesTest.java
index 0f059f5024cdc7c70dc7042f488e9fa22c32da55..1be9294ad95da94206949b4af99fd0568610f909 100644 (file)
@@ -12,30 +12,19 @@ import static org.junit.Assert.assertFalse;
 import static org.junit.Assert.assertNotNull;
 import static org.junit.Assert.assertNull;
 import static org.junit.Assert.assertTrue;
-
 import com.google.gson.stream.JsonReader;
 import com.google.gson.stream.JsonToken;
 import java.io.IOException;
 import java.io.StringReader;
 import java.util.Map;
 import java.util.Set;
-import javax.ws.rs.WebApplicationException;
 import org.junit.BeforeClass;
-import org.junit.Test;
-import org.opendaylight.controller.sal.rest.impl.StructuredDataToJsonProvider;
-import org.opendaylight.controller.sal.rest.impl.XmlToCompositeNodeProvider;
-import org.opendaylight.controller.sal.restconf.impl.test.TestUtils;
 import org.opendaylight.controller.sal.restconf.impl.test.YangAndXmlAndDataSchemaLoader;
 import org.opendaylight.controller.sal.restconf.impl.test.structures.Cont;
 import org.opendaylight.controller.sal.restconf.impl.test.structures.Lf;
 import org.opendaylight.controller.sal.restconf.impl.test.structures.LfLst;
 import org.opendaylight.controller.sal.restconf.impl.test.structures.Lst;
 import org.opendaylight.controller.sal.restconf.impl.test.structures.LstItem;
-import org.opendaylight.yangtools.yang.data.api.CompositeNode;
-import org.opendaylight.yangtools.yang.data.api.ModifyAction;
-import org.opendaylight.yangtools.yang.data.api.MutableCompositeNode;
-import org.opendaylight.yangtools.yang.data.api.MutableSimpleNode;
-import org.opendaylight.yangtools.yang.data.impl.NodeFactory;
 
 public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
 
@@ -44,52 +33,16 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
         dataLoad("/cnsn-to-json/simple-yang-types", 1, "simple-yang-types", "cont1");
     }
 
-    /**
-     * Test of json output when as input are specified composite node with empty data + YANG file
-     */
-
-    @Test
-    public void compositeNodeAndYangWithJsonReaderEmptyDataTest() {
-        CompositeNode compositeNode = prepareCompositeNodeWithEmpties();
-        TestUtils.normalizeCompositeNode(compositeNode, modules, searchedModuleName + ":" + searchedDataSchemaName);
-        String jsonOutput = null;
-        try {
-            jsonOutput = TestUtils.writeCompNodeWithSchemaContextToOutput(compositeNode, modules, dataSchemaNode,
-                    StructuredDataToJsonProvider.INSTANCE);
-        } catch (WebApplicationException | IOException e) {
-        }
-
-        verifyJsonOutputForEmptyData(jsonOutput);
-    }
-
-    /**
-     * Test of json output when as input are specified xml file (no empty elements)and YANG file
-     */
-    @Test
-    public void xmlAndYangTypesWithJsonReaderTest() {
-        CompositeNode compositeNode = TestUtils.readInputToCnSn("/cnsn-to-json/simple-yang-types/xml/data.xml",
-                XmlToCompositeNodeProvider.INSTANCE);
-        TestUtils.normalizeCompositeNode(compositeNode, modules, searchedModuleName + ":" + searchedDataSchemaName);
-        String jsonOutput = null;
-        try {
-            jsonOutput = TestUtils.writeCompNodeWithSchemaContextToOutput(compositeNode, modules, dataSchemaNode,
-                    StructuredDataToJsonProvider.INSTANCE);
-        } catch (WebApplicationException | IOException e) {
-        }
-
-        verifyJsonOutput(jsonOutput);
-    }
-
     private void verifyJsonOutputForEmptyData(final String jsonOutput) {
         assertNotNull(jsonOutput);
-        StringReader strReader = new StringReader(jsonOutput);
-        JsonReader jReader = new JsonReader(strReader);
+        final StringReader strReader = new StringReader(jsonOutput);
+        final JsonReader jReader = new JsonReader(strReader);
 
         String exception = null;
         Cont dataFromJson = null;
         try {
             dataFromJson = jsonReadCont1(jReader);
-        } catch (IOException e) {
+        } catch (final IOException e) {
             exception = e.getMessage();
         }
 
@@ -101,14 +54,14 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
 
     private void verifyJsonOutput(final String jsonOutput) {
         assertNotNull(jsonOutput);
-        StringReader strReader = new StringReader(jsonOutput);
-        JsonReader jReader = new JsonReader(strReader);
+        final StringReader strReader = new StringReader(jsonOutput);
+        final JsonReader jReader = new JsonReader(strReader);
 
         String exception = null;
         Cont dataFromJson = null;
         try {
             dataFromJson = jsonReadCont1(jReader);
-        } catch (IOException e) {
+        } catch (final IOException e) {
             exception = e.getMessage();
         }
 
@@ -134,7 +87,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
     private Cont jsonReadCont1Elements(final JsonReader jReader, final Cont redData) throws IOException {
         jReader.beginObject();
         while (jReader.hasNext()) {
-            String keyName = jReader.nextName();
+            final String keyName = jReader.nextName();
             if (keyName.equals("lf11")) {
                 redData.addLf(new Lf(keyName, nextValue(jReader)));
             } else if (keyName.equals("lflst11")) {
@@ -142,7 +95,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
                 lfLst = jsonReadLflstValues(jReader, lfLst);
                 redData.addLfLst(lfLst);
             } else if (keyName.equals("lflst12")) {
-                LfLst lfLst = new LfLst(keyName);
+                final LfLst lfLst = new LfLst(keyName);
                 jsonReadLflstValues(jReader, lfLst);
                 redData.addLfLst(lfLst);
             } else if (keyName.equals("lst11")) {
@@ -162,7 +115,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
         jReader.beginArray();
 
         while (jReader.hasNext()) {
-            LstItem lstItem = jsonReadLst11Elements(jReader);
+            final LstItem lstItem = jsonReadLst11Elements(jReader);
             lst.addLstItem(lstItem);
         }
         jReader.endArray();
@@ -170,10 +123,10 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
     }
 
     private LstItem jsonReadLst11Elements(final JsonReader jReader) throws IOException {
-        LstItem lstItem = new LstItem();
+        final LstItem lstItem = new LstItem();
         jReader.beginObject();
         while (jReader.hasNext()) {
-            String keyName = jReader.nextName();
+            final String keyName = jReader.nextName();
             if (keyName.equals("lf111")) {
                 lstItem.addLf(new Lf(keyName, nextValue(jReader)));
             } else if (keyName.equals("lf112")) {
@@ -201,7 +154,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
     private Lst jsonReadLst112(final JsonReader jReader, final Lst lst) throws IOException {
         jReader.beginArray();
         while (jReader.hasNext()) {
-            LstItem lstItem = jsonReadLst112Elements(jReader);
+            final LstItem lstItem = jsonReadLst112Elements(jReader);
             lst.addLstItem(lstItem);
         }
         jReader.endArray();
@@ -209,10 +162,10 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
     }
 
     private LstItem jsonReadLst112Elements(final JsonReader jReader) throws IOException {
-        LstItem lstItem = new LstItem();
+        final LstItem lstItem = new LstItem();
         jReader.beginObject();
         if (jReader.hasNext()) {
-            String keyName = jReader.nextName();
+            final String keyName = jReader.nextName();
             if (keyName.equals("lf1121")) {
                 lstItem.addLf(new Lf(keyName, nextValue(jReader)));
             }
@@ -225,7 +178,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
     private Lst jsonReadLst111(final JsonReader jReader, final Lst lst) throws IOException {
         jReader.beginArray();
         while (jReader.hasNext()) {
-            LstItem lstItem = jsonReadLst111Elements(jReader);
+            final LstItem lstItem = jsonReadLst111Elements(jReader);
             lst.addLstItem(lstItem);
         }
         jReader.endArray();
@@ -233,10 +186,10 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
     }
 
     private LstItem jsonReadLst111Elements(final JsonReader jReader) throws IOException {
-        LstItem lstItem = new LstItem();
+        final LstItem lstItem = new LstItem();
         jReader.beginObject();
         if (jReader.hasNext()) {
-            String keyName = jReader.nextName();
+            final String keyName = jReader.nextName();
             if (keyName.equals("lf1111")) {
                 lstItem.addLf(new Lf(keyName, nextValue(jReader)));
             }
@@ -265,7 +218,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
 
     private Cont jsonReadCont111Elements(final JsonReader jReader, final Cont cont) throws IOException {
         while (jReader.hasNext()) {
-            String keyName = jReader.nextName();
+            final String keyName = jReader.nextName();
             if (keyName.equals("lf1111")) {
                 cont.addLf(new Lf(keyName, nextValue(jReader)));
             } else if (keyName.equals("lflst1111")) {
@@ -287,7 +240,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
     private Lst jsonReadLst1111(final JsonReader jReader, final Lst lst) throws IOException {
         jReader.beginArray();
         while (jReader.hasNext()) {
-            LstItem lstItem = jsonReadLst1111Elements(jReader);
+            final LstItem lstItem = jsonReadLst1111Elements(jReader);
             lst.addLstItem(lstItem);
         }
         jReader.endArray();
@@ -296,9 +249,9 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
 
     private LstItem jsonReadLst1111Elements(final JsonReader jReader) throws IOException {
         jReader.beginObject();
-        LstItem lstItem = new LstItem();
+        final LstItem lstItem = new LstItem();
         while (jReader.hasNext()) {
-            String keyName = jReader.nextName();
+            final String keyName = jReader.nextName();
             if (keyName.equals("lf1111A") || keyName.equals("lf1111B")) {
                 lstItem.addLf(new Lf(keyName, nextValue(jReader)));
             }
@@ -321,17 +274,17 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
         assertTrue(dataFromJson.getLfLsts().isEmpty());
         assertTrue(dataFromJson.getConts().isEmpty());
 
-        Map<String, Lst> lsts = dataFromJson.getLsts();
+        final Map<String, Lst> lsts = dataFromJson.getLsts();
         assertEquals(1, lsts.size());
-        Lst lst11 = lsts.get("lst11");
+        final Lst lst11 = lsts.get("lst11");
         assertNotNull(lst11);
-        Set<LstItem> lstItems = lst11.getLstItems();
+        final Set<LstItem> lstItems = lst11.getLstItems();
         assertNotNull(lstItems);
 
         LstItem lst11_1 = null;
         LstItem lst11_2 = null;
         LstItem lst11_3 = null;
-        for (LstItem lstItem : lstItems) {
+        for (final LstItem lstItem : lstItems) {
             if (lstItem.getLfs().get("lf111").getValue().equals(1)) {
                 lst11_1 = lstItem;
             } else if (lstItem.getLfs().get("lf111").getValue().equals(2)) {
@@ -361,7 +314,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
         assertEquals(1, lst11_2.getConts().size());
         assertEquals(1, lst11_2.getLsts().size());
 
-        Cont lst11_2_cont111 = lst11_2.getConts().get("cont111");
+        final Cont lst11_2_cont111 = lst11_2.getConts().get("cont111");
 
         // -cont111
         assertNotNull(lst11_2_cont111);
@@ -385,7 +338,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
         assertTrue(lst11_3.getLsts().isEmpty());
 
         // -cont111
-        Cont lst11_3_cont111 = lst11_3.getConts().get("cont111");
+        final Cont lst11_3_cont111 = lst11_3.getConts().get("cont111");
         assertEquals(0, lst11_3_cont111.getLfs().size());
         assertEquals(0, lst11_3_cont111.getLfLsts().size());
         assertEquals(1, lst11_3_cont111.getLsts().size());
@@ -422,14 +375,14 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
         assertTrue(lflst12.getLfs().contains(new Lf("lflst12 str3")));
 
         assertEquals(1, dataFromJson.getLsts().size());
-        Lst lst11 = dataFromJson.getLsts().get("lst11");
+        final Lst lst11 = dataFromJson.getLsts().get("lst11");
         assertNotNull(lst11);
         assertEquals(2, lst11.getLstItems().size());
 
         LstItem lst11_1 = null;
         LstItem lst11_2 = null;
-        for (LstItem lstItem : lst11.getLstItems()) {
-            Lf lf = lstItem.getLfs().get("lf111");
+        for (final LstItem lstItem : lst11.getLstItems()) {
+            final Lf lf = lstItem.getLfs().get("lf111");
             if (lf != null && lf.getValue().equals(140)) {
                 lst11_1 = lstItem;
             } else if (lf != null && lf.getValue().equals(141)) {
@@ -449,7 +402,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
 
         assertEquals(lst11_2.getLfs().get("lf112"), new Lf("lf112", "lf112 str2"));
 
-        Cont lst11_2_cont = lst11_2.getConts().get("cont111");
+        final Cont lst11_2_cont = lst11_2.getConts().get("cont111");
         assertEquals(0, lst11_2_cont.getConts().size());
         assertEquals(1, lst11_2_cont.getLfLsts().size());
         assertEquals(1, lst11_2_cont.getLfs().size());
@@ -479,7 +432,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
 
         assertEquals(lst11_1.getLfs().get("lf112"), new Lf("lf112", "lf112 str"));
 
-        Cont lst11_1_cont = lst11_1.getConts().get("cont111");
+        final Cont lst11_1_cont = lst11_1.getConts().get("cont111");
         assertEquals(0, lst11_1_cont.getConts().size());
         assertEquals(1, lst11_1_cont.getLfLsts().size());
         assertEquals(1, lst11_1_cont.getLfs().size());
@@ -501,8 +454,8 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
     private void checkLst11x(final Lst lst, final LstItem... lstItems) {
         assertNotNull(lst);
 
-        Lst requiredLst = new Lst(lst.getName());
-        for (LstItem lstItem : lstItems) {
+        final Lst requiredLst = new Lst(lst.getName());
+        for (final LstItem lstItem : lstItems) {
             requiredLst.addLstItem(lstItem);
         }
 
@@ -513,7 +466,7 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
     private void checkLst1111(final Set<LstItem> lstItems, final Lf lf11, final Lf lf12, final Lf lf21, final Lf lf22) {
         LstItem lst11_1_cont_lst1111_1 = null;
         LstItem lst11_1_cont_lst1111_2 = null;
-        for (LstItem lstItem : lstItems) {
+        for (final LstItem lstItem : lstItems) {
             if (new LstItem().addLf(lf11).addLf(lf12).equals(lstItem)) {
                 lst11_1_cont_lst1111_1 = lstItem;
             } else if (new LstItem().addLf(lf21).addLf(lf22).equals(lstItem)) {
@@ -525,166 +478,4 @@ public class CnSnJsonBasicYangTypesTest extends YangAndXmlAndDataSchemaLoader {
         assertNotNull(lst11_1_cont_lst1111_2);
     }
 
-    private CompositeNode prepareCompositeNodeWithEmpties() {
-        MutableCompositeNode cont1 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("cont1", "simple:yang:types", "2013-11-5"), null, null, ModifyAction.CREATE, null);
-
-        // lst11_1
-        MutableCompositeNode lst11_1 = NodeFactory
-                .createMutableCompositeNode(TestUtils.buildQName("lst11", "simple:yang:types", "2013-11-5"), cont1,
-                        null, ModifyAction.CREATE, null);
-        cont1.getValue().add(lst11_1);
-
-        MutableSimpleNode<?> lf111_1 = NodeFactory.createMutableSimpleNode(
-                TestUtils.buildQName("lf111", "simple:yang:types", "2013-11-5"), lst11_1, (short) 1,
-                ModifyAction.CREATE, null);
-        lst11_1.getValue().add(lf111_1);
-
-        // lst111_1_1
-        MutableCompositeNode lst111_1_1 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("lst111", "simple:yang:types", "2013-11-5"), lst11_1, null, ModifyAction.CREATE,
-                null);
-        lst11_1.getValue().add(lst111_1_1);
-        MutableSimpleNode<?> lf1111_1_1 = NodeFactory.createMutableSimpleNode(
-                TestUtils.buildQName("lf1111", "simple:yang:types", "2013-11-5"), lst111_1_1, 34, ModifyAction.CREATE,
-                null);
-        lst111_1_1.getValue().add(lf1111_1_1);
-        lst111_1_1.init();
-        // :lst111_1_1
-
-        // lst111_1_2
-        MutableCompositeNode lst111_1_2 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("lst111", "simple:yang:types", "2013-11-5"), lst11_1, null, ModifyAction.CREATE,
-                null);
-        lst11_1.getValue().add(lst111_1_2);
-        MutableSimpleNode<?> lf1111_1_2 = NodeFactory.createMutableSimpleNode(
-                TestUtils.buildQName("lf1111", "simple:yang:types", "2013-11-5"), lst111_1_2, 35, ModifyAction.CREATE,
-                null);
-        lst111_1_2.getValue().add(lf1111_1_2);
-        lst111_1_2.init();
-        // :lst111_1_2
-
-        // lst111_1_3
-        MutableCompositeNode lst111_1_3 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("lst111", "simple:yang:types", "2013-11-5"), lst11_1, null, ModifyAction.CREATE,
-                null);
-        lst11_1.getValue().add(lst111_1_3);
-        lst111_1_2.init();
-        // :lst111_1_3
-
-        // lst111_1_4
-        MutableCompositeNode lst111_1_4 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("lst111", "simple:yang:types", "2013-11-5"), lst11_1, null, ModifyAction.CREATE,
-                null);
-        lst11_1.getValue().add(lst111_1_4);
-        lst111_1_2.init();
-        // :lst111_1_4
-
-        MutableCompositeNode cont111_1 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("cont111", "simple:yang:types", "2013-11-5"), lst11_1, null, ModifyAction.CREATE,
-                null);
-        lst11_1.getValue().add(cont111_1);
-
-        lst11_1.init();
-        // :lst11_1
-
-        // lst11_2
-        MutableCompositeNode lst11_2 = NodeFactory
-                .createMutableCompositeNode(TestUtils.buildQName("lst11", "simple:yang:types", "2013-11-5"), cont1,
-                        null, ModifyAction.CREATE, null);
-        cont1.getValue().add(lst11_2);
-
-        MutableSimpleNode<?> lf111_2 = NodeFactory.createMutableSimpleNode(
-                TestUtils.buildQName("lf111", "simple:yang:types", "2013-11-5"), lst11_2, (short) 2,
-                ModifyAction.CREATE, null);
-        lst11_2.getValue().add(lf111_2);
-
-        // cont111_2
-        MutableCompositeNode cont111_2 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("cont111", "simple:yang:types", "2013-11-5"), lst11_2, null, ModifyAction.CREATE,
-                null);
-        lst11_2.getValue().add(cont111_2);
-
-        MutableSimpleNode<?> lflst1111_2_2 = NodeFactory.createMutableSimpleNode(
-                TestUtils.buildQName("lflst1111", "simple:yang:types", "2013-11-5"), cont111_2, 1024,
-                ModifyAction.CREATE, null);
-        cont111_2.getValue().add(lflst1111_2_2);
-        MutableSimpleNode<?> lflst1111_2_3 = NodeFactory.createMutableSimpleNode(
-                TestUtils.buildQName("lflst1111", "simple:yang:types", "2013-11-5"), cont111_2, 4096,
-                ModifyAction.CREATE, null);
-        cont111_2.getValue().add(lflst1111_2_3);
-
-        // lst1111_2
-        MutableCompositeNode lst1111_2_1 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("lst1111", "simple:yang:types", "2013-11-5"), cont111_2, null,
-                ModifyAction.CREATE, null);
-        cont111_2.getValue().add(lst1111_2_1);
-        MutableSimpleNode<?> lf1111B_2_1 = NodeFactory.createMutableSimpleNode(
-                TestUtils.buildQName("lf1111B", "simple:yang:types", "2013-11-5"), lst1111_2_1, (short) 4,
-                ModifyAction.CREATE, null);
-        lst1111_2_1.getValue().add(lf1111B_2_1);
-        lst1111_2_1.init();
-
-        MutableCompositeNode lst1111_2_2 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("lst1111", "simple:yang:types", "2013-11-5"), cont111_2, null,
-                ModifyAction.CREATE, null);
-        cont111_2.getValue().add(lst1111_2_2);
-        MutableSimpleNode<?> lf1111A_2_2 = NodeFactory.createMutableSimpleNode(
-                TestUtils.buildQName("lf1111A", "simple:yang:types", "2013-11-5"), lst1111_2_2, "lf1111A str12",
-                ModifyAction.CREATE, null);
-        lst1111_2_2.getValue().add(lf1111A_2_2);
-        lst1111_2_2.init();
-        // :lst1111_2
-
-        cont111_2.init();
-        // :cont111_2
-
-        MutableCompositeNode lst112_2 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("lst112", "simple:yang:types", "2013-11-5"), lst11_2, null, ModifyAction.CREATE,
-                null);
-        lst11_2.getValue().add(lst112_2);
-        lst112_2.init();
-        lst11_2.init();
-
-        // :lst11_2
-
-        // lst11_3
-        MutableCompositeNode lst11_3 = NodeFactory
-                .createMutableCompositeNode(TestUtils.buildQName("lst11", "simple:yang:types", "2013-11-5"), cont1,
-                        null, ModifyAction.CREATE, null);
-        cont1.getValue().add(lst11_3);
-
-        MutableSimpleNode<?> lf111_3 = NodeFactory.createMutableSimpleNode(
-                TestUtils.buildQName("lf111", "simple:yang:types", "2013-11-5"), lst11_3, (short) 3,
-                ModifyAction.CREATE, null);
-        lst11_3.getValue().add(lf111_3);
-
-        // cont111_3
-        MutableCompositeNode cont111_3 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("cont111", "simple:yang:types", "2013-11-5"), lst11_3, null, ModifyAction.CREATE,
-                null);
-        lst11_3.getValue().add(cont111_3);
-
-        MutableCompositeNode lst1111_3_1 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("lst1111", "simple:yang:types", "2013-11-5"), cont111_3, null,
-                ModifyAction.CREATE, null);
-        cont111_3.getValue().add(lst1111_3_1);
-        lst1111_3_1.init();
-
-        MutableCompositeNode lst1111_3_2 = NodeFactory.createMutableCompositeNode(
-                TestUtils.buildQName("lst1111", "simple:yang:types", "2013-11-5"), cont111_3, null,
-                ModifyAction.CREATE, null);
-        cont111_3.getValue().add(lst1111_3_2);
-        lst1111_3_2.init();
-
-        cont111_3.init();
-        // :cont111_3
-
-        lst11_3.init();
-        // :lst11_3
-
-        cont1.init();
-        return cont1;
-    }
-
 }