f4137be82da56ea48dfec5fc9e86dddf051c1d7a
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / stmt / Bug3799Test.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.assertNotNull;
12 import static org.junit.Assert.assertTrue;
13
14 import java.util.Collection;
15 import org.junit.Test;
16 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
17 import org.opendaylight.yangtools.yang.model.api.LeafSchemaNode;
18 import org.opendaylight.yangtools.yang.model.api.Module;
19 import org.opendaylight.yangtools.yang.model.api.NotificationDefinition;
20 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
21 import org.opendaylight.yangtools.yang.model.api.Submodule;
22
23 public class Bug3799Test {
24
25     @Test
26     public void test() throws Exception {
27         SchemaContext schema = StmtTestUtils.parseYangSources("/bugs/bug3799");
28         assertNotNull(schema);
29
30         Collection<? extends Module> modules = schema.getModules();
31         assertNotNull(modules);
32         assertEquals(1, modules.size());
33
34         Module testModule = modules.iterator().next();
35         Collection<? extends Submodule> subModules = testModule.getSubmodules();
36         assertNotNull(subModules);
37         assertEquals(1, subModules.size());
38
39         Submodule testSubmodule = subModules.iterator().next();
40
41         Collection<? extends NotificationDefinition> notifications = testSubmodule.getNotifications();
42         assertNotNull(notifications);
43         assertEquals(1, notifications.size());
44
45         NotificationDefinition bazNotification = notifications.iterator().next();
46         Collection<? extends DataSchemaNode> childNodes = bazNotification.getChildNodes();
47         assertNotNull(childNodes);
48         assertEquals(1, childNodes.size());
49
50         DataSchemaNode child = childNodes.iterator().next();
51         assertTrue(child instanceof LeafSchemaNode);
52
53         LeafSchemaNode leafBar = (LeafSchemaNode) child;
54         String bar = leafBar.getQName().getLocalName();
55         assertEquals("bar", bar);
56     }
57 }