blob: 6f13667e298ecedf239aa02b51dbe1c2e06f2252 [file] [log] [blame]
Gaurav Agrawal9c512e02016-02-25 04:37:05 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Gaurav Agrawal9c512e02016-02-25 04:37:05 +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 static org.hamcrest.MatcherAssert.assertThat;
20import static org.hamcrest.core.Is.is;
21import org.junit.Test;
22import org.onosproject.yangutils.datamodel.YangDataTypes;
23import org.onosproject.yangutils.datamodel.YangEnum;
24import org.onosproject.yangutils.datamodel.YangEnumeration;
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 enum listener.
38 */
39public class EnumListenerTest {
40
41 private final YangUtilsParserManager manager = new YangUtilsParserManager();
42
43 /**
44 * Checks enum statement without value.
45 */
46 @Test
47 public void processEnumTypeStatement() throws IOException, ParserException {
48
49 YangNode node = manager.getDataModel("src/test/resources/EnumTypeStatement.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
Vinod Kumar Se4b9b0c2016-04-30 21:09:15 +053064 assertThat(leafInfo.getName(), is("speed"));
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053065 assertThat(leafInfo.getDataType().getDataTypeName(), is("enumeration"));
66 assertThat(leafInfo.getDataType().getDataType(), is(YangDataTypes.ENUMERATION));
Gaurav Agrawal1c8f80c2016-04-12 13:30:16 +053067 assertThat(((YangEnumeration) leafInfo.getDataType().getDataTypeExtendedInfo()).getName(),
68 is("speed_enum"));
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053069
70 Set<YangEnum> enumSet = ((YangEnumeration) leafInfo.getDataType().getDataTypeExtendedInfo()).getEnumSet();
71 for (YangEnum tmp : enumSet) {
72 if (tmp.getNamedValue().equals("10m")) {
73 assertThat(tmp.getValue(), is(0));
74 } else if (tmp.getNamedValue().equals("100m")) {
75 assertThat(tmp.getValue(), is(1));
76 } else if (tmp.getNamedValue().equals("auto")) {
77 assertThat(tmp.getValue(), is(2));
78 }
79 }
80 }
Gaurav Agrawal0cfdeed2016-02-26 02:47:39 +053081
82 /**
83 * Checks if enum with same name is not allowed.
84 */
85 @Test(expected = ParserException.class)
86 public void processEnumWithDuplicateName() throws IOException, ParserException {
87
88 YangNode node = manager.getDataModel("src/test/resources/EnumWithDuplicateName.yang");
89 }
Gaurav Agrawal9c512e02016-02-25 04:37:05 +053090}