1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
/*
* Copyright 2007 - 2018 ETH Zuerich, CISD and SIS.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.base.tests;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Arrays;
import org.apache.commons.io.FileUtils;
import org.testng.AssertJUnit;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeMethod;
/**
* An <code>abstract</code> test case which accesses the file system.
* <p>
* It constructs an appropriate working directory which is test class specific.
* </p>
*
* @author Christian Ribeaud
*/
public abstract class AbstractFileSystemTestCase extends AssertJUnit
{
protected static final String UNIT_TEST_WORKING_DIRECTORY = "unit-test-wd";
protected static final String TARGETS_DIRECTORY = "targets";
protected static final File UNIT_TEST_ROOT_DIRECTORY = new File(TARGETS_DIRECTORY
+ File.separator + UNIT_TEST_WORKING_DIRECTORY);
protected final File workingDirectory;
private final boolean cleanAfterMethod;
protected AbstractFileSystemTestCase()
{
this(true);
}
protected AbstractFileSystemTestCase(final boolean cleanAfterMethod)
{
workingDirectory = createWorkingDirectory();
this.cleanAfterMethod = cleanAfterMethod;
}
/**
* Creates a {@link File} with <var>name</var> in the working directory. Ensure it doesn't
* exist and is deleted on exit.
*/
protected File create(String name)
{
final File file = new File(workingDirectory, name);
file.delete();
file.deleteOnExit();
return file;
}
/**
* Creates a directory in the unit test root directory "targets/unit-test-wd"
*/
protected final File createDirectoryInUnitTestRoot(String dirName)
{
final File directory = new File(UNIT_TEST_ROOT_DIRECTORY, dirName);
directory.mkdirs();
directory.deleteOnExit();
return directory;
}
private final File createWorkingDirectory()
{
return createDirectoryInUnitTestRoot(getClass().getName());
}
@BeforeMethod
public void setUp() throws IOException
{
cleanUpDirectoryBeforeTheTest(workingDirectory);
}
/**
* Deletes, recreates and verifies that this is the empty directory
*/
protected void cleanUpDirectoryBeforeTheTest(File directory)
{
deleteDirectory(directory);
directory.mkdirs();
assertEquals(true, directory.isDirectory());
File[] files = directory.listFiles();
if (files != null)
{
assertEquals("Unexpected files " + Arrays.asList(files), 0, files.length);
}
}
private void deleteDirectory(File dir)
{
try
{
FileUtils.deleteDirectory(dir);
} catch (IOException e)
{
System.err.println("Could not delete the directory " + dir.getPath() + " because: "
+ e.getMessage());
try
{
FileUtils.deleteDirectory(dir);
} catch (IOException e2)
{
System.err.println("Could not delete the directory " + dir.getPath()
+ " in second try because: " + e2.getMessage());
}
}
}
@AfterClass
public void afterClass() throws IOException
{
if (cleanAfterMethod == false)
{
return;
}
try
{
FileUtils.deleteDirectory(workingDirectory);
} catch (FileNotFoundException ex)
{
// Ignore
}
}
}
|