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 java.io.StringReader;
  27 
  28 import javax.xml.XMLConstants;
  29 import javax.xml.parsers.DocumentBuilderFactory;
  30 import javax.xml.parsers.ParserConfigurationException;
  31 import javax.xml.transform.stream.StreamSource;
  32 import javax.xml.validation.Schema;
  33 import javax.xml.validation.SchemaFactory;
  34 
  35 import org.testng.Assert;
  36 import org.testng.annotations.Listeners;
  37 import org.testng.annotations.Test;
  38 import org.xml.sax.InputSource;
  39 
  40 /*
  41  * @bug 4967002
  42  * @summary Test DocumentBuilderFactory.newDocumentBuilder() throws ParserConfigurationException
  43  * when it uses the "http://java.sun.com/xml/jaxp/properties/schemaSource" property
  44  * and/or the "http://java.sun.com/xml/jaxp/properties/schemaLanguage" property
  45  * in conjunction with setting a Schema object.
  46  */
  47 @Listeners({jaxp.library.BasePolicy.class})
  48 public class Bug4967002 {
  49     String schemaSource = "<?xml version='1.0'?>\n" + "<xsd:schema xmlns:xsd='http://www.w3.org/2001/XMLSchema'>\n" + "  <xsd:element name='test101'>\n"
  50             + "    <xsd:complexType>\n" + "      <xsd:attribute name='attr'/>\n" + "      <xsd:attribute name='attr2' default='DEF'/>\n"
  51             + "    </xsd:complexType>\n" + "  </xsd:element>\n" + "</xsd:schema>\n";
  52 
  53     Schema createSchema() {
  54         SchemaFactory schFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
  55         try {
  56             Schema sch = schFactory.newSchema(new StreamSource(new StringReader(schemaSource)));
  57             return sch;
  58         } catch (Exception se) {
  59             throw new IllegalStateException("No Schema : " + se);
  60         }
  61     }
  62 
  63     @Test
  64     public void test1() {
  65         setAttr(true);
  66     }
  67 
  68     @Test
  69     public void test2() {
  70         setAttr(false);
  71     }
  72 
  73     void setAttr(boolean setSrc) {
  74         DocumentBuilderFactory docBFactory = DocumentBuilderFactory.newInstance();
  75         Schema sch = createSchema();
  76         docBFactory.setSchema(sch);
  77         docBFactory.setNamespaceAware(true);
  78         docBFactory.setValidating(true);
  79 
  80         final String aSchemaLanguage = "http://java.sun.com/xml/jaxp/properties/schemaLanguage";
  81         final String aSchemaSource = "http://java.sun.com/xml/jaxp/properties/schemaSource";
  82 
  83         docBFactory.setAttribute(aSchemaLanguage, "http://www.w3.org/2001/XMLSchema");
  84         // System.out.println("---- Set schemaLanguage: " +
  85         // docBFactory.getAttribute(aSchemaLanguage));
  86         if (setSrc) {
  87             docBFactory.setAttribute(aSchemaSource, new InputSource(new StringReader(schemaSource)));
  88             // System.out.println("---- Set schemaSource: " +
  89             // docBFactory.getAttribute(aSchemaSource));
  90         }
  91 
  92         try {
  93             docBFactory.newDocumentBuilder();
  94             Assert.fail("ParserConfigurationException expected");
  95         } catch (ParserConfigurationException pce) {
  96             return; // success
  97         }
  98     }
  99 }