blob: a203d5a1b2716a19508e2cbc20c5d690ae5f0367 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.commons.vfs2.filter;
import java.io.File;
import java.io.IOException;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.apache.commons.vfs2.FileFilter;
import org.apache.commons.vfs2.FileFilterSelector;
import org.apache.commons.vfs2.FileObject;
import org.apache.commons.vfs2.FileSelectInfo;
import org.apache.commons.vfs2.FileSystemException;
import org.junit.Assert;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
/**
* Test for {@link EmptyFileFilter}.
*/
// CHECKSTYLE:OFF Test code
public class EmptyFileFilterTest extends BaseFilterTest {
private static File testDir;
private static File notEmptyFile;
private static FileSelectInfo notEmptyFileInfo;
private static File emptyFile;
private static FileSelectInfo emptyFileInfo;
private static File notEmptyDir;
private static FileSelectInfo notEmptyDirInfo;
private static File emptyDir;
private static FileSelectInfo emptyDirInfo;
private static File notExistingFile;
private static FileSelectInfo notExistingFileInfo;
private static File zipFile;
private static FileObject zipFileObj;
@AfterAll
public static void afterClass() throws IOException {
notEmptyFile = null;
notEmptyFileInfo = null;
emptyFile = null;
emptyFileInfo = null;
notEmptyDir = null;
notEmptyDirInfo = null;
emptyDir = null;
emptyDirInfo = null;
notExistingFile = null;
notExistingFileInfo = null;
IOUtils.close(zipFileObj);
FileUtils.deleteQuietly(zipFile);
zipFile = null;
FileUtils.deleteDirectory(testDir);
testDir = null;
}
@BeforeAll
public static void beforeClass() throws IOException {
testDir = getTestDir(EmptyFileFilterTest.class.getName());
testDir.mkdir();
notEmptyFile = new File(testDir, "full.txt");
FileUtils.write(notEmptyFile, "whatever");
notEmptyFileInfo = createFileSelectInfo(notEmptyFile);
emptyFile = new File(testDir, "empty.txt");
FileUtils.touch(emptyFile);
emptyFileInfo = createFileSelectInfo(emptyFile);
notEmptyDir = new File(testDir, "full-dir");
notEmptyDir.mkdir();
notEmptyDirInfo = createFileSelectInfo(notEmptyDir);
FileUtils.touch(new File(notEmptyDir, "foobar.txt"));
emptyDir = new File(testDir, "empty-dir");
emptyDir.mkdir();
emptyDirInfo = createFileSelectInfo(emptyDir);
notExistingFile = new File(testDir, "not-existing-file.txt");
notExistingFileInfo = createFileSelectInfo(notExistingFile);
// Zip the test directory
zipFile = new File(getTempDir(), EmptyFileFilterTest.class.getName() + ".zip");
zipDir(testDir, "", zipFile);
zipFileObj = getZipFileObject(zipFile);
}
@Test
public void testAcceptEmpty() throws FileSystemException {
final FileFilter testee = EmptyFileFilter.EMPTY;
Assert.assertFalse(testee.accept(notEmptyFileInfo));
Assert.assertTrue(testee.accept(emptyFileInfo));
Assert.assertFalse(testee.accept(notEmptyDirInfo));
Assert.assertTrue(testee.accept(emptyDirInfo));
Assert.assertTrue(testee.accept(notExistingFileInfo));
}
@Test
public void testAcceptNotEmpty() throws FileSystemException {
final FileFilter testee = EmptyFileFilter.NOT_EMPTY;
Assert.assertTrue(testee.accept(notEmptyFileInfo));
Assert.assertFalse(testee.accept(emptyFileInfo));
Assert.assertTrue(testee.accept(notEmptyDirInfo));
Assert.assertFalse(testee.accept(emptyDirInfo));
Assert.assertFalse(testee.accept(notExistingFileInfo));
}
@Test
public void testZipFile() throws FileSystemException {
// Same test with ZIP file
FileObject[] files;
files = zipFileObj.findFiles(new FileFilterSelector(EmptyFileFilter.EMPTY));
assertContains(files, emptyFile.getName());
Assert.assertEquals(1, files.length);
files = zipFileObj.findFiles(new FileFilterSelector(EmptyFileFilter.NOT_EMPTY));
assertContains(files, notEmptyFile.getName(), notEmptyDir.getName());
Assert.assertEquals(2, files.length);
}
}
// CHECKSTYLE:ON