< prev index next >

test/javax/xml/jaxp/unittest/stream/Bug6489502.java

Print this page




  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.XMLEventReader;
  27 import javax.xml.stream.XMLInputFactory;
  28 import javax.xml.stream.XMLOutputFactory;
  29 import javax.xml.stream.XMLStreamConstants;
  30 import javax.xml.stream.XMLStreamReader;
  31 
  32 import org.testng.Assert;

  33 import org.testng.annotations.Test;
  34 
  35 /*
  36  * @bug 6489502
  37  * @summary Test XMLInputFactory works correctly in case it repeats to create reader.
  38  */

  39 public class Bug6489502 {
  40 
  41     public java.io.File input;
  42     public final String filesDir = "./";
  43     protected XMLInputFactory inputFactory = XMLInputFactory.newInstance();
  44     protected XMLOutputFactory outputFactory = XMLOutputFactory.newInstance();
  45 
  46     private static String xml = "<?xml version=\"1.0\"?><PLAY><TITLE>The Tragedy of Hamlet, Prince of Denmark</TITLE></PLAY>";
  47 
  48     @Test
  49     public void testEventReader1() {
  50         try {
  51             // Check if event reader returns the correct event
  52             XMLEventReader e1 = inputFactory.createXMLEventReader(inputFactory.createXMLStreamReader(new java.io.StringReader(xml)));
  53             Assert.assertEquals(e1.peek().getEventType(), XMLStreamConstants.START_DOCUMENT);
  54 
  55             // Repeat same steps to test factory state
  56             XMLEventReader e2 = inputFactory.createXMLEventReader(inputFactory.createXMLStreamReader(new java.io.StringReader(xml)));
  57             Assert.assertEquals(e2.peek().getEventType(), XMLStreamConstants.START_DOCUMENT);
  58         } catch (Exception e) {




  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.XMLEventReader;
  27 import javax.xml.stream.XMLInputFactory;
  28 import javax.xml.stream.XMLOutputFactory;
  29 import javax.xml.stream.XMLStreamConstants;
  30 import javax.xml.stream.XMLStreamReader;
  31 
  32 import org.testng.Assert;
  33 import org.testng.annotations.Listeners;
  34 import org.testng.annotations.Test;
  35 
  36 /*
  37  * @bug 6489502
  38  * @summary Test XMLInputFactory works correctly in case it repeats to create reader.
  39  */
  40 @Listeners({jaxp.library.BasePolicy.class})
  41 public class Bug6489502 {
  42 
  43     public java.io.File input;
  44     public final String filesDir = "./";
  45     protected XMLInputFactory inputFactory = XMLInputFactory.newInstance();
  46     protected XMLOutputFactory outputFactory = XMLOutputFactory.newInstance();
  47 
  48     private static String xml = "<?xml version=\"1.0\"?><PLAY><TITLE>The Tragedy of Hamlet, Prince of Denmark</TITLE></PLAY>";
  49 
  50     @Test
  51     public void testEventReader1() {
  52         try {
  53             // Check if event reader returns the correct event
  54             XMLEventReader e1 = inputFactory.createXMLEventReader(inputFactory.createXMLStreamReader(new java.io.StringReader(xml)));
  55             Assert.assertEquals(e1.peek().getEventType(), XMLStreamConstants.START_DOCUMENT);
  56 
  57             // Repeat same steps to test factory state
  58             XMLEventReader e2 = inputFactory.createXMLEventReader(inputFactory.createXMLStreamReader(new java.io.StringReader(xml)));
  59             Assert.assertEquals(e2.peek().getEventType(), XMLStreamConstants.START_DOCUMENT);
  60         } catch (Exception e) {


< prev index next >