Return-Path: Delivered-To: apmail-incubator-harmony-commits-archive@www.apache.org Received: (qmail 41075 invoked from network); 4 Oct 2006 09:45:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 4 Oct 2006 09:45:13 -0000 Received: (qmail 83313 invoked by uid 500); 4 Oct 2006 09:45:13 -0000 Delivered-To: apmail-incubator-harmony-commits-archive@incubator.apache.org Received: (qmail 83265 invoked by uid 500); 4 Oct 2006 09:45:12 -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 83247 invoked by uid 99); 4 Oct 2006 09:45:12 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Oct 2006 02:45:12 -0700 X-ASF-Spam-Status: No, hits=0.0 required=5.0 tests= Received: from [209.237.227.198] ([209.237.227.198:40038] helo=brutus.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id C4/03-00170-D9283254 for ; Wed, 04 Oct 2006 02:45:01 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 56F8671408C for ; Wed, 4 Oct 2006 02:44:20 -0700 (PDT) Message-ID: <5771314.1159955060353.JavaMail.root@brutus> Date: Wed, 4 Oct 2006 02:44:20 -0700 (PDT) From: "Svetlana Samoilenko (JIRA)" To: harmony-commits@incubator.apache.org Subject: [jira] Created: (HARMONY-1686) [luni][jndi] javax.naming.directory.InitialContext.composeName(null,Name) does not throw unspecified NPE MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [luni][jndi] javax.naming.directory.InitialContext.composeName(null,Name) does not throw unspecified NPE ---------------------------------------------------------------------------------------------------------- Key: HARMONY-1686 URL: http://issues.apache.org/jira/browse/HARMONY-1686 Project: Harmony Issue Type: Bug Components: Classlib Reporter: Svetlana Samoilenko Priority: Minor Description: Compatibility issue: javax.naming.directory.InitialContext.composeName(Name name, Name prefix) throws NamingException if name==null while RI throws NPE. There is no mention of NPE in the specification. Test for reproducing: import junit.framework.TestCase; import javax.naming.directory.*; import javax.naming.*; public class test extends TestCase { public void testComposeName_NameNull_Name() throws NamingException { try { InitialContext obj=new InitialContext(); obj.composeName(null, new CompositeName("1/2/f/g/43/5")); fail("NullPointerException should be thrown"); } catch (NullPointerException e) { //expected } } } Output on Sun 1.5: ================== java version "1.5.0_06" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_06-b05) Java HotSpot(TM) Client VM (build 1.5.0_06-b05, mixed mode) . Time: 0 OK (1 test) Output on Harmony: ================== Apache Harmony Launcher : (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable. java version "1.5.0" pre-alpha : not complete or compatible svn = r452710, (Oct 4 2006), Windows/ia32/msvc 1310, release build http://incubator.apache.org/harmony There was 1 error: 1) testComposeName_NameNull_Name(test)javax.naming.InvalidNameException: Invalid name. at javax.naming.InitialContext.composeName(InitialContext.java:445) at test.testComposeName_NameNull_Name(test.java:10) at java.lang.reflect.VMReflection.invokeMethod(Native Method) 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