< prev index next >

test/javax/xml/jaxp/unittest/javax/xml/validation/Bug4969089.java

Print this page
rev 670 : [mq]: 8061549


  35 import org.xml.sax.SAXParseException;
  36 import org.xml.sax.helpers.DefaultHandler;
  37 
  38 /*
  39  * @bug 4969089
  40  * @summary Test when an ErrorHandler is set for a SchemaFactory, SchemaFactory.newSchema(Source[])
  41  * method throws an exception that is not equal to the exception thrown from the ErrorHandler.
  42  */
  43 public class Bug4969089 {
  44 
  45     @Test
  46     public void test1() {
  47         String xsd1 = "<?xml version='1.0'?>\n" + "<schema xmlns='http://www.w3.org/2001/XMLSchema'\n" + "        xmlns:test='jaxp13_test1'\n"
  48                 + "        targetNamespace='jaxp13_test1'\n" + "        elementFormDefault='qualified'>\n" + "    <element name='test'>\n" + "</schema>\n";
  49 
  50         final SAXException EUREKA = new SAXException("NewSchema007");
  51         SchemaFactory schemaFactory = SchemaFactory.newInstance("http://www.w3.org/2001/XMLSchema");
  52         StringReader reader = new StringReader(xsd1);
  53         StreamSource source = new StreamSource(reader);
  54         DefaultHandler errorHandler = new DefaultHandler() {
  55             public void fatalError(SAXParseException _) throws SAXException {
  56                 throw EUREKA;
  57             }
  58 
  59             public void error(SAXParseException _) throws SAXException {
  60                 throw EUREKA;
  61             }
  62         };
  63         schemaFactory.setErrorHandler(errorHandler);
  64 
  65         try {
  66             schemaFactory.newSchema(new Source[] { source });
  67             Assert.fail("SAXException was not thrown.");
  68         } catch (SAXException e) {
  69             Assert.assertSame(e, EUREKA);
  70         }
  71     }
  72 }


  35 import org.xml.sax.SAXParseException;
  36 import org.xml.sax.helpers.DefaultHandler;
  37 
  38 /*
  39  * @bug 4969089
  40  * @summary Test when an ErrorHandler is set for a SchemaFactory, SchemaFactory.newSchema(Source[])
  41  * method throws an exception that is not equal to the exception thrown from the ErrorHandler.
  42  */
  43 public class Bug4969089 {
  44 
  45     @Test
  46     public void test1() {
  47         String xsd1 = "<?xml version='1.0'?>\n" + "<schema xmlns='http://www.w3.org/2001/XMLSchema'\n" + "        xmlns:test='jaxp13_test1'\n"
  48                 + "        targetNamespace='jaxp13_test1'\n" + "        elementFormDefault='qualified'>\n" + "    <element name='test'>\n" + "</schema>\n";
  49 
  50         final SAXException EUREKA = new SAXException("NewSchema007");
  51         SchemaFactory schemaFactory = SchemaFactory.newInstance("http://www.w3.org/2001/XMLSchema");
  52         StringReader reader = new StringReader(xsd1);
  53         StreamSource source = new StreamSource(reader);
  54         DefaultHandler errorHandler = new DefaultHandler() {
  55             public void fatalError(SAXParseException unused) throws SAXException {
  56                 throw EUREKA;
  57             }
  58 
  59             public void error(SAXParseException unused) throws SAXException {
  60                 throw EUREKA;
  61             }
  62         };
  63         schemaFactory.setErrorHandler(errorHandler);
  64 
  65         try {
  66             schemaFactory.newSchema(new Source[] { source });
  67             Assert.fail("SAXException was not thrown.");
  68         } catch (SAXException e) {
  69             Assert.assertSame(e, EUREKA);
  70         }
  71     }
  72 }
< prev index next >