d29f8d2ed10a741f6533d5b9b4be1768a385e098
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / stmt / Bug5550Test.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.hamcrest.CoreMatchers.instanceOf;
11 import static org.hamcrest.MatcherAssert.assertThat;
12 import static org.junit.Assert.assertNotNull;
13
14 import org.junit.Test;
15 import org.opendaylight.yangtools.yang.common.QName;
16 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
17 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
18 import org.opendaylight.yangtools.yang.model.api.SchemaNode;
19
20 public class Bug5550Test {
21     private static final String NS = "foo";
22     private static final String REV = "2016-03-18";
23
24     @Test
25     public void test() throws Exception {
26         SchemaContext context = StmtTestUtils.parseYangSources("/bugs/bug5550");
27         assertNotNull(context);
28
29         QName root = QName.create(NS, REV, "root");
30         QName containerInGrouping = QName.create(NS, REV, "container-in-grouping");
31         QName leaf1 = QName.create(NS, REV, "leaf-1");
32
33         SchemaNode findDataSchemaNode = context.findDataTreeChild(root, containerInGrouping, leaf1).get();
34         assertThat(findDataSchemaNode, instanceOf(LeafSchemaNode.class));
35     }
36 }