2318eb4c5ef7542659472af55ff7e294ad80a41a
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / stmt / Bug1413Test.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.model.api.ExtensionDefinition;
15
16 /**
17  * Test ANTLR4 grammar capability to parse unknown node in extension argument
18  * declaration.
19  *
20  * <p>
21  * Note: Everything under unknown node is unknown node.
22  */
23 public class Bug1413Test {
24     @Test
25     public void test() throws Exception {
26         var extensions = TestUtils.loadModules("/bugs/bug1413").findModules("bug1413").iterator().next()
27             .getExtensionSchemaNodes();
28         assertEquals(1, extensions.size());
29
30         ExtensionDefinition info = extensions.iterator().next();
31         assertEquals("text", info.getArgument());
32         assertTrue(info.isYinElement());
33     }
34 }