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 stream;
  25 
  26 import javax.xml.stream.XMLInputFactory;
  27 import javax.xml.stream.XMLStreamConstants;
  28 import javax.xml.stream.XMLStreamReader;
  29 
  30 import org.testng.Assert;
  31 import org.testng.annotations.Listeners;
  32 import org.testng.annotations.Test;
  33 
  34 /*
  35  * @bug 6509774
  36  * @summary Test Property javax.xml.stream.supportDTD, DTD events are now returned even if supportDTD=false.
  37  */
  38 @Listeners({jaxp.library.FilePolicy.class})
  39 public class Bug6509774 {
  40 
  41     @Test
  42     public void test0() {
  43 
  44         try {
  45 
  46             XMLInputFactory xif = XMLInputFactory.newInstance();
  47 
  48             xif.setProperty("javax.xml.stream.supportDTD", Boolean.TRUE);
  49 
  50             XMLStreamReader xsr = xif.createXMLStreamReader(
  51 
  52             getClass().getResource("sgml_Bug6509774.xml").toString(),
  53 
  54             getClass().getResourceAsStream("sgml_Bug6509774.xml"));
  55 
  56             Assert.assertTrue(xsr.getEventType() == XMLStreamConstants.START_DOCUMENT);
  57 
  58             int event = xsr.next();
  59 
  60             // Must be a DTD event since DTDs are supported
  61 
  62             Assert.assertTrue(event == XMLStreamConstants.DTD);
  63 
  64             while (xsr.hasNext()) {
  65 
  66                 event = xsr.next();
  67 
  68             }
  69 
  70             Assert.assertTrue(event == XMLStreamConstants.END_DOCUMENT);
  71 
  72             xsr.close();
  73 
  74         }
  75 
  76         catch (Exception e) {
  77 
  78             Assert.fail(e.getMessage());
  79 
  80         }
  81 
  82     }
  83 
  84     @Test
  85     public void test1() {
  86 
  87         try {
  88 
  89             XMLInputFactory xif = XMLInputFactory.newInstance();
  90 
  91             xif.setProperty("javax.xml.stream.supportDTD", Boolean.FALSE);
  92 
  93             XMLStreamReader xsr = xif.createXMLStreamReader(
  94 
  95             getClass().getResource("sgml_Bug6509774.xml").toString(),
  96 
  97             getClass().getResourceAsStream("sgml_Bug6509774.xml"));
  98 
  99             Assert.assertTrue(xsr.getEventType() == XMLStreamConstants.START_DOCUMENT);
 100 
 101             int event = xsr.next();
 102 
 103             // Should not be a DTD event since they are ignored
 104 
 105             Assert.assertTrue(event == XMLStreamConstants.DTD);
 106 
 107             while (xsr.hasNext()) {
 108 
 109                 event = xsr.next();
 110 
 111             }
 112 
 113             Assert.assertTrue(event == XMLStreamConstants.END_DOCUMENT);
 114 
 115             xsr.close();
 116 
 117         }
 118 
 119         catch (Exception e) {
 120 
 121             Assert.fail(e.getMessage());
 122 
 123         }
 124 
 125     }
 126 
 127     @Test
 128     public void test2() {
 129 
 130         try {
 131 
 132             XMLInputFactory xif = XMLInputFactory.newInstance();
 133 
 134             xif.setProperty("javax.xml.stream.supportDTD", Boolean.FALSE);
 135 
 136             XMLStreamReader xsr = xif.createXMLStreamReader(
 137 
 138             getClass().getResource("sgml-bad-systemId.xml").toString(),
 139 
 140             getClass().getResourceAsStream("sgml-bad-systemId.xml"));
 141 
 142             Assert.assertTrue(xsr.getEventType() == XMLStreamConstants.START_DOCUMENT);
 143 
 144             int event = xsr.next();
 145 
 146             // Should not be a DTD event since they are ignored
 147 
 148             Assert.assertTrue(event == XMLStreamConstants.DTD);
 149 
 150             while (xsr.hasNext()) {
 151 
 152                 event = xsr.next();
 153 
 154             }
 155 
 156             Assert.assertTrue(event == XMLStreamConstants.END_DOCUMENT);
 157 
 158             xsr.close();
 159 
 160         }
 161 
 162         catch (Exception e) {
 163 
 164             // Bogus systemId in XML document should not result in exception
 165 
 166             Assert.fail(e.getMessage());
 167 
 168         }
 169 
 170     }
 171 
 172 }