blob: 0198720af4bd6b50290edf5179722d68b0c261c8 [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;
Vinod Kumar S38046502016-03-23 15:30:27 +053023import org.junit.Test;
Bharat saraswal2f00b4b2016-03-04 20:08:09 +053024
Bharat saraswal96dfef02016-06-16 00:29:12 +053025import static org.apache.commons.io.FileUtils.deleteDirectory;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053026import static org.hamcrest.core.IsNot.not;
27import static org.junit.Assert.assertThat;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053028import static org.onosproject.yangutils.utils.UtilConstants.SLASH;
29import static org.onosproject.yangutils.utils.io.impl.FileSystemUtil.appendFileContents;
Bharat saraswal6ef0b762016-04-05 12:45:45 +053030import static org.onosproject.yangutils.utils.io.impl.FileSystemUtil.updateFileHandle;
b.janani68c55e12016-02-24 12:23:03 +053031
32/**
33 * Tests the file handle utilities.
34 */
35public final class FileSystemUtilTest {
36
Bharat saraswale2d51d62016-03-23 19:40:35 +053037 private static final String BASE_PKG = "target/UnitTestCase";
38 private static final String TEST_DATA_1 = "This is to append a text to the file first1\n";
39 private static final String TEST_DATA_2 = "This is next second line\n";
40 private static final String TEST_DATA_3 = "This is next third line in the file";
Bharat saraswalc0e04842016-05-12 13:16:57 +053041 private static final String TEST_FILE = "testFile";
42 private static final String SOURCE_TEST_FILE = "sourceTestFile";
b.janani68c55e12016-02-24 12:23:03 +053043
44 /**
45 * A private constructor is tested.
46 *
Gaurav Agrawalc5f63272016-06-16 13:09:53 +053047 * @throws SecurityException if any security violation is observed
48 * @throws NoSuchMethodException if when the method is not found
49 * @throws IllegalArgumentException if there is illegal argument found
50 * @throws InstantiationException if instantiation is provoked for the private constructor
51 * @throws IllegalAccessException if instance is provoked or a method is provoked
Bharat saraswale2d51d62016-03-23 19:40:35 +053052 * @throws InvocationTargetException when an exception occurs by the method or constructor
b.janani68c55e12016-02-24 12:23:03 +053053 */
54 @Test
VinodKumarS-Huaweicb3a1f52016-05-10 17:58:57 +053055 public void callPrivateConstructors()
56 throws SecurityException, NoSuchMethodException, IllegalArgumentException,
Vinod Kumar S38046502016-03-23 15:30:27 +053057 InstantiationException, IllegalAccessException, InvocationTargetException {
b.janani68c55e12016-02-24 12:23:03 +053058
Gaurav Agrawalc5f63272016-06-16 13:09:53 +053059 Class<?>[] classesToConstruct = {FileSystemUtil.class};
b.janani68c55e12016-02-24 12:23:03 +053060 for (Class<?> clazz : classesToConstruct) {
61 Constructor<?> constructor = clazz.getDeclaredConstructor();
62 constructor.setAccessible(true);
Bharat saraswal6ef0b762016-04-05 12:45:45 +053063 assertThat(null, not(constructor.newInstance()));
b.janani68c55e12016-02-24 12:23:03 +053064 }
65 }
66
67 /**
b.janani68c55e12016-02-24 12:23:03 +053068 * This test case checks the contents to be written in the file.
Bharat saraswale2d51d62016-03-23 19:40:35 +053069 *
70 * @throws IOException when fails to create a test file
b.janani68c55e12016-02-24 12:23:03 +053071 */
72 @Test
Bharat saraswalc0e04842016-05-12 13:16:57 +053073 public void updateFileHandleTest() throws IOException {
Vinod Kumar S38046502016-03-23 15:30:27 +053074
Bharat saraswalc0e04842016-05-12 13:16:57 +053075 File dir = new File(BASE_PKG + SLASH + TEST_FILE);
b.janani68c55e12016-02-24 12:23:03 +053076 dir.mkdirs();
Bharat saraswalc0e04842016-05-12 13:16:57 +053077 File createFile = new File(dir + TEST_FILE);
b.janani68c55e12016-02-24 12:23:03 +053078 createFile.createNewFile();
Bharat saraswalc0e04842016-05-12 13:16:57 +053079 File createSourceFile = new File(dir + SOURCE_TEST_FILE);
b.janani68c55e12016-02-24 12:23:03 +053080 createSourceFile.createNewFile();
Bharat saraswal6ef0b762016-04-05 12:45:45 +053081 updateFileHandle(createFile, TEST_DATA_1, false);
82 updateFileHandle(createFile, TEST_DATA_2, false);
83 updateFileHandle(createFile, TEST_DATA_3, false);
84 appendFileContents(createFile, createSourceFile);
85 updateFileHandle(createFile, null, true);
Bharat saraswal96dfef02016-06-16 00:29:12 +053086 deleteDirectory(dir);
b.janani68c55e12016-02-24 12:23:03 +053087 }
b.janani68c55e12016-02-24 12:23:03 +053088}