Revert "Revert "Updated SchemaNodeIdentifier namespace handling.""
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / test / AugmentProcessTest.java
index 10cba77b1a6a035b7ea9057e8353ebe6a3157bbf..890c47b0fc65fa4f49d9d07cc97f84935cf055a5 100644 (file)
@@ -1,8 +1,27 @@
+/*
+ * Copyright (c) 2015 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.yangtools.yang.stmt.test;
 
 import static org.junit.Assert.assertEquals;
+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 java.net.URISyntaxException;
+
+import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
+import org.opendaylight.yangtools.yang.model.api.ChoiceCaseNode;
+import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode;
+import java.io.FileNotFoundException;
+import org.opendaylight.yangtools.yang.model.api.SchemaContext;
+import com.google.common.collect.ImmutableList;
 import java.net.URI;
 import org.junit.Test;
 import org.opendaylight.yangtools.yang.common.QName;
@@ -14,25 +33,26 @@ import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
 import org.opendaylight.yangtools.yang.model.api.Module;
 import org.opendaylight.yangtools.yang.model.api.meta.ModelStatement;
 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
+import org.opendaylight.yangtools.yang.parser.spi.meta.SomeModifiersUnresolvedException;
 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
 import org.opendaylight.yangtools.yang.parser.spi.source.StatementStreamSource;
 import org.opendaylight.yangtools.yang.parser.stmt.reactor.CrossSourceStatementReactor;
 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.YangInferencePipeline;
 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.YangStatementSourceImpl;
 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.EffectiveSchemaContext;
-import com.google.common.collect.ImmutableList;
+import org.opendaylight.yangtools.yang.common.SimpleDateFormatUtil;
 
 public class AugmentProcessTest {
 
     private static final YangStatementSourceImpl AUGMENTED = new YangStatementSourceImpl(
-            "/stmt-test/augments/augmented.yang");
+            "/stmt-test/augments/augmented.yang", false);
     private static final YangStatementSourceImpl ROOT = new YangStatementSourceImpl(
-            "/stmt-test/augments/aug-root.yang");
+            "/stmt-test/augments/aug-root.yang", false);
 
     private static final QNameModule ROOT_QNAME_MODULE = QNameModule.create(
-            URI.create("root"), null);
+            URI.create("root"), SimpleDateFormatUtil.DEFAULT_DATE_REV);
     private static final QNameModule AUGMENTED_QNAME_MODULE = QNameModule
-            .create(URI.create("aug"), null);
+            .create(URI.create("aug"), SimpleDateFormatUtil.DEFAULT_DATE_REV);
 
     private static GroupingDefinition grp2Def;
 
@@ -43,17 +63,17 @@ public class AugmentProcessTest {
     private final QName contTarget = QName.create(AUGMENTED_QNAME_MODULE,
             "cont-target");
 
-    private final QName contAdded1 = QName.create(AUGMENTED_QNAME_MODULE,
+    private final QName contAdded1 = QName.create(ROOT_QNAME_MODULE,
             "cont-added1");
-    private final QName contAdded2 = QName.create(AUGMENTED_QNAME_MODULE,
+    private final QName contAdded2 = QName.create(ROOT_QNAME_MODULE,
             "cont-added2");
 
-    private final QName list1 = QName.create(AUGMENTED_QNAME_MODULE, "list1");
-    private final QName axml = QName.create(AUGMENTED_QNAME_MODULE, "axml");
+    private final QName list1 = QName.create(ROOT_QNAME_MODULE, "list1");
+    private final QName axml = QName.create(ROOT_QNAME_MODULE, "axml");
 
-    private final QName contGrp = QName.create(AUGMENTED_QNAME_MODULE,
+    private final QName contGrp = QName.create(ROOT_QNAME_MODULE,
             "cont-grp");
-    private final QName axmlGrp = QName.create(AUGMENTED_QNAME_MODULE,
+    private final QName axmlGrp = QName.create(ROOT_QNAME_MODULE,
             "axml-grp");
 
     private final QName augCont1 = QName.create(ROOT_QNAME_MODULE, "aug-cont1");
@@ -65,34 +85,31 @@ public class AugmentProcessTest {
     private final QName grpAdd = QName.create(ROOT_QNAME_MODULE, "grp-add");
 
     private static final YangStatementSourceImpl MULTIPLE_AUGMENT = new YangStatementSourceImpl(
-            "/stmt-test/augments/multiple-augment-test.yang");
+            "/stmt-test/augments/multiple-augment-test.yang",false);
 
     private static final YangStatementSourceImpl MULTIPLE_AUGMENT_ROOT = new YangStatementSourceImpl(
-            "/stmt-test/augments/multiple-augment-root.yang");
+            "/stmt-test/augments/multiple-augment-root.yang",false);
     private static final YangStatementSourceImpl MULTIPLE_AUGMENT_IMPORTED = new YangStatementSourceImpl(
-            "/stmt-test/augments/multiple-augment-imported.yang");
+            "/stmt-test/augments/multiple-augment-imported.yang",false);
     private static final YangStatementSourceImpl MULTIPLE_AUGMENT_SUBMODULE = new YangStatementSourceImpl(
-            "/stmt-test/augments/multiple-augment-submodule.yang");
+            "/stmt-test/augments/multiple-augment-submodule.yang",false);
 
     private static final YangStatementSourceImpl MULTIPLE_AUGMENT_INCORRECT = new YangStatementSourceImpl(
-            "/stmt-test/augments/multiple-augment-incorrect.yang");
+            "/stmt-test/augments/multiple-augment-incorrect.yang",false);
 
     private static final YangStatementSourceImpl MULTIPLE_AUGMENT_INCORRECT2 = new YangStatementSourceImpl(
-            "/stmt-test/augments/multiple-augment-incorrect2.yang");
+            "/stmt-test/augments/multiple-augment-incorrect2.yang",false);
 
     @Test
-    public void multipleAugmentsAndMultipleModulesTest() throws SourceException,
-            ReactorException {
+    public void multipleAugmentsAndMultipleModulesTest()
+            throws SourceException, ReactorException {
         CrossSourceStatementReactor.BuildAction reactor = YangInferencePipeline.RFC6020_REACTOR
                 .newBuild();
-        addSources(reactor, MULTIPLE_AUGMENT_ROOT, MULTIPLE_AUGMENT_IMPORTED, MULTIPLE_AUGMENT_SUBMODULE);
+        addSources(reactor, MULTIPLE_AUGMENT_ROOT, MULTIPLE_AUGMENT_IMPORTED,
+                MULTIPLE_AUGMENT_SUBMODULE);
 
         EffectiveSchemaContext result = null;
-        try {
-            result = reactor.buildEffective();
-        } catch (Exception e) {
-            log(e, "");
-        }
+        result = reactor.buildEffective();
         assertNotNull(result);
     }
 
@@ -103,15 +120,11 @@ public class AugmentProcessTest {
         addSources(reactor, MULTIPLE_AUGMENT);
 
         EffectiveSchemaContext result = null;
-        try {
-            result = reactor.buildEffective();
-        } catch (Exception e) {
-            log(e, "");
-        }
+        result = reactor.buildEffective();
         assertNotNull(result);
     }
 
-    @Test
+    @Test(expected=SomeModifiersUnresolvedException.class)
     public void multipleAugmentIncorrectPathTest() throws SourceException,
             ReactorException {
         CrossSourceStatementReactor.BuildAction reactor = YangInferencePipeline.RFC6020_REACTOR
@@ -119,40 +132,22 @@ public class AugmentProcessTest {
         addSources(reactor, MULTIPLE_AUGMENT_INCORRECT);
 
         EffectiveSchemaContext result = null;
-        try {
-            result = reactor.buildEffective();
-        } catch (Exception e) {
-            log(e, "");
-        }
-
+        result = reactor.buildEffective();
         assertNull(result);
     }
 
-    @Test
-    public void multipleAugmentIncorrectPathAndGrpTest() throws SourceException,
-            ReactorException {
+    @Test(expected=SomeModifiersUnresolvedException.class)
+    public void multipleAugmentIncorrectPathAndGrpTest()
+            throws SourceException, ReactorException {
         CrossSourceStatementReactor.BuildAction reactor = YangInferencePipeline.RFC6020_REACTOR
                 .newBuild();
         addSources(reactor, MULTIPLE_AUGMENT_INCORRECT2);
-
         EffectiveSchemaContext result = null;
-        try {
-            result = reactor.buildEffective();
-        } catch (Exception e) {
-            log(e, "");
-        }
-
+        result = reactor.buildEffective();
         assertNull(result);
     }
 
-    private void log(Throwable e, String indent) {
-        System.out.println(indent + e.getMessage());
 
-        Throwable[] suppressed = e.getSuppressed();
-        for (Throwable throwable : suppressed) {
-            log(throwable, indent + "        ");
-        }
-    }
 
     @Test
     public void readAndParseYangFileTest() throws SourceException,
@@ -217,8 +212,8 @@ public class AugmentProcessTest {
         assertNotNull(grpAddNode);
     }
 
-    private <T extends ModelStatement> T findInStatements(QName target,
-            ImmutableList<T> statements) {
+    private static <T extends ModelStatement<?>> T findInStatements(final QName target,
+            final ImmutableList<T> statements) {
 
         for (final T statement : statements) {
             if (target
@@ -230,10 +225,30 @@ public class AugmentProcessTest {
         return null;
     }
 
-    private void addSources(CrossSourceStatementReactor.BuildAction reactor,
-            StatementStreamSource... sources) {
+    private static void addSources(final CrossSourceStatementReactor.BuildAction reactor,
+            final StatementStreamSource... sources) {
         for (StatementStreamSource source : sources) {
             reactor.addSource(source);
         }
     }
+
+    @Test
+    public void caseShortHandAugmentingTest() throws SourceException, FileNotFoundException, ReactorException, URISyntaxException {
+
+        SchemaContext context = StmtTestUtils.parseYangSources("/choice-case-type-test-models");
+
+        assertNotNull(context);
+
+        ContainerSchemaNode netconf =  (ContainerSchemaNode) context.getDataChildByName("netconf-state");
+        ContainerSchemaNode datastores =  (ContainerSchemaNode) netconf.getDataChildByName("datastores");
+        ListSchemaNode datastore =  (ListSchemaNode) datastores.getDataChildByName("datastore");
+        ContainerSchemaNode locks =  (ContainerSchemaNode) datastore.getDataChildByName("locks");
+        ChoiceSchemaNode lockType =  (ChoiceSchemaNode)locks.getDataChildByName("lock-type");
+
+        ChoiceCaseNode leafAugCase = lockType.getCaseNodeByName("leaf-aug-case");
+        assertTrue(leafAugCase.isAugmenting());
+        DataSchemaNode leafAug = leafAugCase.getDataChildByName("leaf-aug-case");
+        assertFalse(leafAug.isAugmenting());
+    }
+
 }