/* * 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.yin; import static org.hamcrest.CoreMatchers.startsWith; import static org.hamcrest.MatcherAssert.assertThat; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertThrows; import java.io.IOException; import java.net.URISyntaxException; import org.junit.Test; import org.opendaylight.yangtools.concepts.SemVer; import org.opendaylight.yangtools.yang.common.XMLNamespace; import org.opendaylight.yangtools.yang.model.api.Module; import org.opendaylight.yangtools.yang.model.api.SchemaContext; import org.opendaylight.yangtools.yang.parser.api.ImportResolutionMode; import org.opendaylight.yangtools.yang.parser.api.YangParserConfiguration; import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException; import org.opendaylight.yangtools.yang.stmt.StmtTestUtils; import org.xml.sax.SAXException; @Deprecated(since = "8.0.4", forRemoval = true) public class YinOpenconfigVersionTest { private static final YangParserConfiguration SEMVER = YangParserConfiguration.builder() .importResolutionMode(ImportResolutionMode.OPENCONFIG_SEMVER) .build(); @Test public void basicTest() throws URISyntaxException, SAXException, IOException, ReactorException { SchemaContext context = StmtTestUtils.parseYinSources("/openconfig-version/yin-input/basic", SEMVER); assertNotNull(context); Module foo = context.findModules(XMLNamespace.of("foo")).iterator().next(); Module bar = context.findModules(XMLNamespace.of("bar")).iterator().next(); Module semVer = context.findModules(XMLNamespace.of("http://openconfig.net/yang/openconfig-ext")) .iterator().next(); assertEquals(SemVer.valueOf("0.0.1"), semVer.getSemanticVersion().get()); assertEquals(SemVer.valueOf("0.1.1"), foo.getSemanticVersion().get()); assertEquals(SemVer.valueOf("0.1.2"), bar.getSemanticVersion().get()); } @Test public void basicImportTest1() throws URISyntaxException, SAXException, IOException, ReactorException { SchemaContext context = StmtTestUtils.parseYinSources("/openconfig-version/yin-input/basic-import", SEMVER); assertNotNull(context); Module foo = context.findModules(XMLNamespace.of("foo")).iterator().next(); Module semVer = context.findModules(XMLNamespace.of("http://openconfig.net/yang/openconfig-ext")) .iterator().next(); assertEquals(SemVer.valueOf("0.0.1"), semVer.getSemanticVersion().get()); assertEquals(SemVer.valueOf("0.1.1"), foo.getSemanticVersion().get()); Module bar = StmtTestUtils.findImportedModule(context, foo, "bar"); assertEquals(SemVer.valueOf("0.1.2"), bar.getSemanticVersion().get()); } @Test public void basicImportErrTest1() { ReactorException ex = assertThrows(ReactorException.class, () -> StmtTestUtils.parseYinSources("/openconfig-version/yin-input/basic-import-invalid", SEMVER)); assertThat(ex.getCause().getMessage(), startsWith("Unable to find module compatible with requested import [bar(0.1.2)].")); } }