Bug 4640: Change semantic-version to openconfig-version
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / openconfigver / OpenconfigVersionComplexTest.java
diff --git a/yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/openconfigver/OpenconfigVersionComplexTest.java b/yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/stmt/openconfigver/OpenconfigVersionComplexTest.java
new file mode 100644 (file)
index 0000000..83a2304
--- /dev/null
@@ -0,0 +1,126 @@
+/*
+ * Copyright (c) 2016 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.openconfigver;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+
+import java.net.URI;
+import org.junit.Test;
+import org.opendaylight.yangtools.concepts.SemVer;
+import org.opendaylight.yangtools.yang.model.api.Module;
+import org.opendaylight.yangtools.yang.model.api.SchemaContext;
+import org.opendaylight.yangtools.yang.model.repo.api.StatementParserMode;
+import org.opendaylight.yangtools.yang.model.util.RevisionAwareXPathImpl;
+import org.opendaylight.yangtools.yang.model.util.SchemaContextUtil;
+import org.opendaylight.yangtools.yang.stmt.StmtTestUtils;
+
+public class OpenconfigVersionComplexTest {
+
+    @Test
+    public void complexTest1() throws Exception {
+        final SchemaContext context = StmtTestUtils.parseYangSources("/openconfig-version/complex/complex-1",
+                StatementParserMode.OPENCONFIG_VER_MODE);
+        verifySchemaContextTest1(context);
+    }
+
+    @Test
+    public void complexTest1Yang1_1() throws Exception {
+        final SchemaContext context = StmtTestUtils.parseYangSources("/rfc7950/openconfig-version/complex-1",
+                StatementParserMode.OPENCONFIG_VER_MODE);
+        verifySchemaContextTest1(context);
+    }
+
+    private static void verifySchemaContextTest1(final SchemaContext context) {
+        assertNotNull(context);
+
+        final Module foo = context.findModuleByNamespace(URI.create("foo")).iterator().next();
+        final Module semVer = context.findModuleByNamespace(
+            URI.create("http://openconfig.net/yang/openconfig-ext")).iterator().next();
+
+        // check module versions
+        assertEquals(SemVer.valueOf("1.3.95"), semVer.getOpenconfigVersion());
+        assertEquals(SemVer.valueOf("1.50.2"), foo.getOpenconfigVersion());
+
+        final Module bar = StmtTestUtils.findImportedModule(context, foo, "bar");
+        assertEquals(SemVer.valueOf("1.2.6"), bar.getOpenconfigVersion());
+
+        final Module foobar = StmtTestUtils.findImportedModule(context, bar, "foobar");
+        assertEquals(SemVer.valueOf("2.26.465"), foobar.getOpenconfigVersion());
+
+        // check imported components
+        assertNotNull("This component should be present", SchemaContextUtil.findDataSchemaNode(context, foo,
+                new RevisionAwareXPathImpl("/bar:root/bar:test-container/bar:number", true)));
+
+        assertNotNull("This component should be present", SchemaContextUtil.findDataSchemaNode(context, foo,
+                new RevisionAwareXPathImpl("/bar:should-present", true)));
+
+        // check not imported components
+        assertNull("This component should not be present", SchemaContextUtil.findDataSchemaNode(context, foo,
+                new RevisionAwareXPathImpl("/bar:root/bar:test-container/bar:oldnumber", true)));
+
+        assertNull("This component should not be present", SchemaContextUtil.findDataSchemaNode(context, foo,
+                new RevisionAwareXPathImpl("/bar:should-not-be-present", true)));
+    }
+
+    @Test
+    public void complexTest2() throws Exception {
+        final SchemaContext context = StmtTestUtils.parseYangSources("/openconfig-version/complex/complex-2",
+                StatementParserMode.OPENCONFIG_VER_MODE);
+        verifySchemaContextTest2(context);
+    }
+
+    @Test
+    public void complexTest2Yang1_1() throws Exception {
+        final SchemaContext context = StmtTestUtils.parseYangSources("/rfc7950/openconfig-version/complex-2",
+                StatementParserMode.OPENCONFIG_VER_MODE);
+        verifySchemaContextTest2(context);
+    }
+
+    private static void verifySchemaContextTest2(final SchemaContext context) {
+        assertNotNull(context);
+
+        final Module foo = context.findModuleByNamespace(URI.create("foo")).iterator().next();
+        final Module semVer = context.findModuleByNamespace(URI.create(
+            "http://openconfig.net/yang/openconfig-ext")).iterator().next();
+
+        // check module versions
+        assertEquals(SemVer.valueOf("2.5.50"), semVer.getOpenconfigVersion());
+        assertEquals(SemVer.valueOf("2.32.2"), foo.getOpenconfigVersion());
+
+        final Module bar = StmtTestUtils.findImportedModule(context, foo, "bar");
+        assertEquals(SemVer.valueOf("4.9.8"), bar.getOpenconfigVersion());
+
+        final Module foobar = StmtTestUtils.findImportedModule(context, bar, "foobar");
+        assertEquals(SemVer.valueOf("7.13.99"), foobar.getOpenconfigVersion());
+
+        // check used augmentations
+        assertNotNull("This component should be present", SchemaContextUtil.findDataSchemaNode(context, bar,
+                new RevisionAwareXPathImpl("/foobar:root/foobar:test-container/bar:should-present-leaf-1", true)));
+
+        assertNotNull("This component should be present", SchemaContextUtil.findDataSchemaNode(context, bar,
+                new RevisionAwareXPathImpl("/foobar:root/foobar:test-container/bar:should-present-leaf-2", true)));
+
+        // check not used augmentations
+        assertNull("This component should not be present",
+                SchemaContextUtil.findDataSchemaNode(context, bar, new RevisionAwareXPathImpl(
+                        "/foobar:root/foobar:test-container/bar:should-not-be-present-leaf-1", true)));
+
+        assertNull("This component should not be present",
+                SchemaContextUtil.findDataSchemaNode(context, bar, new RevisionAwareXPathImpl(
+                        "/foobar:root/foobar:test-container/bar:should-not-be-present-leaf-2", true)));
+
+        // check if correct foobar module was included
+        assertNotNull("This component should be present", SchemaContextUtil.findDataSchemaNode(context, bar,
+                new RevisionAwareXPathImpl("/foobar:root/foobar:included-correct-mark", true)));
+
+        assertNull("This component should not be present", SchemaContextUtil.findDataSchemaNode(context, bar,
+                new RevisionAwareXPathImpl("/foobar:root/foobar:included-not-correct-mark", true)));
+    }
+}