blob: 98194454e2d9bf16523f882ca170a81567aa0f8c [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;
21import java.lang.reflect.Constructor;
22import java.lang.reflect.InvocationTargetException;
23
Vinod Kumar S38046502016-03-23 15:30:27 +053024import org.junit.Test;
Bharat saraswalc0e04842016-05-12 13:16:57 +053025import org.onosproject.yangutils.datamodel.YangNode;
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +053026import org.onosproject.yangutils.translator.tojava.JavaFileInfo;
27import org.onosproject.yangutils.translator.tojava.javamodel.YangJavaModule;
Bharat saraswal2f00b4b2016-03-04 20:08:09 +053028
Bharat saraswal6ef0b762016-04-05 12:45:45 +053029import static org.hamcrest.core.Is.is;
30import static org.hamcrest.core.IsNot.not;
31import static org.junit.Assert.assertThat;
32import static org.onosproject.yangutils.utils.UtilConstants.PERIOD;
33import static org.onosproject.yangutils.utils.UtilConstants.SLASH;
34import static org.onosproject.yangutils.utils.io.impl.FileSystemUtil.appendFileContents;
35import static org.onosproject.yangutils.utils.io.impl.FileSystemUtil.createPackage;
36import static org.onosproject.yangutils.utils.io.impl.FileSystemUtil.doesPackageExist;
37import static org.onosproject.yangutils.utils.io.impl.FileSystemUtil.updateFileHandle;
b.janani68c55e12016-02-24 12:23:03 +053038
39/**
40 * Tests the file handle utilities.
41 */
42public final class FileSystemUtilTest {
43
Bharat saraswale2d51d62016-03-23 19:40:35 +053044 private static final String BASE_DIR_PKG = "target.UnitTestCase.";
Bharat saraswale2d51d62016-03-23 19:40:35 +053045 private static final String BASE_PKG = "target/UnitTestCase";
46 private static final String TEST_DATA_1 = "This is to append a text to the file first1\n";
47 private static final String TEST_DATA_2 = "This is next second line\n";
48 private static final String TEST_DATA_3 = "This is next third line in the file";
Bharat saraswalc0e04842016-05-12 13:16:57 +053049 private static final String TEST_FILE = "testFile";
50 private static final String SOURCE_TEST_FILE = "sourceTestFile";
51 private static final String DIR_PATH = "exist1.exist2.exist3";
52 private static final String PKG_INFO = "package-info.java";
b.janani68c55e12016-02-24 12:23:03 +053053
54 /**
55 * A private constructor is tested.
56 *
Bharat saraswalc0e04842016-05-12 13:16:57 +053057 * @throws SecurityException if any security violation is observed
58 * @throws NoSuchMethodException if when the method is not found
59 * @throws IllegalArgumentException if there is illegal argument found
60 * @throws InstantiationException if instantiation is provoked for the private constructor
61 * @throws IllegalAccessException if instance is provoked or a method is provoked
Bharat saraswale2d51d62016-03-23 19:40:35 +053062 * @throws InvocationTargetException when an exception occurs by the method or constructor
b.janani68c55e12016-02-24 12:23:03 +053063 */
64 @Test
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +053065 public void callPrivateConstructors()
66 throws SecurityException, NoSuchMethodException, IllegalArgumentException,
Vinod Kumar S38046502016-03-23 15:30:27 +053067 InstantiationException, IllegalAccessException, InvocationTargetException {
b.janani68c55e12016-02-24 12:23:03 +053068
Bharat saraswalc0e04842016-05-12 13:16:57 +053069 Class<?>[] classesToConstruct = {FileSystemUtil.class };
b.janani68c55e12016-02-24 12:23:03 +053070 for (Class<?> clazz : classesToConstruct) {
71 Constructor<?> constructor = clazz.getDeclaredConstructor();
72 constructor.setAccessible(true);
Bharat saraswal6ef0b762016-04-05 12:45:45 +053073 assertThat(null, not(constructor.newInstance()));
b.janani68c55e12016-02-24 12:23:03 +053074 }
75 }
76
77 /**
b.janani68c55e12016-02-24 12:23:03 +053078 * This test case checks the contents to be written in the file.
Bharat saraswale2d51d62016-03-23 19:40:35 +053079 *
80 * @throws IOException when fails to create a test file
b.janani68c55e12016-02-24 12:23:03 +053081 */
82 @Test
Bharat saraswalc0e04842016-05-12 13:16:57 +053083 public void updateFileHandleTest() throws IOException {
Vinod Kumar S38046502016-03-23 15:30:27 +053084
Bharat saraswalc0e04842016-05-12 13:16:57 +053085 File dir = new File(BASE_PKG + SLASH + TEST_FILE);
b.janani68c55e12016-02-24 12:23:03 +053086 dir.mkdirs();
Bharat saraswalc0e04842016-05-12 13:16:57 +053087 File createFile = new File(dir + TEST_FILE);
b.janani68c55e12016-02-24 12:23:03 +053088 createFile.createNewFile();
Bharat saraswalc0e04842016-05-12 13:16:57 +053089 File createSourceFile = new File(dir + SOURCE_TEST_FILE);
b.janani68c55e12016-02-24 12:23:03 +053090 createSourceFile.createNewFile();
Bharat saraswal6ef0b762016-04-05 12:45:45 +053091 updateFileHandle(createFile, TEST_DATA_1, false);
92 updateFileHandle(createFile, TEST_DATA_2, false);
93 updateFileHandle(createFile, TEST_DATA_3, false);
94 appendFileContents(createFile, createSourceFile);
95 updateFileHandle(createFile, null, true);
b.janani68c55e12016-02-24 12:23:03 +053096 }
97
98 /**
Bharat saraswale2d51d62016-03-23 19:40:35 +053099 * This test case checks whether the package is existing.
100 *
101 * @throws IOException when failed to create a test file
b.janani68c55e12016-02-24 12:23:03 +0530102 */
103 @Test
Bharat saraswalc0e04842016-05-12 13:16:57 +0530104 public void packageExistTest() throws IOException {
Vinod Kumar S38046502016-03-23 15:30:27 +0530105
Bharat saraswalc0e04842016-05-12 13:16:57 +0530106 String strPath = BASE_DIR_PKG + DIR_PATH;
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530107 File createDir = new File(strPath.replace(PERIOD, SLASH));
b.janani68c55e12016-02-24 12:23:03 +0530108 createDir.mkdirs();
Bharat saraswalc0e04842016-05-12 13:16:57 +0530109 File createFile = new File(createDir + SLASH + PKG_INFO);
b.janani68c55e12016-02-24 12:23:03 +0530110 createFile.createNewFile();
Bharat saraswal6ef0b762016-04-05 12:45:45 +0530111 assertThat(true, is(doesPackageExist(strPath)));
Bharat saraswalc0e04842016-05-12 13:16:57 +0530112 createPackage(getStubNode());
b.janani68c55e12016-02-24 12:23:03 +0530113 createDir.delete();
114 }
115
Bharat saraswalc0e04842016-05-12 13:16:57 +0530116 /**
117 * Returns stub YANG node.
118 *
119 * @return stub node
120 */
121 private YangNode getStubNode() {
122 YangJavaModule module = new YangJavaModule();
123 module.setName(TEST_DATA_1);
124 JavaFileInfo javafileInfo = new JavaFileInfo();
125 javafileInfo.setJavaName(TEST_DATA_1);
126 javafileInfo.setBaseCodeGenPath("");
127 javafileInfo.setPackageFilePath(BASE_PKG);
128 module.setJavaFileInfo(javafileInfo);
129 return module;
130 }
b.janani68c55e12016-02-24 12:23:03 +0530131}