Update StmtTestUtils
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / ParsingExtensionValueTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.stmt;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertTrue;
12
13 import org.junit.Test;
14 import org.opendaylight.yangtools.yang.parser.spi.meta.SomeModifiersUnresolvedException;
15 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
16
17 /**
18  * Test for testing of extensions and their arguments.
19  *
20  * @author Lukas Sedlak <lsedlak@cisco.com>
21  */
22 public class ParsingExtensionValueTest {
23
24     @Test
25     public void extensionTest() throws Exception {
26         try {
27             TestUtils.loadModules(getClass().getResource("/extensions").toURI());
28         } catch (Exception e) {
29             assertEquals(SomeModifiersUnresolvedException.class, e.getClass());
30             assertTrue(e.getCause() instanceof SourceException);
31             assertTrue(e.getCause().getMessage().startsWith("ext:id is not a YANG statement or use of extension"));
32         }
33     }
34 }