< prev index next >

test/javax/xml/jaxp/unittest/parsers/Bug6506304Test.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 parsers;
  25 
  26 import javax.xml.parsers.SAXParser;
  27 import javax.xml.parsers.SAXParserFactory;
  28 


  29 import org.testng.Assert;

  30 import org.testng.annotations.Test;
  31 import org.xml.sax.XMLReader;
  32 
  33 /*
  34  * @bug 6506304
  35  * @summary Test MalformedURLException: unknown protocol won't be thrown when there is a space within the full path file name.
  36  */

  37 public class Bug6506304Test {
  38     public static boolean isWindows = false;
  39     static {
  40         if (System.getProperty("os.name").indexOf("Windows") > -1) {
  41             isWindows = true;
  42         }
  43     };
  44 
  45     @Test
  46     public void testPath() throws Exception {
  47         if (isWindows) {
  48             try {
  49                 SAXParserFactory factory = SAXParserFactory.newInstance();
  50                 factory.setNamespaceAware(true);
  51                 SAXParser jaxpParser = factory.newSAXParser();
  52                 XMLReader reader = jaxpParser.getXMLReader();
  53                 reader.parse("C:/space error/x.xml");
  54                 System.exit(0);
  55             } catch (Exception e) {
  56                 System.out.println(e.getMessage());
   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 parsers;
  25 
  26 import javax.xml.parsers.SAXParser;
  27 import javax.xml.parsers.SAXParserFactory;
  28 
  29 import jaxp.library.JAXPTestUtilities;
  30 
  31 import org.testng.Assert;
  32 import org.testng.annotations.Listeners;
  33 import org.testng.annotations.Test;
  34 import org.xml.sax.XMLReader;
  35 
  36 /*
  37  * @bug 6506304
  38  * @summary Test MalformedURLException: unknown protocol won't be thrown when there is a space within the full path file name.
  39  */
  40 @Listeners({jaxp.library.BasePolicy.class})
  41 public class Bug6506304Test {
  42     public static boolean isWindows = false;
  43     static {
  44         if (System.getProperty("os.name").indexOf("Windows") > -1) {
  45             isWindows = true;
  46         }
  47     };
  48 
  49     @Test
  50     public void testPath() throws Exception {
  51         if (isWindows) {
  52             try {
  53                 SAXParserFactory factory = SAXParserFactory.newInstance();
  54                 factory.setNamespaceAware(true);
  55                 SAXParser jaxpParser = factory.newSAXParser();
  56                 XMLReader reader = jaxpParser.getXMLReader();
  57                 reader.parse("C:/space error/x.xml");
  58                 System.exit(0);
  59             } catch (Exception e) {
  60                 System.out.println(e.getMessage());
< prev index next >