Bug 4540: Yang parser exceptions should follow consistent path
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / test / SubstatementValidatorTest.java
1 /*
2  * Copyright (c) 2015 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
9 package org.opendaylight.yangtools.yang.stmt.test;
10
11 import static org.junit.Assert.assertNotNull;
12 import static org.junit.Assert.assertTrue;
13 import java.io.ByteArrayOutputStream;
14 import java.io.PrintStream;
15 import java.io.UnsupportedEncodingException;
16 import java.net.URISyntaxException;
17 import java.util.NoSuchElementException;
18 import java.util.Set;
19 import org.junit.After;
20 import org.junit.Before;
21 import org.junit.Rule;
22 import org.junit.Test;
23 import org.junit.rules.ExpectedException;
24 import org.opendaylight.yangtools.yang.model.api.Module;
25 import org.opendaylight.yangtools.yang.parser.spi.meta.MissingSubstatementException;
26 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
27 import org.opendaylight.yangtools.yang.stmt.retest.TestUtils;
28
29 public class SubstatementValidatorTest {
30
31     private final PrintStream stdout = System.out;
32     private final ByteArrayOutputStream output = new ByteArrayOutputStream();
33     private String testLog;
34
35     @Rule
36     public ExpectedException expectedEx = ExpectedException.none();
37
38     @Before
39     public void setUp() throws UnsupportedEncodingException {
40         System.setOut(new PrintStream(output, true, "UTF-8"));
41     }
42
43     @After
44     public void cleanUp() {
45         System.setOut(stdout);
46     }
47
48     @Test
49     public void noException() throws URISyntaxException, ReactorException {
50         Set<Module> modules = TestUtils.loadModules(getClass().getResource("/augment-test/augment-in-augment").toURI());
51         assertNotNull(modules);
52     }
53
54     @Test
55     public void undesirableElementException() throws URISyntaxException, ReactorException {
56         Set<Module> modules = TestUtils.loadModules(getClass().getResource
57                 ("/substatement-validator/undesirable-element").toURI());
58         testLog = output.toString();
59         assertTrue(testLog.contains("TYPE is not valid for REVISION"));
60     }
61
62     @Test
63     public void maximalElementCountException() throws URISyntaxException, ReactorException {
64         Set<Module> modules = TestUtils.loadModules(getClass().getResource
65                 ("/substatement-validator/maximal-element").toURI());
66         testLog = output.toString();
67         assertTrue(testLog.contains("Maximal count of DESCRIPTION for AUGMENT is 1"));
68     }
69
70     @Test
71     public void missingElementException() throws URISyntaxException, ReactorException {
72         expectedEx.expect(MissingSubstatementException.class);
73
74         Set<Module> modules = TestUtils.loadModules(getClass().getResource
75                 ("/substatement-validator/missing-element").toURI());
76     }
77
78     @Test
79     public void emptyElementException() throws URISyntaxException, ReactorException {
80         expectedEx.expect(NoSuchElementException.class);
81
82         Set<Module> modules = TestUtils.loadModules(getClass().getResource
83                 ("/substatement-validator/empty-element").toURI());
84     }
85
86     @Test
87     public void bug4310test() throws URISyntaxException, ReactorException {
88         expectedEx.expect(IllegalArgumentException.class);
89
90         Set<Module> modules = TestUtils.loadModules(getClass().getResource
91                 ("/substatement-validator/bug-4310").toURI());
92     }
93 }