< prev index next >

test/com/sun/jndi/ldap/LdapName/UnescapeTest.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 4892070
  27  * @summary java gets hung in
  28  *      com.sun.jndi.ldap.LdapName$TypeAndValue.unescapeValue()

  29  */
  30 
  31 import com.sun.jndi.ldap.LdapName;
  32 
  33 public class UnescapeTest  {
  34 
  35     public static void main(String[] args) {
  36 
  37         try {
  38 
  39             // The buggy code hangs in the method unescapeAttributeValue()
  40             System.out.println(LdapName.unescapeAttributeValue("\\uvw"));
  41 
  42         } catch (IllegalArgumentException e) {
  43             System.out.println("Caught the right exception");
  44         }
  45 
  46     }
  47 }


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug 4892070
  27  * @summary java gets hung in
  28  *      com.sun.jndi.ldap.LdapName$TypeAndValue.unescapeValue()
  29  * @modules java.naming/com.sun.jndi.ldap
  30  */
  31 
  32 import com.sun.jndi.ldap.LdapName;
  33 
  34 public class UnescapeTest  {
  35 
  36     public static void main(String[] args) {
  37 
  38         try {
  39 
  40             // The buggy code hangs in the method unescapeAttributeValue()
  41             System.out.println(LdapName.unescapeAttributeValue("\\uvw"));
  42 
  43         } catch (IllegalArgumentException e) {
  44             System.out.println("Caught the right exception");
  45         }
  46 
  47     }
  48 }
< prev index next >