blob: b844b27da97ec0158fe0e008c040e321b0514d21 [file] [log] [blame]
b.janani8b8ebdc2016-02-25 12:25:55 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
b.janani8b8ebdc2016-02-25 12:25:55 +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.translator.tojava.utils;
18
b.janani8b8ebdc2016-02-25 12:25:55 +053019import java.lang.reflect.Constructor;
20import java.lang.reflect.InvocationTargetException;
21
janani bdd1314f2016-05-19 17:39:50 +053022import org.junit.Rule;
Vinod Kumar S38046502016-03-23 15:30:27 +053023import org.junit.Test;
janani bdd1314f2016-05-19 17:39:50 +053024import org.junit.rules.ExpectedException;
25import org.onosproject.yangutils.translator.exception.TranslatorException;
Gaurav Agrawal8a5af142016-06-15 13:58:01 +053026import org.onosproject.yangutils.utils.io.impl.YangToJavaNamingConflictUtil;
Bharat saraswal2f11f652016-03-25 18:19:46 +053027
28import static org.hamcrest.core.Is.is;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053029import static org.hamcrest.core.IsNot.not;
Bharat saraswal2f11f652016-03-25 18:19:46 +053030import static org.junit.Assert.assertThat;
Gaurav Agrawal8a5af142016-06-15 13:58:01 +053031import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.getCamelCase;
32import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.getCapitalCase;
33import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.getJavaPackageFromPackagePath;
34import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.getPackageDirPathFromJavaJPackage;
Bharat saraswal2f11f652016-03-25 18:19:46 +053035import static org.onosproject.yangutils.translator.tojava.utils.JavaIdentifierSyntax.getRootPackage;
Gaurav Agrawal8a5af142016-06-15 13:58:01 +053036import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.getSmallCase;
Bharat saraswal2f11f652016-03-25 18:19:46 +053037import static org.onosproject.yangutils.utils.UtilConstants.DEFAULT_BASE_PKG;
38import static org.onosproject.yangutils.utils.UtilConstants.PERIOD;
Vinod Kumar S38046502016-03-23 15:30:27 +053039
b.janani8b8ebdc2016-02-25 12:25:55 +053040/**
41 * Unit tests for java identifier syntax.
42 */
43public final class JavaIdentifierSyntaxTest {
44
janani bdd1314f2016-05-19 17:39:50 +053045 @Rule
46 public ExpectedException thrown = ExpectedException.none();
47
Bharat saraswal2f11f652016-03-25 18:19:46 +053048 private static final String PARENT_PACKAGE = "test5/test6/test7";
49 private static final String CHILD_PACKAGE = "test1:test2:test3";
50 private static final String DATE1 = "2000-1-5";
51 private static final String DATE2 = "1992-01-25";
52 private static final String PARENT_WITH_PERIOD = "test5.test6.test7";
53 private static final String CHILD_WITH_PERIOD = "test1.test2.test3";
54 private static final String DATE_WITH_REV1 = "rev20000105";
55 private static final String DATE_WITH_REV2 = "rev19920125";
56 private static final String VERSION_NUMBER = "v1";
janani bdd1314f2016-05-19 17:39:50 +053057 private static final String VALID_PREFIX = "123add-prefix";
58 private static final String INVALID_PREFIX = "-*()&^&#$%";
59 private static final String INVALID_PREFIX1 = "abc~!@#$%^&*()_+}{:<>?`1234567890-=[]''|,./SS";
60 private static final String INVALID_NAME_SPACE_FOR_INVALID_PREFIX = "try:#test3:9case3";
Bharat saraswal2f11f652016-03-25 18:19:46 +053061 private static final String INVALID_NAME_SPACE1 = "byte:#test2:9test3";
62 private static final String INVALID_NAME_SPACE2 = "const:#test2://9test3";
janani bdd1314f2016-05-19 17:39:50 +053063 private static final String INVALID_NAME_SPACE3 = "CONST:TRY://9test3";
64 private static final String VALID_NAME_SPACE1 = "123addprefixbyte.test2.123addprefix9test3";
janani bde4ffab2016-04-15 16:18:30 +053065 private static final String VALID_NAME_SPACE2 = "yangautoprefixconst.test2.yangautoprefix9test3";
janani bdd1314f2016-05-19 17:39:50 +053066 private static final String VALID_NAME_SPACE3 = "abc1234567890ssconst.test2.abc1234567890ss9test3";
67 private static final String VALID_NAME_SPACE4 = "yangautoprefixconst.yangautoprefixtry.yangautoprefix9test3";
Bharat saraswal2f11f652016-03-25 18:19:46 +053068 private static final String WITHOUT_CAMEL_CASE = "test-camel-case-identifier";
69 private static final String WITH_CAMEL_CASE = "testCamelCaseIdentifier";
janani bde4ffab2016-04-15 16:18:30 +053070 private static final String WITHOUT_CAMEL_CASE1 = ".-_try-._-.123";
71 private static final String WITH_CAMEL_CASE1 = "try123";
72 private static final String WITHOUT_CAMEL_CASE2 = "_try";
73 private static final String WITH_CAMEL_CASE2 = "yangAutoPrefixTry";
74 private static final String WITHOUT_CAMEL_CASE3 = "-1-123g-123ga-a";
75 private static final String WITH_CAMEL_CASE3 = "yangAutoPrefix1123G123Gaa";
76 private static final String WITHOUT_CAMEL_CASE4 = "a-b-c-d-e-f-g-h";
77 private static final String WITH_CAMEL_CASE4 = "aBcDeFgh";
janani b4a6711a2016-05-17 13:12:22 +053078 private static final String WITHOUT_CAMEL_CASE5 = "TestName";
79 private static final String WITH_CAMEL_CASE5 = "testName";
80 private static final String WITHOUT_CAMEL_CASE6 = "TEST-NAME";
81 private static final String WITH_CAMEL_CASE6 = "testName";
82 private static final String WITHOUT_CAMEL_CASE7 = "TESTNAME";
83 private static final String WITH_CAMEL_CASE7 = "testname";
84 private static final String WITHOUT_CAMEL_CASE8 = "TE-ST-NA-ME";
85 private static final String WITH_CAMEL_CASE8 = "teStNaMe";
86 private static final String WITHOUT_CAMEL_CASE9 = "TEST3NAME";
87 private static final String WITH_CAMEL_CASE9 = "test3Name";
88 private static final String WITHOUT_CAMEL_CASE10 = "TEST3";
89 private static final String WITH_CAMEL_CASE10 = "test3";
90 private static final String WITHOUT_CAMEL_CASE11 = "TEST3nAMe";
91 private static final String WITH_CAMEL_CASE11 = "test3Name";
92 private static final String WITHOUT_CAMEL_CASE12 = "TEST3name";
93 private static final String WITH_CAMEL_CASE12 = "test3Name";
janani bdd1314f2016-05-19 17:39:50 +053094 private static final String WITHOUT_CAMEL_CASE13 = "t-RY";
95 private static final String WITH_CAMEL_CASE13 = "tRy";
96 private static final String WITHOUT_CAMEL_CASE14 = "TRY";
97 private static final String WITH_CAMEL_CASE14 = "yangAutoPrefixTry";
Bharat saraswal2f11f652016-03-25 18:19:46 +053098 private static final String WITHOUT_CAPITAL = "test_this";
99 private static final String WITH_CAPITAL = "Test_this";
100 private static final String WITH_SMALL = "test_this";
janani bdd1314f2016-05-19 17:39:50 +0530101 private static final String WITH_CAMEL_CASE_WITH_PREFIX = "123addPrefixTry";
102 private static final String WITH_CAMEL_CASE_WITH_PREFIX1 = "abc1234567890Ss1123G123Gaa";
103 private static YangToJavaNamingConflictUtil conflictResolver = new YangToJavaNamingConflictUtil();
b.janani1fef2732016-03-04 12:29:05 +0530104
b.janani8b8ebdc2016-02-25 12:25:55 +0530105 /**
106 * Unit test for private constructor.
107 *
108 * @throws SecurityException if any security violation is observed.
109 * @throws NoSuchMethodException if when the method is not found.
110 * @throws IllegalArgumentException if there is illegal argument found.
Vinod Kumar S38046502016-03-23 15:30:27 +0530111 * @throws InstantiationException if instantiation is provoked for the
112 * private constructor.
113 * @throws IllegalAccessException if instance is provoked or a method is
114 * provoked.
115 * @throws InvocationTargetException when an exception occurs by the method
116 * or constructor.
b.janani8b8ebdc2016-02-25 12:25:55 +0530117 */
b.janani1fef2732016-03-04 12:29:05 +0530118 @Test
b.janani8b8ebdc2016-02-25 12:25:55 +0530119 public void callPrivateConstructors() throws SecurityException, NoSuchMethodException, IllegalArgumentException,
Vinod Kumar S38046502016-03-23 15:30:27 +0530120 InstantiationException, IllegalAccessException, InvocationTargetException {
Bharat saraswal2f11f652016-03-25 18:19:46 +0530121
b.janani8b8ebdc2016-02-25 12:25:55 +0530122 Class<?>[] classesToConstruct = {JavaIdentifierSyntax.class };
123 for (Class<?> clazz : classesToConstruct) {
124 Constructor<?> constructor = clazz.getDeclaredConstructor();
125 constructor.setAccessible(true);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530126 assertThat(null, not(constructor.newInstance()));
b.janani8b8ebdc2016-02-25 12:25:55 +0530127 }
128 }
129
130 /**
b.janani8b8ebdc2016-02-25 12:25:55 +0530131 * Unit test for root package generation with revision complexity.
132 */
133 @Test
134 public void getRootPackageTest() {
janani bdd1314f2016-05-19 17:39:50 +0530135 conflictResolver.setPrefixForIdentifier(null);
136 String rootPackage = getRootPackage((byte) 1, CHILD_PACKAGE, DATE1, conflictResolver);
Bharat saraswal2f11f652016-03-25 18:19:46 +0530137 assertThat(rootPackage.equals(DEFAULT_BASE_PKG + PERIOD + VERSION_NUMBER
138 + PERIOD + CHILD_WITH_PERIOD + PERIOD + DATE_WITH_REV1), is(true));
b.janani8b8ebdc2016-02-25 12:25:55 +0530139 }
140
141 /**
janani bdd1314f2016-05-19 17:39:50 +0530142 * Unit test for root package generation with invalid prefix.
143 */
144 @Test
145 public void getRootPackageWithInvalidPrefix() throws TranslatorException {
146 thrown.expect(TranslatorException.class);
147 thrown.expectMessage("The given prefix in pom.xml is invalid.");
148 conflictResolver.setPrefixForIdentifier(INVALID_PREFIX);
149 String rootPackage1 = getRootPackage((byte) 1, INVALID_NAME_SPACE_FOR_INVALID_PREFIX, DATE1, conflictResolver);
150 }
151
152 /**
b.janani1fef2732016-03-04 12:29:05 +0530153 * Unit test for root package generation with special characters presence.
154 */
155 @Test
156 public void getRootPackageWithSpecialCharactersTest() {
janani bdd1314f2016-05-19 17:39:50 +0530157 conflictResolver.setPrefixForIdentifier(VALID_PREFIX);
158 String rootPackage = getRootPackage((byte) 1, INVALID_NAME_SPACE1, DATE1, conflictResolver);
Bharat saraswal2f11f652016-03-25 18:19:46 +0530159 assertThat(rootPackage.equals(DEFAULT_BASE_PKG + PERIOD + VERSION_NUMBER
160 + PERIOD + VALID_NAME_SPACE1 + PERIOD + DATE_WITH_REV1), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530161 conflictResolver.setPrefixForIdentifier(null);
162 String rootPackage1 = getRootPackage((byte) 1, INVALID_NAME_SPACE2, DATE1, conflictResolver);
Bharat saraswal2f11f652016-03-25 18:19:46 +0530163 assertThat(rootPackage1.equals(DEFAULT_BASE_PKG + PERIOD + VERSION_NUMBER
164 + PERIOD + VALID_NAME_SPACE2 + PERIOD + DATE_WITH_REV1), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530165 String rootPackage2 = getRootPackage((byte) 1, INVALID_NAME_SPACE3, DATE1, conflictResolver);
166 assertThat(rootPackage2.equals(DEFAULT_BASE_PKG + PERIOD + VERSION_NUMBER
167 + PERIOD + VALID_NAME_SPACE4 + PERIOD + DATE_WITH_REV1), is(true));
168 conflictResolver.setPrefixForIdentifier(INVALID_PREFIX1);
169 String rootPackage3 = getRootPackage((byte) 1, INVALID_NAME_SPACE2, DATE1, conflictResolver);
170 assertThat(rootPackage3.equals(DEFAULT_BASE_PKG + PERIOD + VERSION_NUMBER
171 + PERIOD + VALID_NAME_SPACE3 + PERIOD + DATE_WITH_REV1), is(true));
172
b.janani1fef2732016-03-04 12:29:05 +0530173 }
174
175 /**
176 * Unit test for root package generation without complexity in revision.
b.janani8b8ebdc2016-02-25 12:25:55 +0530177 */
178 @Test
179 public void getRootPackageWithRevTest() {
janani bdd1314f2016-05-19 17:39:50 +0530180 String rootPkgWithRev = getRootPackage((byte) 1, CHILD_PACKAGE, DATE2, null);
Bharat saraswal2f11f652016-03-25 18:19:46 +0530181 assertThat(rootPkgWithRev.equals(
182 DEFAULT_BASE_PKG + PERIOD + VERSION_NUMBER + PERIOD + CHILD_WITH_PERIOD + PERIOD + DATE_WITH_REV2),
b.janani1fef2732016-03-04 12:29:05 +0530183 is(true));
b.janani8b8ebdc2016-02-25 12:25:55 +0530184 }
185
186 /**
187 * Unit test for capitalizing the incoming string.
188 */
189 @Test
190 public void getCapitalCaseTest() {
janani b4a6711a2016-05-17 13:12:22 +0530191 String capitalCase = getCapitalCase(WITHOUT_CAPITAL);
b.janani1fef2732016-03-04 12:29:05 +0530192 assertThat(capitalCase.equals(WITH_CAPITAL), is(true));
b.janani8b8ebdc2016-02-25 12:25:55 +0530193 }
194
195 /**
196 * Unit test for getting the camel case for the received string.
197 */
198 @Test
199 public void getCamelCaseTest() {
janani bdd1314f2016-05-19 17:39:50 +0530200 conflictResolver.setPrefixForIdentifier(null);
201 String camelCase = getCamelCase(WITHOUT_CAMEL_CASE, conflictResolver);
b.janani1fef2732016-03-04 12:29:05 +0530202 assertThat(camelCase.equals(WITH_CAMEL_CASE), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530203 String camelCase1 = getCamelCase(WITHOUT_CAMEL_CASE1, conflictResolver);
janani bde4ffab2016-04-15 16:18:30 +0530204 assertThat(camelCase1.equals(WITH_CAMEL_CASE1), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530205 String camelCase2 = getCamelCase(WITHOUT_CAMEL_CASE2, conflictResolver);
janani bde4ffab2016-04-15 16:18:30 +0530206 assertThat(camelCase2.equals(WITH_CAMEL_CASE2), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530207 String camelCase3 = getCamelCase(WITHOUT_CAMEL_CASE3, conflictResolver);
janani bde4ffab2016-04-15 16:18:30 +0530208 assertThat(camelCase3.equals(WITH_CAMEL_CASE3), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530209 String camelCase4 = getCamelCase(WITHOUT_CAMEL_CASE4, conflictResolver);
janani bde4ffab2016-04-15 16:18:30 +0530210 assertThat(camelCase4.equals(WITH_CAMEL_CASE4), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530211 String camelCase5 = getCamelCase(WITHOUT_CAMEL_CASE5, conflictResolver);
janani b4a6711a2016-05-17 13:12:22 +0530212 assertThat(camelCase5.equals(WITH_CAMEL_CASE5), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530213 String camelCase6 = getCamelCase(WITHOUT_CAMEL_CASE6, conflictResolver);
janani b4a6711a2016-05-17 13:12:22 +0530214 assertThat(camelCase6.equals(WITH_CAMEL_CASE6), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530215 String camelCase7 = getCamelCase(WITHOUT_CAMEL_CASE7, conflictResolver);
janani b4a6711a2016-05-17 13:12:22 +0530216 assertThat(camelCase7.equals(WITH_CAMEL_CASE7), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530217 String camelCase8 = getCamelCase(WITHOUT_CAMEL_CASE8, conflictResolver);
janani b4a6711a2016-05-17 13:12:22 +0530218 assertThat(camelCase8.equals(WITH_CAMEL_CASE8), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530219 String camelCase9 = getCamelCase(WITHOUT_CAMEL_CASE9, conflictResolver);
janani b4a6711a2016-05-17 13:12:22 +0530220 assertThat(camelCase9.equals(WITH_CAMEL_CASE9), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530221 String camelCase10 = getCamelCase(WITHOUT_CAMEL_CASE10, conflictResolver);
janani b4a6711a2016-05-17 13:12:22 +0530222 assertThat(camelCase10.equals(WITH_CAMEL_CASE10), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530223 String camelCase11 = getCamelCase(WITHOUT_CAMEL_CASE11, conflictResolver);
janani b4a6711a2016-05-17 13:12:22 +0530224 assertThat(camelCase11.equals(WITH_CAMEL_CASE11), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530225 String camelCase12 = getCamelCase(WITHOUT_CAMEL_CASE12, conflictResolver);
janani b4a6711a2016-05-17 13:12:22 +0530226 assertThat(camelCase12.equals(WITH_CAMEL_CASE12), is(true));
janani bdd1314f2016-05-19 17:39:50 +0530227 String camelCase13 = getCamelCase(WITHOUT_CAMEL_CASE13, conflictResolver);
228 assertThat(camelCase13.equals(WITH_CAMEL_CASE13), is(true));
229 String camelCase14 = getCamelCase(WITHOUT_CAMEL_CASE14, conflictResolver);
230 assertThat(camelCase14.equals(WITH_CAMEL_CASE14), is(true));
231 }
232
233 /**
234 * Unit test for getting the camel case along with the prefix provided.
235 */
236 @Test
237 public void getCamelCaseWithPrefixTest() {
238
239 conflictResolver.setPrefixForIdentifier(VALID_PREFIX);
240 String camelCase = getCamelCase(WITHOUT_CAMEL_CASE2, conflictResolver);
241 assertThat(camelCase.equals(WITH_CAMEL_CASE_WITH_PREFIX), is(true));
242 conflictResolver.setPrefixForIdentifier(INVALID_PREFIX1);
243 String camelCase2 = getCamelCase(WITHOUT_CAMEL_CASE3, conflictResolver);
244 assertThat(camelCase2.equals(WITH_CAMEL_CASE_WITH_PREFIX1), is(true));
245 }
246
247 /**
248 * Unit test for getting the camel case along with the invalid prefix provided.
249 */
250 @Test
251 public void getCamelCaseWithInvalidPrefixTest() throws TranslatorException {
252
253 thrown.expect(TranslatorException.class);
254 thrown.expectMessage("The given prefix in pom.xml is invalid.");
255 conflictResolver.setPrefixForIdentifier(INVALID_PREFIX);
256 String camelCase = getCamelCase(WITHOUT_CAMEL_CASE3, conflictResolver);
b.janani8b8ebdc2016-02-25 12:25:55 +0530257 }
Bharat saraswal2f11f652016-03-25 18:19:46 +0530258
259 /**
260 * Unit test for getting the camel case for the received string.
261 */
262 @Test
263 public void getSmallCaseTest() {
Bharat saraswal2f11f652016-03-25 18:19:46 +0530264 String smallCase = getSmallCase(WITHOUT_CAPITAL);
265 assertThat(smallCase.equals(WITH_SMALL), is(true));
266 }
267
268 /**
269 * Unit test for getting the camel case for the received string.
270 */
271 @Test
272 public void getPackageFromPathTest() {
Bharat saraswal2f11f652016-03-25 18:19:46 +0530273 String pkg = getJavaPackageFromPackagePath(PARENT_PACKAGE);
274 assertThat(pkg.equals(PARENT_WITH_PERIOD), is(true));
275 }
276
277 /**
278 * Unit test for getting the camel case for the received string.
279 */
280 @Test
281 public void getPathFromPackageTest() {
Bharat saraswal2f11f652016-03-25 18:19:46 +0530282 String path = getPackageDirPathFromJavaJPackage(PARENT_WITH_PERIOD);
283 assertThat(path.equals(PARENT_PACKAGE), is(true));
284 }
b.janani8b8ebdc2016-02-25 12:25:55 +0530285}