blob: 542cd5a8cfab279e75ca7b72e1d3eb2d0355012b [file] [log] [blame]
Vidyashree Rama49abe712016-02-13 22:22:12 +05301/*
2 * Copyright 2016 Open Networking Laboratory
3 *
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.Rule;
20import org.junit.Test;
21
22import org.junit.rules.ExpectedException;
23import org.onosproject.yangutils.datamodel.YangModule;
24import org.onosproject.yangutils.datamodel.YangNode;
25import org.onosproject.yangutils.datamodel.YangNodeType;
26import org.onosproject.yangutils.datamodel.YangList;
27import org.onosproject.yangutils.parser.exceptions.ParserException;
28import org.onosproject.yangutils.parser.impl.YangUtilsParserManager;
29
30import java.io.IOException;
31import java.util.List;
32import java.util.ListIterator;
33
34import static org.hamcrest.MatcherAssert.assertThat;
35import static org.hamcrest.core.Is.is;
36
37/**
38 * Test cases for key listener.
39 */
40public class KeyListenerTest {
41
42 @Rule
43 public ExpectedException thrown = ExpectedException.none();
44
45 private final YangUtilsParserManager manager = new YangUtilsParserManager();
46
47 /**
48 * Checks key statement as sub-statement of list.
49 */
50 @Test
51 public void processListSubStatementKey() throws IOException, ParserException {
52
53 YangNode node = manager.getDataModel("src/test/resources/ListSubStatementKey.yang");
54
55 assertThat((node instanceof YangModule), is(true));
56
57 // Check whether the node type is set properly to module.
58 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
59
60 // Check whether the module name is set correctly.
61 YangModule yangNode = (YangModule) node;
62 assertThat(yangNode.getName(), is("Test"));
63
64 // Check whether the list is child of module
65 YangList yangList = (YangList) yangNode.getChild();
66 assertThat(yangList.getName(), is("valid"));
67
68 ListIterator<String> keyList = yangList.getKeyList().listIterator();
69 assertThat(keyList.next(), is("invalid-interval"));
70 }
71
72 /**
73 * Check multiple key values.
74 */
75 @Test
76 public void processMultipleKeyValues() throws IOException, ParserException {
77
78 YangNode node = manager.getDataModel("src/test/resources/MultipleKeyValues.yang");
79
80 assertThat((node instanceof YangModule), is(true));
81
82 // Check whether the node type is set properly to module.
83 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
84
85 // Check whether the module name is set correctly.
86 YangModule yangNode = (YangModule) node;
87 assertThat(yangNode.getName(), is("Test"));
88
89 // Check whether the list is child of module
90 YangList yangList = (YangList) yangNode.getChild();
91 assertThat(yangList.getName(), is("valid"));
92
93 List<String> keyList = yangList.getKeyList();
94 assertThat(keyList.contains("ospf"), is(true));
95 assertThat(keyList.contains("isis"), is(true));
96 }
97
98 /**
99 * Checks key statement without statement end.
100 */
101 @Test
102 public void processKeyWithoutStatementEnd() throws IOException, ParserException {
103 thrown.expect(ParserException.class);
104 thrown.expectMessage("mismatched input 'leaf' expecting {';', '+'}");
105 YangNode node = manager.getDataModel("src/test/resources/KeyWithoutStatementEnd.yang");
106 }
Vidyashree Ramaf4c617c2016-02-24 12:28:22 +0530107
108 /**
109 * Checks key values are set correctly.
110 */
111 @Test
112 public void processConfigFalseNoKey() throws IOException, ParserException {
113 YangNode node = manager.getDataModel("src/test/resources/ConfigFalseNoKey.yang");
114
115 assertThat((node instanceof YangModule), is(true));
116 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
117 YangModule yangNode = (YangModule) node;
118 assertThat(yangNode.getName(), is("Test"));
119
120 // Check whether the list is child of module
121 YangList yangList = (YangList) yangNode.getChild();
122 assertThat(yangList.getName(), is("valid"));
123 }
124
125 /**
126 * Checks key values are set correctly.
127 */
128 @Test
129 public void processConfigFalseValidKeyValidLeaf() throws IOException, ParserException {
130 YangNode node = manager.getDataModel("src/test/resources/ConfigFalseValidKeyValidLeaf.yang");
131
132 assertThat((node instanceof YangModule), is(true));
133 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
134 YangModule yangNode = (YangModule) node;
135 assertThat(yangNode.getName(), is("Test"));
136
137 // Check whether the list is child of module
138 YangList yangList = (YangList) yangNode.getChild();
139 assertThat(yangList.getName(), is("valid"));
140
141 ListIterator<String> keyList = yangList.getKeyList().listIterator();
142 assertThat(keyList.next(), is("invalid-interval"));
143 }
144
145 /**
146 * Checks key values are set correctly.
147 */
148 @Test
149 public void processConfigFalseValidKeyValidLeafList() throws IOException, ParserException {
150 YangNode node = manager.getDataModel("src/test/resources/ConfigFalseValidKeyValidLeafList.yang");
151
152 assertThat((node instanceof YangModule), is(true));
153 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
154 YangModule yangNode = (YangModule) node;
155 assertThat(yangNode.getName(), is("Test"));
156
157 // Check whether the list is child of module
158 YangList yangList = (YangList) yangNode.getChild();
159 assertThat(yangList.getName(), is("valid"));
160
161 ListIterator<String> keyList = yangList.getKeyList().listIterator();
162 assertThat(keyList.next(), is("invalid-interval"));
163 }
164
165 /**
166 * Checks whether exception is thrown when list's config is set to true and there is no key.
167 */
168 @Test
169 public void processConfigTrueNoKey() throws IOException, ParserException {
170 thrown.expect(ParserException.class);
171 thrown.expectMessage("A list must have atleast one key leaf if config is true");
172 YangNode node = manager.getDataModel("src/test/resources/ConfigTrueNoKey.yang");
173 }
174
175 /**
176 * Checks whether exception is thrown when list's config is set to true and there is no leaf.
177 */
178 @Test
179 public void processConfigTrueNoleafNoLeafList() throws IOException, ParserException {
180 thrown.expect(ParserException.class);
181 thrown.expectMessage("A list must have atleast one key leaf if config is true");
182 YangNode node = manager.getDataModel("src/test/resources/ConfigTrueNoleafNoLeafList.yang");
183 }
184
185 /**
186 * Checks key values are set correctly.
187 */
188 @Test
189 public void processConfigTrueValidKeyValidLeaf() throws IOException, ParserException {
190 YangNode node = manager.getDataModel("src/test/resources/ConfigTrueValidKeyValidLeaf.yang");
191
192 assertThat((node instanceof YangModule), is(true));
193 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
194 YangModule yangNode = (YangModule) node;
195 assertThat(yangNode.getName(), is("Test"));
196
197 // Check whether the list is child of module
198 YangList yangList = (YangList) yangNode.getChild();
199 assertThat(yangList.getName(), is("valid"));
200
201 ListIterator<String> keyList = yangList.getKeyList().listIterator();
202 assertThat(keyList.next(), is("invalid-interval"));
203 }
204
205 /**
206 * Checks whether exception is thrown when key leaf identifier is not found in list.
207 */
208 @Test
209 public void processInvalidLeafIdentifier() throws IOException, ParserException {
210 thrown.expect(ParserException.class);
211 thrown.expectMessage("Leaf identifier must refer to a child leaf of the list");
212 YangNode node = manager.getDataModel("src/test/resources/InvalidLeafIdentifier.yang");
213 }
214
215 /**
216 * Checks whether exception is thrown when key leaf-list identifier is not found in list.
217 */
218 @Test
219 public void processInvalidLeafListIdentifier() throws IOException, ParserException {
220 thrown.expect(ParserException.class);
221 thrown.expectMessage("Leaf-list identifier must refer to a child leaf of the list");
222 YangNode node = manager.getDataModel("src/test/resources/InvalidLeafListIdentifier.yang");
223 }
224
225 /**
226 * Checks whether exception is thrown when key leaf-list is of type empty.
227 */
228 @Test
229 public void processKeyLeafListTypeEmpty() throws IOException, ParserException {
230 thrown.expect(ParserException.class);
231 thrown.expectMessage("A leaf-list that is part of the key must not be the built-in type \"empty\".");
232 YangNode node = manager.getDataModel("src/test/resources/KeyLeafListTypeEmpty.yang");
233 }
234
235 /**
236 * Checks whether exception is thrown when key leaf is of type empty.
237 */
238 @Test
239 public void processKeyLeafTypeEmpty() throws IOException, ParserException {
240 thrown.expect(ParserException.class);
241 thrown.expectMessage("A leaf that is part of the key must not be the built-in type \"empty\".");
242 YangNode node = manager.getDataModel("src/test/resources/KeyLeafTypeEmpty.yang");
243 }
Vidyashree Rama49abe712016-02-13 22:22:12 +0530244}