< prev index next >

test/javax/xml/jaxp/unittest/xpath/Bug4991939.java

Print this page


   1 /*
   2  * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 package xpath;
  25 
  26 import javax.xml.XMLConstants;
  27 import javax.xml.namespace.QName;
  28 import javax.xml.xpath.XPath;
  29 import javax.xml.xpath.XPathFactory;
  30 
  31 import org.testng.Assert;

  32 import org.testng.annotations.Test;
  33 
  34 /*
  35  * @bug 4991939
  36  * @summary XPath.evaluate(...) throws IllegalArgumentException if returnType is not one of the types defined in XPathConstants.
  37  */

  38 public class Bug4991939 {
  39 
  40     @Test
  41     public void testXPath13() throws Exception {
  42         QName qname = new QName(XMLConstants.XML_NS_URI, "");
  43 
  44         XPathFactory xpathFactory = XPathFactory.newInstance();
  45         Assert.assertNotNull(xpathFactory);
  46 
  47         XPath xpath = xpathFactory.newXPath();
  48         Assert.assertNotNull(xpath);
  49 
  50         try {
  51             xpath.evaluate("1+1", (Object) null, qname);
  52             Assert.fail("failed , expected IAE not thrown");
  53         } catch (IllegalArgumentException e) {
  54             ; // as expected
  55         }
  56     }
  57 }
   1 /*
   2  * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 package xpath;
  25 
  26 import javax.xml.XMLConstants;
  27 import javax.xml.namespace.QName;
  28 import javax.xml.xpath.XPath;
  29 import javax.xml.xpath.XPathFactory;
  30 
  31 import org.testng.Assert;
  32 import org.testng.annotations.Listeners;
  33 import org.testng.annotations.Test;
  34 
  35 /*
  36  * @bug 4991939
  37  * @summary XPath.evaluate(...) throws IllegalArgumentException if returnType is not one of the types defined in XPathConstants.
  38  */
  39 @Listeners({jaxp.library.BasePolicy.class})
  40 public class Bug4991939 {
  41 
  42     @Test
  43     public void testXPath13() throws Exception {
  44         QName qname = new QName(XMLConstants.XML_NS_URI, "");
  45 
  46         XPathFactory xpathFactory = XPathFactory.newInstance();
  47         Assert.assertNotNull(xpathFactory);
  48 
  49         XPath xpath = xpathFactory.newXPath();
  50         Assert.assertNotNull(xpath);
  51 
  52         try {
  53             xpath.evaluate("1+1", (Object) null, qname);
  54             Assert.fail("failed , expected IAE not thrown");
  55         } catch (IllegalArgumentException e) {
  56             ; // as expected
  57         }
  58     }
  59 }
< prev index next >