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());
  57                 if (e.getMessage().equalsIgnoreCase("unknown protocol: c")) {
  58                     Assert.fail("jdk5 allowed the above form");
  59                 } else if (e.getMessage().indexOf("(The system cannot find the path specified)") > 0) {
  60                     // expected
  61                 }
  62             }
  63         }
  64     }
  65 }