Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 39874 invoked from network); 19 Apr 2006 06:22:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Apr 2006 06:22:27 -0000 Received: (qmail 4601 invoked by uid 500); 19 Apr 2006 06:22:21 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 4525 invoked by uid 500); 19 Apr 2006 06:22:20 -0000 Mailing-List: contact harmony-commits-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-commits@incubator.apache.org Received: (qmail 4514 invoked by uid 99); 19 Apr 2006 06:22:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Apr 2006 23:22:20 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Apr 2006 23:22:19 -0700 Received: from brutus (localhost.localdomain [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id CFC7B7142D7 for ; Wed, 19 Apr 2006 06:21:19 +0000 (GMT) Message-ID: <6853754.1145427679847.JavaMail.jira@brutus> Date: Wed, 19 Apr 2006 06:21:19 +0000 (GMT+00:00) From: "Mikhail Loenko (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Closed: (HARMONY-369) BeanContextSupport.getResourceAsStream(...) throws IllegalArgumentException instead of NullPointerException In-Reply-To: <432651.1145344697317.JavaMail.jira@brutus> 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 [ http://issues.apache.org/jira/browse/HARMONY-369?page=all ] Mikhail Loenko closed HARMONY-369: ---------------------------------- Resolution: Duplicate Assign To: Mikhail Loenko cumulative issue for HARMONY-362 to HARMONY-370 is submitted as HARMONY-373 > BeanContextSupport.getResourceAsStream(...) throws IllegalArgumentException instead of NullPointerException > ----------------------------------------------------------------------------------------------------------- > > Key: HARMONY-369 > URL: http://issues.apache.org/jira/browse/HARMONY-369 > Project: Harmony > Type: Bug > Components: Classlib > Reporter: Dmitry M. Kononov > Assignee: Mikhail Loenko > Priority: Minor > Attachments: BeanContextSupport.java.diff, BeanContextSupportTest.java > > Problem details: > java.beans.beancontext.BeanContextSupport.getResourceAsStream(String name, BeanContextChild bcc): > Harmony throws IllegalArgumentException when name=null,bcc=null, while RI throws NullPointerException. > Specification does not mention IllegalArgumentException, but says about NullPointerException throwing. > Junit test to reproduce the problem: > import junit.framework.TestCase; > import java.beans.beancontext.BeanContextSupport; > public class BeanContextSupportTest extends TestCase { > public void test_getResourceAsStreamLlava_lang_StringLjava_beans_beancontext_BeanContextChild() { > BeanContextSupport obj = new BeanContextSupport(); > boolean b = true; > try { > obj.getResourceAsStream(null, null); > b = false; > } catch (NullPointerException t) { > t.printStackTrace(); > } > assertTrue(b); > } > } > RI output: > .java.lang.NullPointerException: name > at java.beans.beancontext.BeanContextSupport.getResourceAsStream(BeanCon > textSupport.java:645) > at BeanContextSupportTest.test_getResourceAsStreamLlava_lang_StringLjava > _beans_beancontext_BeanContextChild(BeanContextSupportTest.java:15) > at jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[ > Ljava.lang.Object;)Ljava.lang.Object;(Unknown Source) > at java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object; > I)Ljava.lang.Object;(Unknown Source) > at junit.framework.TestCase.runTest(TestCase.java:154) > at junit.framework.TestCase.runBare(TestCase.java:127) > at junit.framework.TestResult$1.protect(TestResult.java:106) > at junit.framework.TestResult.runProtected(TestResult.java:124) > at junit.framework.TestResult.run(TestResult.java:109) > at junit.framework.TestCase.run(TestCase.java:118) > at junit.framework.TestSuite.runTest(TestSuite.java:208) > at junit.framework.TestSuite.run(TestSuite.java:203) > at junit.textui.TestRunner.doRun(TestRunner.java:116) > at junit.textui.TestRunner.start(TestRunner.java:172) > at junit.textui.TestRunner.main(TestRunner.java:138) > Time: 0.032 > OK (1 test) > HARMONY output: > java version 1.4.2 (subset) > (c) Copyright 1991, 2005 The Apache Software Foundation or its licensors, as app > licable. > .. > Time: 0.015 > There was 1 error: > 1) test_getResourceAsStreamLlava_lang_StringLjava_beans_beancontext_BeanContextC > hild(BeanContextSupportTest)java.lang.IllegalArgumentException: Resource name ca > n not be null > at java.beans.beancontext.BeanContextSupport.getResourceAsStream(BeanCon > textSupport.java:805) > at BeanContextSupportTest.test_getResourceAsStreamLlava_lang_StringLjava > _beans_beancontext_BeanContextChild(BeanContextSupportTest.java:15) > at java.lang.reflect.AccessibleObject.invokeV(AccessibleObject.java:211) > FAILURES!!! > Tests run: 1, Failures: 0, Errors: 1 -- 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