blob: 9797e5e4ec2ecc292a62ccbcad5b95bb0ec1ce82 [file] [log] [blame]
Gaurav Agrawala04483c2016-02-13 14:23:40 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Gaurav Agrawala04483c2016-02-13 14:23:40 +05303 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.yangutils.parser.impl.listeners;
18
19import org.junit.Test;
20import org.onosproject.yangutils.datamodel.YangModule;
21import org.onosproject.yangutils.datamodel.YangNode;
22import org.onosproject.yangutils.parser.exceptions.ParserException;
23import org.onosproject.yangutils.parser.impl.YangUtilsParserManager;
24
25import java.io.IOException;
26
27import static org.hamcrest.core.Is.is;
28import static org.junit.Assert.assertThat;
29
30/**
31 * Test cases for testing import listener functionality.
32 */
33public class ImportListenerTest {
34
35 private final YangUtilsParserManager manager = new YangUtilsParserManager();
36
37 /**
38 * Checks if mandatory parameter prefix is present in import.
39 */
40 @Test(expected = ParserException.class)
41 public void processImportWithoutPrefix() throws IOException, ParserException {
42
43 YangNode node = manager.getDataModel("src/test/resources/ImportWithoutPrefix.yang");
44 }
45
46 /**
47 * Checks that prefix must be present only once in import.
48 */
49 @Test(expected = ParserException.class)
50 public void processImportWithDualPrefix() throws IOException, ParserException {
51
52 YangNode node = manager.getDataModel("src/test/resources/ImportWithDualPrefix.yang");
53 }
54
55 /**
56 * Checks for the correct order of prefix in import.
57 */
58 @Test(expected = ParserException.class)
59 public void processImportInvalidOrder() throws IOException, ParserException {
60
61 YangNode node = manager.getDataModel("src/test/resources/ImportInvalidOrder.yang");
62 }
63
64 /**
65 * Checks if import listener updates the data model tree.
66 */
67 @Test
68 public void processImportValidEntry() throws IOException, ParserException {
69
70 YangNode node = manager.getDataModel("src/test/resources/ImportValidEntry.yang");
71
72 // Checks for the revision value in data model tree.
73 assertThat(((YangModule) node).getImportList().get(0).getRevision(), is("2015-02-03"));
74 // Checks for the prefix id in data model tree.
75 assertThat(((YangModule) node).getImportList().get(0).getPrefixId(), is("On2"));
76 // Checks for the module name in data model tree.
77 assertThat(((YangModule) node).getImportList().get(0).getModuleName(), is("ietf"));
78 }
79
80 /**
81 * Checks if optional parameter revision is not mandatory in import.
82 */
83 @Test
84 public void processImportWithoutRevision() throws IOException, ParserException {
85
86 YangNode node = manager.getDataModel("src/test/resources/ImportWithoutRevision.yang");
87
88 // Checks for the prefix id in data model tree.
89 assertThat(((YangModule) node).getImportList().get(0).getPrefixId(), is("On2"));
90 // Checks for the module name in data model tree.
91 assertThat(((YangModule) node).getImportList().get(0).getModuleName(), is("ietf"));
92 }
93
94 /**
95 * Checks if multiple imports are allowed.
96 */
97 @Test()
98 public void processImportMultipleInstance() throws IOException, ParserException {
99
100 YangNode node = manager.getDataModel("src/test/resources/ImportMultipleInstance.yang");
101
102 // Checks for the prefix id in data model tree.
103 assertThat(((YangModule) node).getImportList().get(0).getPrefixId(), is("On2"));
104 // Checks for the module name in data model tree.
105 assertThat(((YangModule) node).getImportList().get(0).getModuleName(), is("ietf"));
106
107 // Checks for the prefix id in data model tree.
108 assertThat(((YangModule) node).getImportList().get(1).getPrefixId(), is("On3"));
109 // Checks for the module name in data model tree.
110 assertThat(((YangModule) node).getImportList().get(1).getModuleName(), is("itut"));
111 }
112}