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 validation;
  25 
  26 import java.io.File;
  27 import java.io.FileFilter;
  28 import java.io.IOException;
  29 import java.util.concurrent.BrokenBarrierException;
  30 import java.util.concurrent.CyclicBarrier;
  31 import java.util.concurrent.ExecutorService;
  32 import java.util.concurrent.Executors;
  33 
  34 import javax.xml.XMLConstants;
  35 import javax.xml.parsers.DocumentBuilder;
  36 import javax.xml.parsers.DocumentBuilderFactory;
  37 import javax.xml.parsers.ParserConfigurationException;
  38 import javax.xml.transform.Source;
  39 import javax.xml.transform.dom.DOMSource;
  40 import javax.xml.transform.stream.StreamSource;
  41 import javax.xml.validation.Schema;
  42 import javax.xml.validation.SchemaFactory;
  43 import javax.xml.validation.Validator;
  44 
  45 import org.testng.Assert;
  46 import org.testng.annotations.BeforeClass;
  47 import org.testng.annotations.Test;
  48 import org.w3c.dom.Document;
  49 import org.xml.sax.ErrorHandler;
  50 import org.xml.sax.SAXException;
  51 import org.xml.sax.SAXParseException;
  52 
  53 /*
  54  * @bug 6773084
  55  * @summary Test Schema object is thread safe.
  56  */
  57 public class Bug6773084Test {
  58     static final String SCHEMA_LANGUAGE = "http://java.sun.com/xml/jaxp/properties/schemaLanguage";
  59     static final String SCHEMA_SOURCE = "http://java.sun.com/xml/jaxp/properties/schemaSource";
  60 
  61     private static final int NTHREADS = 25;
  62     private static final ExecutorService EXEC = Executors.newCachedThreadPool();
  63 
  64     private static final CyclicBarrier BARRIER = new CyclicBarrier(NTHREADS);
  65 
  66     public static final String IN_FOLDER = Bug6773084Test.class.getResource("Bug6773084In").getPath();
  67     public static final String XSD_PATH = Bug6773084Test.class.getResource("Bug6773084.xsd").getPath();
  68 
  69     private static Schema schema;
  70 
  71     @BeforeClass
  72     public void setup(){
  73         policy.PolicyUtil.changePolicy(getClass().getResource("6773084.policy").getFile());
  74     }
  75 
  76     @Test
  77     public void test() throws Exception {
  78         SchemaFactory factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
  79         Source schemaFile = new StreamSource(XSD_PATH);
  80         try {
  81             schema = factory.newSchema(schemaFile);
  82         } catch (SAXException e) {
  83             e.printStackTrace();
  84             System.exit(-1);
  85         }
  86 
  87         File incoming = new File(IN_FOLDER);
  88         File[] files = incoming.listFiles(new FileFilter() {
  89             public boolean accept(File file) {
  90                 return file.isFile() && file.getName().endsWith(".xml");
  91             }
  92         });
  93 
  94         for (int i = 0; i < files.length; i++) {
  95             EXEC.execute(new XMLValiddator(files[i], i));
  96         }
  97         EXEC.shutdown();
  98 
  99     }
 100 
 101     private static class XMLValiddator implements Runnable {
 102 
 103         private File file;
 104         private int index;
 105 
 106         public XMLValiddator(File file, int index) {
 107             this.file = file;
 108             this.index = index;
 109         }
 110 
 111         public void run() {
 112 
 113             try {
 114                 System.out.printf("Waiting for barrier: %s%n", index);
 115                 BARRIER.await();
 116                 System.out.println("Validating....");
 117 
 118                 DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
 119                 factory.setNamespaceAware(true);
 120 
 121                 DocumentBuilder builder = factory.newDocumentBuilder();
 122                 Document document = builder.parse(file);
 123 
 124                 Validator validator = schema.newValidator();
 125                 validator.setErrorHandler(new ErrorHandlerImpl());
 126                 validator.validate(new DOMSource(document));
 127 
 128             } catch (IOException e) {
 129                 e.printStackTrace();
 130             } catch (SAXException e) {
 131                 e.printStackTrace();
 132                 Assert.fail("Test failed.");
 133             } catch (ParserConfigurationException e) {
 134                 e.printStackTrace();
 135             } catch (BrokenBarrierException e) {
 136                 e.printStackTrace();
 137             } catch (InterruptedException e) {
 138                 e.printStackTrace();
 139             }
 140 
 141         }
 142     }
 143 
 144     private static class ErrorHandlerImpl implements ErrorHandler {
 145 
 146         public void warning(SAXParseException exception) throws SAXException {
 147             System.out
 148                     .printf("**Parsing Warning. Line: %s  URI: %s  Message: %s%n", exception.getLineNumber(), exception.getSystemId(), exception.getMessage());
 149         }
 150 
 151         public void error(SAXParseException exception) throws SAXException {
 152             String msg = String.format("**Parsing Error. Line: %s  URI: %s  Message: %s%n", exception.getLineNumber(), exception.getSystemId(),
 153                     exception.getMessage());
 154             System.out.println(msg);
 155             throw new SAXException(msg);
 156         }
 157 
 158         public void fatalError(SAXParseException exception) throws SAXException {
 159             String msg = String.format("**Parsing Fatal Error. Line: %s  URI: %s  Message: %s%n", exception.getLineNumber(), exception.getSystemId(),
 160                     exception.getMessage());
 161             System.out.println(msg);
 162             throw new SAXException(msg);
 163         }
 164     }
 165 
 166 }