blob: a6b10d882e01ad99ab1f85da77b32dc4f3459b96 [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.provider.bzip2;
import java.io.File;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import org.apache.commons.AbstractVfsTestCase;
import org.apache.commons.vfs2.FileContent;
import org.apache.commons.vfs2.FileObject;
import org.apache.commons.vfs2.VFS;
import org.apache.commons.vfs2.provider.compressed.CompressedFileFileObject;
import org.junit.Assert;
import org.junit.Test;
public class Bzip2TestCase extends AbstractVfsTestCase {
@Test
public void testBZip2() throws IOException {
final File testResource = getTestResource("bla.txt.bz2");
try (final FileObject bz2FileObject = VFS.getManager().resolveFile("bz2://" + testResource)) {
Assert.assertTrue(bz2FileObject.exists());
Assert.assertTrue(bz2FileObject.isFolder());
try (final FileObject fileObjectDir = bz2FileObject.resolveFile("bla.txt")) {
Assert.assertTrue(fileObjectDir.exists());
Assert.assertTrue(bz2FileObject.isFolder());
try (final FileObject fileObject = fileObjectDir.resolveFile("bla.txt")) {
Assert.assertTrue(fileObject.exists());
Assert.assertFalse(fileObject.isFolder());
Assert.assertTrue(fileObject.isFile());
try (final FileContent content = fileObject.getContent()) {
Assert.assertEquals(CompressedFileFileObject.SIZE_UNDEFINED, content.getSize());
// blows up, Commons Compress?
final String string = content.getString(StandardCharsets.UTF_8);
Assert.assertEquals(26, string.length());
Assert.assertEquals("Hallo, dies ist ein Test.\n", string);
}
}
}
}
}
}