< prev index next >

test/javax/xml/jaxp/unittest/stream/XMLInputFactoryTest/Bug6909759Test.java

Print this page




  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.XMLInputFactoryTest;
  25 
  26 import javax.xml.stream.XMLInputFactory;
  27 import javax.xml.stream.XMLStreamException;
  28 import javax.xml.stream.XMLStreamReader;
  29 import javax.xml.transform.stream.StreamSource;
  30 
  31 import org.testng.Assert;

  32 import org.testng.annotations.Test;
  33 
  34 /*
  35  * @bug 6909759
  36  * @summary Test createXMLStreamReader with StreamSource.
  37  */

  38 public class Bug6909759Test {
  39 
  40 
  41     @Test
  42     public void testCreateXMLStreamReader() {
  43 
  44         try {
  45             StreamSource ss = new StreamSource(getClass().getResourceAsStream("play.xml"));
  46             XMLInputFactory xif = XMLInputFactory.newInstance();
  47             // File file = new File("./tests/XMLStreamReader/sgml.xml");
  48             // FileInputStream inputStream = new FileInputStream(file);
  49             XMLStreamReader xsr;
  50             xsr = xif.createXMLStreamReader(ss);
  51 
  52             while (xsr.hasNext()) {
  53                 int eventType = xsr.next();
  54             }
  55 
  56         } catch (UnsupportedOperationException oe) {
  57             Assert.fail("StreamSource should be supported");


  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.XMLInputFactoryTest;
  25 
  26 import javax.xml.stream.XMLInputFactory;
  27 import javax.xml.stream.XMLStreamException;
  28 import javax.xml.stream.XMLStreamReader;
  29 import javax.xml.transform.stream.StreamSource;
  30 
  31 import org.testng.Assert;
  32 import org.testng.annotations.Listeners;
  33 import org.testng.annotations.Test;
  34 
  35 /*
  36  * @bug 6909759
  37  * @summary Test createXMLStreamReader with StreamSource.
  38  */
  39 @Listeners({jaxp.library.FilePolicy.class})
  40 public class Bug6909759Test {
  41 
  42 
  43     @Test
  44     public void testCreateXMLStreamReader() {
  45 
  46         try {
  47             StreamSource ss = new StreamSource(getClass().getResourceAsStream("play.xml"));
  48             XMLInputFactory xif = XMLInputFactory.newInstance();
  49             // File file = new File("./tests/XMLStreamReader/sgml.xml");
  50             // FileInputStream inputStream = new FileInputStream(file);
  51             XMLStreamReader xsr;
  52             xsr = xif.createXMLStreamReader(ss);
  53 
  54             while (xsr.hasNext()) {
  55                 int eventType = xsr.next();
  56             }
  57 
  58         } catch (UnsupportedOperationException oe) {
  59             Assert.fail("StreamSource should be supported");
< prev index next >