You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tc...@apache.org on 2011/06/28 01:39:50 UTC

svn commit: r1140376 - in /commons/proper/compress/trunk/src/test: java/org/apache/commons/compress/ChainingTestCase.java resources/bla.tar.bz2

Author: tcurdt
Date: Mon Jun 27 23:39:49 2011
New Revision: 1140376

URL: http://svn.apache.org/viewvc?rev=1140376&view=rev
Log:
to verify https://issues.apache.org/jira/browse/COMPRESS-137


Added:
    commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/ChainingTestCase.java   (with props)
    commons/proper/compress/trunk/src/test/resources/bla.tar.bz2   (with props)

Added: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/ChainingTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/ChainingTestCase.java?rev=1140376&view=auto
==============================================================================
--- commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/ChainingTestCase.java (added)
+++ commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/ChainingTestCase.java Mon Jun 27 23:39:49 2011
@@ -0,0 +1,49 @@
+/*
+ * 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 java.io.File;
+import java.io.FileInputStream;
+
+import org.apache.commons.compress.archivers.tar.TarArchiveEntry;
+import org.apache.commons.compress.archivers.tar.TarArchiveInputStream;
+import org.apache.commons.compress.compressors.bzip2.BZip2CompressorInputStream;
+import org.apache.commons.compress.compressors.gzip.GzipCompressorInputStream;
+
+
+public class ChainingTestCase extends AbstractTestCase {
+
+    public void testTarGzip() throws Exception {
+        File file = new File("src/test/resources/bla.tgz");
+        final TarArchiveInputStream is = new TarArchiveInputStream(new GzipCompressorInputStream(new FileInputStream(file)));
+        final TarArchiveEntry entry = (TarArchiveEntry)is.getNextEntry();
+        assertNotNull(entry);
+        assertEquals("test1.xml", entry.getName());
+        is.close();
+    }
+
+    public void testTarBzip2() throws Exception {
+        File file = new File("src/test/resources/bla.tar.bz2");
+        final TarArchiveInputStream is = new TarArchiveInputStream(new BZip2CompressorInputStream(new FileInputStream(file)));
+        final TarArchiveEntry entry = (TarArchiveEntry)is.getNextEntry();
+        assertNotNull(entry);
+        assertEquals("test1.xml", entry.getName());
+        is.close();
+    }
+}

Propchange: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/ChainingTestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/ChainingTestCase.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: commons/proper/compress/trunk/src/test/java/org/apache/commons/compress/ChainingTestCase.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: commons/proper/compress/trunk/src/test/resources/bla.tar.bz2
URL: http://svn.apache.org/viewvc/commons/proper/compress/trunk/src/test/resources/bla.tar.bz2?rev=1140376&view=auto
==============================================================================
Binary file - no diff available.

Propchange: commons/proper/compress/trunk/src/test/resources/bla.tar.bz2
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream