blob: 6451e4dd459b84d7a1a5c17958fa4697cfb850a8 [file] [log] [blame]
b.janani68c55e12016-02-24 12:23:03 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
b.janani68c55e12016-02-24 12:23:03 +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.utils.io.impl;
18
b.janani68c55e12016-02-24 12:23:03 +053019import java.io.File;
20import java.io.IOException;
Bharat saraswald6f12412016-03-28 15:50:13 +053021import java.lang.reflect.Constructor;
22import java.lang.reflect.InvocationTargetException;
Bharat saraswal96dfef02016-06-16 00:29:12 +053023import org.apache.commons.io.FileUtils;
Bharat saraswald6f12412016-03-28 15:50:13 +053024import org.junit.Rule;
25import org.junit.Test;
26import org.junit.rules.ExpectedException;
27import org.onosproject.yangutils.utils.UtilConstants;
b.janani68c55e12016-02-24 12:23:03 +053028
b.janani68c55e12016-02-24 12:23:03 +053029import static org.hamcrest.core.Is.is;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053030import static org.hamcrest.core.IsNot.not;
Bharat saraswald6f12412016-03-28 15:50:13 +053031import static org.junit.Assert.assertThat;
32import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.addPackageInfo;
Bharat saraswald6f12412016-03-28 15:50:13 +053033import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.createDirectories;
Gaurav Agrawalc5f63272016-06-16 13:09:53 +053034import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.deleteDirectory;
Bharat saraswald6f12412016-03-28 15:50:13 +053035import static org.onosproject.yangutils.utils.io.impl.YangIoUtils.trimAtLast;
b.janani68c55e12016-02-24 12:23:03 +053036
37/**
Bharat saraswal6ef0b762016-04-05 12:45:45 +053038 * Unit tests for YANG IO utils.
b.janani68c55e12016-02-24 12:23:03 +053039 */
40public final class YangIoUtilsTest {
41
Bharat saraswald6f12412016-03-28 15:50:13 +053042 private static final String BASE_DIR = "target/UnitTestCase";
43 private static final String CREATE_PATH = BASE_DIR + File.separator + "dir1/dir2/dir3/dir4/";
44 private static final String CHECK_STRING = "one, two, three, four, five, six";
45 private static final String TRIM_STRING = "one, two, three, four, five, ";
Bharat saraswalc0e04842016-05-12 13:16:57 +053046 private static final String CHECK1 = "check1";
47 private static final String PKG_INFO = "package-info.java";
48 private static final String PATH = "src/main/yangmodel/";
49 private static final String MSG = "Exception occured while creating package info file.";
b.janani68c55e12016-02-24 12:23:03 +053050
Bharat saraswald6f12412016-03-28 15:50:13 +053051 /**
52 * Expected exceptions.
53 */
b.janani68c55e12016-02-24 12:23:03 +053054 @Rule
55 public ExpectedException thrown = ExpectedException.none();
56
57 /**
58 * This test case checks whether the package-info file is created.
Bharat saraswald6f12412016-03-28 15:50:13 +053059 *
60 * @throws IOException when fails to do IO operations for test case
b.janani68c55e12016-02-24 12:23:03 +053061 */
62 @Test
63 public void addPackageInfoTest() throws IOException {
64
Bharat saraswald6f12412016-03-28 15:50:13 +053065 File dirPath = new File(CREATE_PATH);
b.janani68c55e12016-02-24 12:23:03 +053066 dirPath.mkdirs();
Bharat saraswal33dfa012016-05-17 19:59:16 +053067 addPackageInfo(dirPath, CHECK1, CREATE_PATH, false, getStubPluginConfig());
Bharat saraswalc0e04842016-05-12 13:16:57 +053068 File filePath = new File(dirPath + File.separator + PKG_INFO);
b.janani68c55e12016-02-24 12:23:03 +053069 assertThat(filePath.isFile(), is(true));
Bharat saraswalb551aae2016-07-14 15:18:20 +053070 FileUtils.deleteDirectory(new File(BASE_DIR));
b.janani68c55e12016-02-24 12:23:03 +053071 }
72
73 /**
Bharat saraswal2f00b4b2016-03-04 20:08:09 +053074 * This test case checks with an additional info in the path.
Bharat saraswald6f12412016-03-28 15:50:13 +053075 *
76 * @throws IOException when fails to do IO operations for test case
Bharat saraswal2f00b4b2016-03-04 20:08:09 +053077 */
78 @Test
79 public void addPackageInfoWithPathTest() throws IOException {
80
Bharat saraswald6f12412016-03-28 15:50:13 +053081 File dirPath = new File(CREATE_PATH);
Bharat saraswal2f00b4b2016-03-04 20:08:09 +053082 dirPath.mkdirs();
Bharat saraswal33dfa012016-05-17 19:59:16 +053083 addPackageInfo(dirPath, CHECK1, PATH + CREATE_PATH, false, getStubPluginConfig());
Bharat saraswalc0e04842016-05-12 13:16:57 +053084 File filePath = new File(dirPath + File.separator + PKG_INFO);
85 assertThat(filePath.isFile(), is(true));
Bharat saraswalb551aae2016-07-14 15:18:20 +053086 FileUtils.deleteDirectory(new File(BASE_DIR));
Bharat saraswalc0e04842016-05-12 13:16:57 +053087 }
88
89 /**
90 * This test case checks with a child node.
91 *
92 * @throws IOException when fails to do IO operations for test case
93 */
94 @Test
95 public void addPackageInfoWithChildNode() throws IOException {
96
97 File dirPath = new File(CREATE_PATH);
98 dirPath.mkdirs();
Bharat saraswal33dfa012016-05-17 19:59:16 +053099 addPackageInfo(dirPath, CHECK1, PATH + CREATE_PATH, true, getStubPluginConfig());
Bharat saraswalc0e04842016-05-12 13:16:57 +0530100 File filePath = new File(dirPath + File.separator + PKG_INFO);
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530101 assertThat(filePath.isFile(), is(true));
Bharat saraswalb551aae2016-07-14 15:18:20 +0530102 FileUtils.deleteDirectory(new File(BASE_DIR));
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530103 }
104
105 /**
b.janani68c55e12016-02-24 12:23:03 +0530106 * This test case checks whether the package-info file is created when invalid path is given.
Bharat saraswald6f12412016-03-28 15:50:13 +0530107 *
108 * @throws IOException when fails to do IO operations for test case
b.janani68c55e12016-02-24 12:23:03 +0530109 */
110 @Test
111 public void addPackageInfoWithEmptyPathTest() throws IOException {
112
b.janani1fef2732016-03-04 12:29:05 +0530113 File dirPath = new File("invalid/check");
b.janani68c55e12016-02-24 12:23:03 +0530114 thrown.expect(IOException.class);
Bharat saraswalc0e04842016-05-12 13:16:57 +0530115 thrown.expectMessage(MSG);
Bharat saraswal33dfa012016-05-17 19:59:16 +0530116 addPackageInfo(dirPath, CHECK1, CREATE_PATH, false, getStubPluginConfig());
Bharat saraswalc0e04842016-05-12 13:16:57 +0530117 File filePath1 = new File(dirPath + File.separator + PKG_INFO);
b.janani68c55e12016-02-24 12:23:03 +0530118 assertThat(filePath1.isFile(), is(false));
Bharat saraswal96dfef02016-06-16 00:29:12 +0530119 FileUtils.deleteDirectory(dirPath);
Bharat saraswalb551aae2016-07-14 15:18:20 +0530120 FileUtils.deleteDirectory(new File(BASE_DIR));
b.janani68c55e12016-02-24 12:23:03 +0530121 }
122
123 /**
124 * A private constructor is tested.
125 *
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530126 * @throws SecurityException if any security violation is observed
127 * @throws NoSuchMethodException if when the method is not found
128 * @throws IllegalArgumentException if there is illegal argument found
129 * @throws InstantiationException if instantiation is provoked for the private constructor
130 * @throws IllegalAccessException if instance is provoked or a method is provoked
131 * @throws InvocationTargetException when an exception occurs by the method or constructor
b.janani68c55e12016-02-24 12:23:03 +0530132 */
133 @Test
Bharat saraswal33dfa012016-05-17 19:59:16 +0530134 public void callPrivateConstructors()
135 throws SecurityException, NoSuchMethodException, IllegalArgumentException,
Vinod Kumar S38046502016-03-23 15:30:27 +0530136 InstantiationException, IllegalAccessException, InvocationTargetException {
b.janani68c55e12016-02-24 12:23:03 +0530137
138 Class<?>[] classesToConstruct = {YangIoUtils.class };
139 for (Class<?> clazz : classesToConstruct) {
140 Constructor<?> constructor = clazz.getDeclaredConstructor();
141 constructor.setAccessible(true);
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530142 assertThat(null, not(constructor.newInstance()));
b.janani68c55e12016-02-24 12:23:03 +0530143 }
144 }
145
146 /**
147 * This test case checks if the directory is cleaned.
Bharat saraswald6f12412016-03-28 15:50:13 +0530148 *
149 * @throws IOException when fails to do IO operations for test case
b.janani68c55e12016-02-24 12:23:03 +0530150 */
151 @Test
152 public void cleanGeneratedDirTest() throws IOException {
153
Bharat saraswald6f12412016-03-28 15:50:13 +0530154 File baseDirPath = new File(BASE_DIR);
155 File createNewDir = new File(BASE_DIR + File.separator + UtilConstants.YANG_GEN_DIR);
b.janani68c55e12016-02-24 12:23:03 +0530156 createNewDir.mkdirs();
157 File createFile = new File(createNewDir + File.separator + "check1.java");
158 createFile.createNewFile();
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +0530159 deleteDirectory(baseDirPath.getAbsolutePath());
Bharat saraswal96dfef02016-06-16 00:29:12 +0530160 FileUtils.deleteDirectory(createNewDir);
161 FileUtils.deleteDirectory(baseDirPath);
b.janani68c55e12016-02-24 12:23:03 +0530162 }
163
164 /**
165 * This test case checks the cleaning method when an invalid path is provided.
Bharat saraswald6f12412016-03-28 15:50:13 +0530166 *
167 * @throws IOException when fails to do IO operations for test case
b.janani68c55e12016-02-24 12:23:03 +0530168 */
169 @Test
170 public void cleanWithInvalidDirTest() throws IOException {
171
Bharat saraswald6f12412016-03-28 15:50:13 +0530172 File baseDirPath = new File(BASE_DIR + "invalid");
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +0530173 deleteDirectory(baseDirPath.getAbsolutePath());
b.janani68c55e12016-02-24 12:23:03 +0530174 }
175
176 /**
177 * This test case tests whether the directories are getting created.
178 */
179 @Test
Bharat saraswal96dfef02016-06-16 00:29:12 +0530180 public void createDirectoryTest() throws IOException {
b.janani68c55e12016-02-24 12:23:03 +0530181
Bharat saraswald6f12412016-03-28 15:50:13 +0530182 File dirPath = createDirectories(CREATE_PATH);
b.janani68c55e12016-02-24 12:23:03 +0530183 assertThat(dirPath.isDirectory(), is(true));
Bharat saraswalb551aae2016-07-14 15:18:20 +0530184 FileUtils.deleteDirectory(new File(BASE_DIR));
b.janani68c55e12016-02-24 12:23:03 +0530185 }
186
187 /**
Bharat saraswald6f12412016-03-28 15:50:13 +0530188 * Unit test case for trim at last method.
189 */
190 @Test
191 public void testForTrimAtLast() {
192
193 String test = trimAtLast(CHECK_STRING, "six");
194 assertThat(test.contains(TRIM_STRING), is(true));
b.janani68c55e12016-02-24 12:23:03 +0530195 }
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530196
Bharat saraswal33dfa012016-05-17 19:59:16 +0530197 /**
198 * Returns stub pluginConfig.
199 *
200 * @return stub pluginConfig
201 */
202 private YangPluginConfig getStubPluginConfig() {
203 YangPluginConfig pluginConfig = new YangPluginConfig();
204 pluginConfig.setConflictResolver(null);
205 return pluginConfig;
206 }
Bharat saraswal2f00b4b2016-03-04 20:08:09 +0530207}