blob: 43abb458c799d57c808b03438f72eda1e25276c2 [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
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053019import java.io.IOException;
20import java.util.ListIterator;
21
Vidyashree Rama49abe712016-02-13 22:22:12 +053022import org.junit.Rule;
23import org.junit.Test;
Vidyashree Rama49abe712016-02-13 22:22:12 +053024import org.junit.rules.ExpectedException;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053025import org.onosproject.yangutils.datamodel.YangContainer;
26import org.onosproject.yangutils.datamodel.YangDataTypes;
Vidyashree Rama49abe712016-02-13 22:22:12 +053027import org.onosproject.yangutils.datamodel.YangLeafList;
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053028import org.onosproject.yangutils.datamodel.YangList;
Vidyashree Rama49abe712016-02-13 22:22:12 +053029import org.onosproject.yangutils.datamodel.YangModule;
30import org.onosproject.yangutils.datamodel.YangNode;
31import org.onosproject.yangutils.datamodel.YangNodeType;
Vidyashree Rama49abe712016-02-13 22:22:12 +053032import org.onosproject.yangutils.datamodel.YangStatusType;
Vidyashree Rama49abe712016-02-13 22:22:12 +053033import org.onosproject.yangutils.parser.exceptions.ParserException;
34import org.onosproject.yangutils.parser.impl.YangUtilsParserManager;
35
Vidyashree Rama49abe712016-02-13 22:22:12 +053036import static org.hamcrest.MatcherAssert.assertThat;
37import static org.hamcrest.core.Is.is;
38
39/**
40 * Test cases for testing leaf-list listener.
41 */
42public class LeafListListenerTest {
43
44 @Rule
45 public ExpectedException thrown = ExpectedException.none();
46
47 private final YangUtilsParserManager manager = new YangUtilsParserManager();
48
49 /**
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053050 * Checks all the values of leaf-list sub-statements are set correctly.
Vidyashree Rama49abe712016-02-13 22:22:12 +053051 */
52 @Test
53 public void processLeafListSubStatements() throws IOException, ParserException {
54
55 YangNode node = manager.getDataModel("src/test/resources/LeafListSubStatements.yang");
56
57 // Check whether the data model tree returned is of type module.
58 assertThat((node instanceof YangModule), is(true));
59
60 // Check whether the node type is set properly to module.
61 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
62
63 // Check whether the module name is set correctly.
64 YangModule yangNode = (YangModule) node;
65 assertThat(yangNode.getName(), is("Test"));
66
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053067 ListIterator<YangLeafList> leafListIterator = yangNode.getListOfLeafList().listIterator();
68 YangLeafList leafListInfo = leafListIterator.next();
Vidyashree Rama49abe712016-02-13 22:22:12 +053069
70 assertThat(leafListInfo.getLeafName(), is("invalid-interval"));
71 assertThat(leafListInfo.getDataType().getDataTypeName(), is("\"uint16\""));
72 assertThat(leafListInfo.getDataType().getDataType(), is(YangDataTypes.UINT16));
73 assertThat(leafListInfo.getUnits(), is("\"seconds\""));
74 assertThat(leafListInfo.getDescription(), is("\"Interval before a route is declared invalid\""));
75 assertThat(leafListInfo.isConfig(), is(true));
76 assertThat(leafListInfo.getMaxElelements(), is(3));
77 assertThat(leafListInfo.getStatus(), is(YangStatusType.CURRENT));
78 assertThat(leafListInfo.getReference(), is("\"RFC 6020\""));
79 }
80
81 /**
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053082 * Checks whether exception is thrown when leaf-list identifier starts with
83 * digit.
Vidyashree Rama49abe712016-02-13 22:22:12 +053084 */
85 @Test
86 public void processLeafListInvalidIdentifier() throws IOException, ParserException {
87 thrown.expect(ParserException.class);
Vidyashree Rama468f8282016-03-04 19:08:35 +053088 thrown.expectMessage("YANG file error : leaf-list name 1invalid-interval is not valid.");
Vidyashree Rama49abe712016-02-13 22:22:12 +053089 YangNode node = manager.getDataModel("src/test/resources/LeafListInvalidIdentifier.yang");
90 }
91
92 /**
Vinod Kumar S0c330cd2016-02-23 22:36:57 +053093 * Checks whether exception is thrown when leaf-list keyword is incorrect.
Vidyashree Rama49abe712016-02-13 22:22:12 +053094 */
95 @Test
96 public void processLeafListInvalidStatement() throws IOException, ParserException {
97 thrown.expect(ParserException.class);
Bharat saraswal870c56f2016-02-20 21:57:16 +053098 thrown.expectMessage("mismatched input 'leaflist' expecting {'augment', 'choice', 'contact', 'container',"
99 + " 'description', 'extension', 'deviation', 'feature', 'grouping', 'identity', 'import', 'include',"
100 + " 'leaf', 'leaf-list', 'list', 'namespace', 'notification', 'organization', 'prefix', 'reference',"
101 + " 'revision', 'rpc', 'typedef', 'uses', 'yang-version', '}'}");
Vidyashree Rama49abe712016-02-13 22:22:12 +0530102 YangNode node = manager.getDataModel("src/test/resources/LeafListInvalidStatement.yang");
103 }
104
105 /**
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530106 * Checks whether exception is thrown when leaf-list keyword without Left
107 * brace as per grammar.
Vidyashree Rama49abe712016-02-13 22:22:12 +0530108 */
109 @Test
110 public void processLeafListWithoutLeftBrace() throws IOException, ParserException {
111 thrown.expect(ParserException.class);
112 thrown.expectMessage("missing '{' at 'type'");
113 YangNode node = manager.getDataModel("src/test/resources/LeafListWithoutLeftBrace.yang");
114 }
115
116 /**
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530117 * Checks whether exception is thrown when config statement cardinality is
118 * not as per grammar.
Vidyashree Rama49abe712016-02-13 22:22:12 +0530119 */
120 @Test
121 public void processLeafListConfigInvalidCardinality() throws IOException, ParserException {
122 thrown.expect(ParserException.class);
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530123 thrown.expectMessage("YANG file error: Invalid cardinality of config in leaf-list \"invalid-interval\".");
Vidyashree Rama49abe712016-02-13 22:22:12 +0530124 YangNode node = manager.getDataModel("src/test/resources/LeafListConfigInvalidCardinality.yang");
125 }
126
127 /**
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530128 * Checks whether exception is thrown when units statement cardinality is
129 * not as per grammar.
Vidyashree Rama49abe712016-02-13 22:22:12 +0530130 */
131 @Test
132 public void processLeafListUnitsInvalidCardinality() throws IOException, ParserException {
133 thrown.expect(ParserException.class);
Gaurav Agrawal8e8770a2016-02-27 03:57:50 +0530134 thrown.expectMessage("YANG file error: Invalid cardinality of units in leaf-list \"invalid-interval\".");
Vidyashree Rama49abe712016-02-13 22:22:12 +0530135 YangNode node = manager.getDataModel("src/test/resources/LeafListUnitsInvalidCardinality.yang");
136 }
137
138 /**
139 * Checks leaf-list statement as sub-statement of container.
140 */
141 @Test
142 public void processContainerSubStatementLeafList() throws IOException, ParserException {
143
144 YangNode node = manager.getDataModel("src/test/resources/ContainerSubStatementLeafList.yang");
145
146 // Check whether the data model tree returned is of type module.
147 assertThat((node instanceof YangModule), is(true));
148
149 // Check whether the node type is set properly to module.
150 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
151
152 // Check whether the module name is set correctly.
153 YangModule yangNode = (YangModule) node;
154 assertThat(yangNode.getName(), is("Test"));
155
156 //Check whether the container is child of module.
157 YangContainer container = (YangContainer) yangNode.getChild();
158 assertThat(container.getName(), is("valid"));
159
160 // Check whether leaf-list properties as set correctly.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530161 ListIterator<YangLeafList> leafListIterator = container.getListOfLeafList().listIterator();
162 YangLeafList leafListInfo = leafListIterator.next();
Vidyashree Rama49abe712016-02-13 22:22:12 +0530163
164 assertThat(leafListInfo.getLeafName(), is("invalid-interval"));
165 assertThat(leafListInfo.getDataType().getDataTypeName(), is("\"uint16\""));
166 assertThat(leafListInfo.getDataType().getDataType(), is(YangDataTypes.UINT16));
167 assertThat(leafListInfo.getUnits(), is("\"seconds\""));
168 assertThat(leafListInfo.getDescription(), is("\"Interval before a route is declared invalid\""));
169 assertThat(leafListInfo.isConfig(), is(true));
170 assertThat(leafListInfo.getMinElements(), is(1));
171 assertThat(leafListInfo.getMaxElelements(), is(2147483647));
172 assertThat(leafListInfo.getStatus(), is(YangStatusType.CURRENT));
173 assertThat(leafListInfo.getReference(), is("\"RFC 6020\""));
174 }
175
176 /**
177 * Checks leaf-list statement as sub-statement of list.
178 */
179 @Test
180 public void processListSubStatementLeafList() throws IOException, ParserException {
181
182 YangNode node = manager.getDataModel("src/test/resources/ListSubStatementLeafList.yang");
183
184 assertThat((node instanceof YangModule), is(true));
185
186 // Check whether the node type is set properly to module.
187 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
188
189 // Check whether the module name is set correctly.
190 YangModule yangNode = (YangModule) node;
191 assertThat(yangNode.getName(), is("Test"));
192
193 // Check whether the list is child of module
194 YangList yangList = (YangList) yangNode.getChild();
195 assertThat(yangList.getName(), is("valid"));
196
197 // Check whether leaf-list properties as set correctly.
Vinod Kumar S0c330cd2016-02-23 22:36:57 +0530198 ListIterator<YangLeafList> leafListIterator = yangList.getListOfLeafList().listIterator();
199 YangLeafList leafListInfo = leafListIterator.next();
Vidyashree Rama49abe712016-02-13 22:22:12 +0530200
201 assertThat(leafListInfo.getLeafName(), is("invalid-interval"));
202 assertThat(leafListInfo.getDataType().getDataTypeName(), is("\"uint16\""));
203 assertThat(leafListInfo.getDataType().getDataType(), is(YangDataTypes.UINT16));
204 assertThat(leafListInfo.getUnits(), is("\"seconds\""));
205 assertThat(leafListInfo.getDescription(), is("\"Interval before a route is declared invalid\""));
206 assertThat(leafListInfo.isConfig(), is(true));
207
208 assertThat(leafListInfo.getStatus(), is(YangStatusType.CURRENT));
209 assertThat(leafListInfo.getReference(), is("\"RFC 6020\""));
210 }
211}