blob: 727c1d25dcdc0c5dc9e4c1ec01874b07174860dc [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 }
107}