blob: 84c633aae089351850d030c5cbfbd01fa79d36e0 [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.compress;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import org.apache.commons.compress.archivers.ArchiveException;
import org.apache.commons.compress.archivers.ArchiveInputStream;
import org.apache.commons.compress.archivers.ar.ArArchiveInputStream;
import org.apache.commons.compress.archivers.arj.ArjArchiveInputStream;
import org.apache.commons.compress.archivers.cpio.CpioArchiveInputStream;
import org.apache.commons.compress.archivers.tar.TarArchiveInputStream;
import org.apache.commons.compress.archivers.zip.ZipArchiveInputStream;
import org.junit.Test;
public final class DetectArchiverTestCase extends AbstractTestCase {
final ClassLoader classLoader = getClass().getClassLoader();
@Test
public void testDetectionNotArchive() throws IOException {
try {
getStreamFor("test.txt");
fail("Expected ArchiveException");
} catch (final ArchiveException e) {
// expected
}
}
@Test
public void testCOMPRESS_117() throws Exception {
final ArchiveInputStream tar = getStreamFor("COMPRESS-117.tar");
assertNotNull(tar);
assertTrue(tar instanceof TarArchiveInputStream);
}
@Test
public void testCOMPRESS_335() throws Exception {
try (final ArchiveInputStream tar = getStreamFor("COMPRESS-335.tar")) {
assertNotNull(tar);
assertTrue(tar instanceof TarArchiveInputStream);
}
}
@Test
public void testDetection() throws Exception {
try (final ArchiveInputStream ar = getStreamFor("bla.ar")) {
assertNotNull(ar);
assertTrue(ar instanceof ArArchiveInputStream);
}
try (final ArchiveInputStream tar = getStreamFor("bla.tar")) {
assertNotNull(tar);
assertTrue(tar instanceof TarArchiveInputStream);
}
try (final ArchiveInputStream zip = getStreamFor("bla.zip")) {
assertNotNull(zip);
assertTrue(zip instanceof ZipArchiveInputStream);
}
try (final ArchiveInputStream jar = getStreamFor("bla.jar")) {
assertNotNull(jar);
assertTrue(jar instanceof ZipArchiveInputStream);
}
try (final ArchiveInputStream cpio = getStreamFor("bla.cpio")) {
assertNotNull(cpio);
assertTrue(cpio instanceof CpioArchiveInputStream);
}
try (final ArchiveInputStream arj = getStreamFor("bla.arj")) {
assertNotNull(arj);
assertTrue(arj instanceof ArjArchiveInputStream);
}
// Not yet implemented
// final ArchiveInputStream tgz = getStreamFor("bla.tgz");
// assertNotNull(tgz);
// assertTrue(tgz instanceof TarArchiveInputStream);
}
private ArchiveInputStream getStreamFor(final String resource)
throws ArchiveException, IOException {
return factory.createArchiveInputStream(
new BufferedInputStream(Files.newInputStream(getFile(resource).toPath())));
}
// Check that the empty archives created by the code are readable
// Not possible to detect empty "ar" archive as it is completely empty
// public void testEmptyArArchive() throws Exception {
// emptyArchive("ar");
// }
@Test
public void testEmptyCpioArchive() throws Exception {
checkEmptyArchive("cpio");
}
@Test
public void testEmptyJarArchive() throws Exception {
checkEmptyArchive("jar");
}
// empty tar archives just have 512 null bytes
// public void testEmptyTarArchive() throws Exception {
// checkEmptyArchive("tar");
// }
@Test
public void testEmptyZipArchive() throws Exception {
checkEmptyArchive("zip");
}
private void checkEmptyArchive(final String type) throws Exception{
final File ar = createEmptyArchive(type); // will be deleted by tearDown()
ar.deleteOnExit(); // Just in case file cannot be deleted
ArchiveInputStream ais = null;
BufferedInputStream in = null;
try {
in = new BufferedInputStream(Files.newInputStream(ar.toPath()));
ais = factory.createArchiveInputStream(in);
} catch (final ArchiveException ae) {
fail("Should have recognized empty archive for "+type);
} finally {
if (ais != null) {
ais.close(); // will close input as well
} else if (in != null){
in.close();
}
}
}
}