d16136907653eddc8f1ac07ee98a400dde0073dc
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / yin / YinFileLeafListStmtTest.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.yin;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertNotNull;
13
14 import java.net.URISyntaxException;
15 import java.util.Set;
16 import org.junit.Before;
17 import org.junit.Test;
18 import org.opendaylight.yangtools.yang.common.QName;
19 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
20 import org.opendaylight.yangtools.yang.model.api.LeafListSchemaNode;
21 import org.opendaylight.yangtools.yang.model.api.Module;
22 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
23 import org.opendaylight.yangtools.yang.stmt.TestUtils;
24
25 public class YinFileLeafListStmtTest {
26
27     private Set<Module> modules;
28
29     @Before
30     public void init() throws URISyntaxException, ReactorException {
31         modules = TestUtils.loadYinModules(getClass().getResource("/semantic-statement-parser/yin/modules").toURI());
32         assertEquals(9, modules.size());
33     }
34
35     @Test
36     public void testLeafList() {
37         final Module testModule = TestUtils.findModule(modules, "ietf-netconf-monitoring");
38         assertNotNull(testModule);
39
40         ContainerSchemaNode container = (ContainerSchemaNode) testModule.getDataChildByName(QName.create(
41                 testModule.getQNameModule(), "netconf-state"));
42         assertNotNull(container);
43
44         container = (ContainerSchemaNode) container.getDataChildByName(QName.create(testModule.getQNameModule(),
45                 "capabilities"));
46         assertNotNull(container);
47
48         final LeafListSchemaNode leafList = (LeafListSchemaNode) container.getDataChildByName(QName.create(
49                 testModule.getQNameModule(), "capability"));
50         assertNotNull(leafList);
51         assertEquals("uri", leafList.getType().getQName().getLocalName());
52         assertEquals("List of NETCONF capabilities supported by the server.", leafList.getDescription());
53         assertFalse(leafList.isUserOrdered());
54     }
55 }