AbstractFileSystemTestCase.java 3.32 KiB
/*
* Copyright 2007 ETH Zuerich, CISD
*
* 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";
private 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;
}
private final File createWorkingDirectory()
{
final File directory = new File(UNIT_TEST_ROOT_DIRECTORY, getClass().getName());
directory.mkdirs();
directory.deleteOnExit();
return directory;
}
@BeforeMethod
public void setUp() throws IOException
{
deleteDirectory(workingDirectory);
workingDirectory.mkdirs();
assertEquals(true, workingDirectory.isDirectory());
File[] files = workingDirectory.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
}
}
}