Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / yin / YinFileChoiceStmtTest.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 import static org.junit.Assert.assertTrue;
14
15 import java.io.IOException;
16 import java.net.URISyntaxException;
17 import java.util.Iterator;
18 import org.junit.Before;
19 import org.junit.Test;
20 import org.opendaylight.yangtools.yang.common.QName;
21 import org.opendaylight.yangtools.yang.model.api.ChoiceCaseNode;
22 import org.opendaylight.yangtools.yang.model.api.ChoiceSchemaNode;
23 import org.opendaylight.yangtools.yang.model.api.ContainerSchemaNode;
24 import org.opendaylight.yangtools.yang.model.api.ListSchemaNode;
25 import org.opendaylight.yangtools.yang.model.api.Module;
26 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
27 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
28 import org.opendaylight.yangtools.yang.stmt.TestUtils;
29 import org.xml.sax.SAXException;
30
31 public class YinFileChoiceStmtTest {
32
33     private SchemaContext context;
34
35     @Before
36     public void init() throws ReactorException, SAXException, IOException, URISyntaxException {
37         context = TestUtils.loadYinModules(getClass().getResource("/semantic-statement-parser/yin/modules").toURI());
38         assertEquals(9, context.getModules().size());
39     }
40
41     @Test
42     public void testChoiceAndCases() {
43         final Module testModule = TestUtils.findModule(context, "config").get();
44         assertNotNull(testModule);
45
46         final ContainerSchemaNode container = (ContainerSchemaNode) testModule.getDataChildByName(QName.create(
47                 testModule.getQNameModule(), "modules"));
48         assertNotNull(container);
49
50         final ListSchemaNode list = (ListSchemaNode) container.getDataChildByName(QName.create(
51                 testModule.getQNameModule(), "module"));
52         assertNotNull(list);
53
54         ChoiceSchemaNode choice = (ChoiceSchemaNode) list.getDataChildByName(QName.create(testModule.getQNameModule(),
55                 "configuration"));
56         assertNotNull(choice);
57
58         assertEquals("configuration", choice.getQName().getLocalName());
59         assertTrue(choice.isMandatory());
60         assertTrue(choice.isConfiguration());
61         assertEquals(1, choice.getCases().size());
62
63         // this choice is augmented (see main-impl.yang.xml)
64         final Iterator<ChoiceCaseNode> casesIterator = choice.getCases().values().iterator();
65         final ChoiceCaseNode caseNode = casesIterator.next();
66         assertEquals("main-impl", caseNode.getQName().getLocalName());
67         assertEquals(13, caseNode.getChildNodes().size());
68
69         assertTrue(caseNode.getWhenCondition().isPresent());
70
71         choice = (ChoiceSchemaNode) list.getDataChildByName(QName.create(testModule.getQNameModule(), "state"));
72         assertNotNull(choice);
73
74         assertEquals("state", choice.getQName().getLocalName());
75         assertFalse(choice.isMandatory());
76         assertFalse(choice.isConfiguration());
77         assertTrue(choice.getCases().isEmpty());
78     }
79 }