Bug 5693: IOException after first parsing phase - stream closed
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / retest / Bug5693Test.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.retest;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12
13 import java.io.File;
14 import java.io.FileNotFoundException;
15 import org.junit.Before;
16 import org.junit.Test;
17 import org.opendaylight.yangtools.yang.model.api.Module;
18 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
19 import org.opendaylight.yangtools.yang.parser.util.NamedFileInputStream;
20
21 public class Bug5693Test {
22
23     private final String pathToModuleFoo = getClass().getResource("/bugs/bug5693/foo.xml").getPath();
24     private Module foo;
25
26     /**
27      * Use input stream to load Yin module.
28      */
29     @Before
30     public void initTest() throws FileNotFoundException, ReactorException {
31         foo = TestUtils.loadYinModule(new NamedFileInputStream(new File(pathToModuleFoo), pathToModuleFoo));
32         assertNotNull(foo);
33     }
34
35     /**
36      * Test presence of testing feature (parsed in the last phase), if it is present then parsing was successful.
37      * Meaning that stream was not closed after the first parsing phase.
38      */
39     @Test
40     public void bug5693Test() {
41         assertNotNull(foo.getFeatures());
42         assertEquals("Module should has exactly one feature", 1, foo.getFeatures().size());
43         assertEquals("Present feature should has expected local name", "test-input-stream-not-closed",
44                 foo.getFeatures().iterator().next().getQName().getLocalName());
45     }
46 }