blob: 7033dddd00459826e121ea1b33d7bf23644fde20 [file] [log] [blame]
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +05301/*
2 * Copyright 2014-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 static org.hamcrest.MatcherAssert.assertThat;
20import static org.hamcrest.core.Is.is;
21import org.junit.Test;
22import org.onosproject.yangutils.datamodel.YangBit;
23import org.onosproject.yangutils.datamodel.YangBits;
24import org.onosproject.yangutils.datamodel.YangDataTypes;
25import org.onosproject.yangutils.datamodel.YangLeaf;
26import org.onosproject.yangutils.datamodel.YangModule;
27import org.onosproject.yangutils.datamodel.YangNode;
28import org.onosproject.yangutils.datamodel.YangNodeType;
29import org.onosproject.yangutils.parser.exceptions.ParserException;
30import org.onosproject.yangutils.parser.impl.YangUtilsParserManager;
31
32import java.io.IOException;
33import java.util.ListIterator;
34import java.util.Set;
35
36/**
37 * Test cases for position listener.
38 */
39public class PositionListenerTest {
40
41 private final YangUtilsParserManager manager = new YangUtilsParserManager();
42
43 /**
44 * Checks explicitly configured value.
45 */
46 @Test
47 public void processPositionStatement() throws IOException, ParserException {
48
49 YangNode node = manager.getDataModel("src/test/resources/PositionStatement.yang");
50
51 // Check whether the data model tree returned is of type module.
52 assertThat((node instanceof YangModule), is(true));
53
54 // Check whether the node type is set properly to module.
55 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
56
57 // Check whether the module name is set correctly.
58 YangModule yangNode = (YangModule) node;
59 assertThat(yangNode.getName(), is("Test"));
60
61 ListIterator<YangLeaf> leafIterator = yangNode.getListOfLeaf().listIterator();
62 YangLeaf leafInfo = leafIterator.next();
63
64 assertThat(leafInfo.getLeafName(), is("mybits"));
65 assertThat(leafInfo.getDataType().getDataTypeName(), is("bits"));
66 assertThat(leafInfo.getDataType().getDataType(), is(YangDataTypes.BITS));
67 assertThat(((YangBits) leafInfo.getDataType().getDataTypeExtendedInfo()).getBitsName(),
68 is("mybits"));
69
70 Set<YangBit> bitSet = ((YangBits) leafInfo.getDataType().getDataTypeExtendedInfo()).getBitSet();
71 for (YangBit tmp : bitSet) {
72 if (tmp.getBitName().equals("disable-nagle")) {
73 assertThat(tmp.getPosition(), is(0));
74 } else if (tmp.getBitName().equals("auto-sense-speed")) {
75 assertThat(tmp.getPosition(), is(1));
76 } else if (tmp.getBitName().equals("Ten-Mb-only")) {
77 assertThat(tmp.getPosition(), is(2));
78 }
79 }
80 }
81
82 /**
83 * Checks explicit value and auto generated value.
84 */
85 @Test
86 public void processPositionImplicitAndExplicit() throws IOException, ParserException {
87
88 YangNode node = manager.getDataModel("src/test/resources/PositionImplicitAndExplicit.yang");
89
90 // Check whether the data model tree returned is of type module.
91 assertThat((node instanceof YangModule), is(true));
92
93 // Check whether the node type is set properly to module.
94 assertThat(node.getNodeType(), is(YangNodeType.MODULE_NODE));
95
96 // Check whether the module name is set correctly.
97 YangModule yangNode = (YangModule) node;
98 assertThat(yangNode.getName(), is("Test"));
99
100 ListIterator<YangLeaf> leafIterator = yangNode.getListOfLeaf().listIterator();
101 YangLeaf leafInfo = leafIterator.next();
102
103 assertThat(leafInfo.getLeafName(), is("mybits"));
104 assertThat(leafInfo.getDataType().getDataTypeName(), is("bits"));
105 assertThat(leafInfo.getDataType().getDataType(), is(YangDataTypes.BITS));
106 assertThat(((YangBits) leafInfo.getDataType().getDataTypeExtendedInfo()).getBitsName(),
107 is("mybits"));
108
109 Set<YangBit> bitSet = ((YangBits) leafInfo.getDataType().getDataTypeExtendedInfo()).getBitSet();
110 for (YangBit tmp : bitSet) {
111 if (tmp.getBitName().equals("disable-nagle")) {
112 assertThat(tmp.getPosition(), is(0));
113 } else if (tmp.getBitName().equals("auto-sense-speed")) {
114 assertThat(tmp.getPosition(), is(1));
115 } else if (tmp.getBitName().equals("Ten-Mb-only")) {
116 assertThat(tmp.getPosition(), is(2));
117 }
118 }
119 }
120
121 /**
122 * Checks explicit value should not be repeated.
123 */
124 @Test(expected = ParserException.class)
125 public void processPositionDuplication() throws IOException, ParserException {
126
127 YangNode node = manager.getDataModel("src/test/resources/PositionDuplication.yang");
128 }
129
130 /**
131 * Checks explicit or auto generated value should not be repeated.
132 */
133 @Test(expected = ParserException.class)
134 public void processPositionImplicitAndExplicitDuplication() throws IOException, ParserException {
135
136 YangNode node = manager.getDataModel("src/test/resources/PositionImplicitAndExplicitDuplication.yang");
137 }
138
139 /**
140 * Checks if negative value of position is not allowed.
141 */
142 @Test(expected = ParserException.class)
143 public void processPositionNegativeValue() throws IOException, ParserException {
144
145 YangNode node = manager.getDataModel("src/test/resources/PositionNegativeValue.yang");
146 }
147}