blob: 271036f2a88cd56149fcd8ed928222147065ac0c [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;
Bharat saraswalb551aae2016-07-14 15:18:20 +053023
24import org.apache.commons.io.FileUtils;
Vinod Kumar S38046502016-03-23 15:30:27 +053025import org.junit.Test;
Bharat saraswal2f00b4b2016-03-04 20:08:09 +053026
Bharat saraswal96dfef02016-06-16 00:29:12 +053027import static org.apache.commons.io.FileUtils.deleteDirectory;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053028import static org.hamcrest.core.IsNot.not;
29import static org.junit.Assert.assertThat;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053030import static org.onosproject.yangutils.utils.UtilConstants.SLASH;
31import static org.onosproject.yangutils.utils.io.impl.FileSystemUtil.appendFileContents;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053032import static org.onosproject.yangutils.utils.io.impl.FileSystemUtil.updateFileHandle;
b.janani68c55e12016-02-24 12:23:03 +053033
34/**
35 * Tests the file handle utilities.
36 */
37public final class FileSystemUtilTest {
38
Bharat saraswale2d51d62016-03-23 19:40:35 +053039 private static final String BASE_PKG = "target/UnitTestCase";
40 private static final String TEST_DATA_1 = "This is to append a text to the file first1\n";
41 private static final String TEST_DATA_2 = "This is next second line\n";
42 private static final String TEST_DATA_3 = "This is next third line in the file";
Bharat saraswalc0e04842016-05-12 13:16:57 +053043 private static final String TEST_FILE = "testFile";
44 private static final String SOURCE_TEST_FILE = "sourceTestFile";
b.janani68c55e12016-02-24 12:23:03 +053045
46 /**
47 * A private constructor is tested.
48 *
Gaurav Agrawalc5f63272016-06-16 13:09:53 +053049 * @throws SecurityException if any security violation is observed
50 * @throws NoSuchMethodException if when the method is not found
51 * @throws IllegalArgumentException if there is illegal argument found
52 * @throws InstantiationException if instantiation is provoked for the private constructor
53 * @throws IllegalAccessException if instance is provoked or a method is provoked
Bharat saraswale2d51d62016-03-23 19:40:35 +053054 * @throws InvocationTargetException when an exception occurs by the method or constructor
b.janani68c55e12016-02-24 12:23:03 +053055 */
56 @Test
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +053057 public void callPrivateConstructors()
58 throws SecurityException, NoSuchMethodException, IllegalArgumentException,
Vinod Kumar S38046502016-03-23 15:30:27 +053059 InstantiationException, IllegalAccessException, InvocationTargetException {
b.janani68c55e12016-02-24 12:23:03 +053060
Gaurav Agrawalc5f63272016-06-16 13:09:53 +053061 Class<?>[] classesToConstruct = {FileSystemUtil.class};
b.janani68c55e12016-02-24 12:23:03 +053062 for (Class<?> clazz : classesToConstruct) {
63 Constructor<?> constructor = clazz.getDeclaredConstructor();
64 constructor.setAccessible(true);
Bharat saraswal6ef0b762016-04-05 12:45:45 +053065 assertThat(null, not(constructor.newInstance()));
b.janani68c55e12016-02-24 12:23:03 +053066 }
67 }
68
69 /**
b.janani68c55e12016-02-24 12:23:03 +053070 * This test case checks the contents to be written in the file.
Bharat saraswale2d51d62016-03-23 19:40:35 +053071 *
72 * @throws IOException when fails to create a test file
b.janani68c55e12016-02-24 12:23:03 +053073 */
74 @Test
Bharat saraswalc0e04842016-05-12 13:16:57 +053075 public void updateFileHandleTest() throws IOException {
Vinod Kumar S38046502016-03-23 15:30:27 +053076
Bharat saraswalc0e04842016-05-12 13:16:57 +053077 File dir = new File(BASE_PKG + SLASH + TEST_FILE);
b.janani68c55e12016-02-24 12:23:03 +053078 dir.mkdirs();
Bharat saraswalc0e04842016-05-12 13:16:57 +053079 File createFile = new File(dir + TEST_FILE);
b.janani68c55e12016-02-24 12:23:03 +053080 createFile.createNewFile();
Bharat saraswalc0e04842016-05-12 13:16:57 +053081 File createSourceFile = new File(dir + SOURCE_TEST_FILE);
b.janani68c55e12016-02-24 12:23:03 +053082 createSourceFile.createNewFile();
Bharat saraswal6ef0b762016-04-05 12:45:45 +053083 updateFileHandle(createFile, TEST_DATA_1, false);
84 updateFileHandle(createFile, TEST_DATA_2, false);
85 updateFileHandle(createFile, TEST_DATA_3, false);
86 appendFileContents(createFile, createSourceFile);
87 updateFileHandle(createFile, null, true);
Bharat saraswal96dfef02016-06-16 00:29:12 +053088 deleteDirectory(dir);
Bharat saraswalb551aae2016-07-14 15:18:20 +053089 FileUtils.deleteDirectory(new File(BASE_PKG));
b.janani68c55e12016-02-24 12:23:03 +053090 }
b.janani68c55e12016-02-24 12:23:03 +053091}