1 /*
   2  * Copyright (c) 2014, 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.XMLEventReaderTest;
  25 
  26 import java.io.File;
  27 
  28 import javax.xml.stream.XMLEventReader;
  29 import javax.xml.stream.XMLInputFactory;
  30 import javax.xml.stream.XMLOutputFactory;
  31 
  32 import org.testng.Assert;
  33 import org.testng.annotations.Listeners;
  34 import org.testng.annotations.Test;
  35 
  36 /*
  37  * @bug 6668115
  38  * @summary Test XMLEventReader.getElementText() shall update last event even if no peek.
  39  */
  40 @Listeners({jaxp.library.FilePolicy.class})
  41 public class Bug6668115Test {
  42 
  43     public java.io.File input;
  44     public final String filesDir = "./";
  45     protected XMLInputFactory inputFactory;
  46     protected XMLOutputFactory outputFactory;
  47 
  48     /**
  49      * The reason the following call sequence is a problem is that with a
  50      * peekevent, getElementText calls nextEvent which does properly update the
  51      * lastEvent
  52      */
  53     @Test
  54     public void testNextTag() {
  55         try {
  56             XMLEventReader er = getReader();
  57             er.nextTag();
  58             er.nextTag();
  59 
  60             System.out.println(er.getElementText());
  61             er.nextTag();
  62             System.out.println(er.getElementText());
  63 
  64         } catch (Exception e) {
  65             System.out.println(e.getMessage());
  66             e.printStackTrace();
  67             Assert.fail(e.getMessage());
  68         }
  69     }
  70 
  71     @Test
  72     public void testNextTagWPeek() {
  73         try {
  74             XMLEventReader er = getReader();
  75             er.nextTag();
  76             er.nextTag();
  77 
  78             er.peek();
  79             System.out.println(er.getElementText());
  80             er.nextTag();
  81             System.out.println(er.getElementText());
  82 
  83         } catch (Exception e) {
  84             System.out.println(e.getMessage());
  85             e.printStackTrace();
  86             Assert.fail(e.getMessage());
  87         }
  88     }
  89 
  90     private XMLEventReader getReader() throws Exception {
  91         inputFactory = XMLInputFactory.newInstance();
  92         input = new File(getClass().getResource("play2.xml").getFile());
  93         // Check if event reader returns the correct event
  94         XMLEventReader er = inputFactory.createXMLEventReader(inputFactory.createXMLStreamReader(new java.io.FileInputStream(input), "UTF-8"));
  95         return er;
  96     }
  97 
  98 }