From harmony-dev-return-3682-apmail-incubator-harmony-dev-archive=incubator.apache.org@incubator.apache.org Tue Feb 07 10:29:28 2006 Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 42993 invoked from network); 7 Feb 2006 10:29:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 7 Feb 2006 10:29:27 -0000 Received: (qmail 20076 invoked by uid 500); 7 Feb 2006 10:29:21 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 20021 invoked by uid 500); 7 Feb 2006 10:29:21 -0000 Mailing-List: contact harmony-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-dev@incubator.apache.org Received: (qmail 20010 invoked by uid 99); 7 Feb 2006 10:29:20 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Feb 2006 02:29:18 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 4AB4DC9 for ; Tue, 7 Feb 2006 11:28:57 +0100 (CET) Message-ID: <1530036970.1139308137239.JavaMail.jira@ajax.apache.org> Date: Tue, 7 Feb 2006 11:28:57 +0100 (CET) From: "Svetlana Samoilenko (JIRA)" To: harmony-dev@incubator.apache.org Subject: [jira] Created: (HARMONY-81) java.util.zip.Inflater.infalate() throws DataFormatException instead of actual number of uncompressed bytes MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N java.util.zip.Inflater.infalate() throws DataFormatException instead of actual number of uncompressed bytes ----------------------------------------------------------------------------------------------------------- Key: HARMONY-81 URL: http://issues.apache.org/jira/browse/HARMONY-81 Project: Harmony Type: Bug Components: Classlib Reporter: Svetlana Samoilenko Description: According to the j2se 1.4 and 1.5 specification method java.util.zip.Inflater.infalate(byte [] b, int off, int length ) returns actual number of bytes uncompressed and throws DataFormatException if the compressed data format is invalid. The test listed below shows that Harmony throws DataFormatException instead of return 0 (actual number of uncompressed bytes). Code to reproduce: import java.util.zip.*; public class test2 { public static void main(String[] args){ Inflater inf = new Inflater(); try { System.out.println("Inflater.inflate() = "+inf.inflate(new byte[0], 0, 0)); } catch(DataFormatException e) { e.printStackTrace(); } } } Steps to Reproduce: 1. Build Harmony (check-out on 2006-01-30) j2se subset as described in README.txt. 2. Compile test2.java using BEA 1.4 javac > javac -d . test2.java 3. Run java using compatible VM (J9) > java -showversion test2 Output: C:\tmp>C:\jrockit-j2sdk1.4.2_04\bin\java.exe -showversion test2 java version "1.4.2_04" Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05) BEA WebLogic JRockit(TM) 1.4.2_04 JVM (build ari-31788-20040616-1132-win-ia32, Native Threads, GC strategy: parallel) Inflater.inflate() = 0 C:\tmp>C:\harmony\trunk\deploy\jre\bin\java -showversion test2 (c) Copyright 1991, 2005 The Apache Software Foundation or its licensors, as applicable. java.util.zip.DataFormatException: at java.util.zip.Inflater.inflateImpl(Native Method) at java.util.zip.Inflater.inflate(Inflater.java:169) at test2.main(test2.java:7) Suggested junit test case: ------------------------ InflaterTest.java ------------------------------------------------- import java.util.zip.*; import junit.framework.*; public class InflaterTest extends TestCase { public static void main(String[] args) { junit.textui.TestRunner.run(InflaterTest.class); } public void test_inflate () { Inflater inf = new Inflater(); try { int n=inf.inflate(new byte[0], 0, 0); assertEquals(0, n); } catch(DataFormatException e) { fail("unexpected DataFormatException"); } } } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira