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
24package stream.ProcessingInstructionTest;
25
26import java.io.InputStream;
27
28import javax.xml.stream.XMLInputFactory;
29import javax.xml.stream.XMLStreamConstants;
30import javax.xml.stream.XMLStreamReader;
31
32import org.testng.Assert;
33import org.testng.annotations.Listeners;
34import org.testng.annotations.Test;
35
36/*
37 * @test
38 * @library /javax/xml/jaxp/libs /javax/xml/jaxp/unittest
39 * @run testng/othervm -DrunSecMngr=true stream.ProcessingInstructionTest.ProcessingInstructionTest
40 * @run testng/othervm stream.ProcessingInstructionTest.ProcessingInstructionTest
41 * @summary Test XMLStreamReader parses Processing Instruction.
42 */
43@Listeners({jaxp.library.BasePolicy.class})
44public class ProcessingInstructionTest {
45
46    @Test
47    public void testPITargetAndData() {
48        try {
49            XMLInputFactory xif = XMLInputFactory.newInstance();
50            String PITarget = "soffice";
51            String PIData = "WebservicesArchitecture";
52            String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" + "<?" + PITarget + " " + PIData + "?>" + "<foo></foo>";
53            // System.out.println("XML = " + xml) ;
54            InputStream is = new java.io.ByteArrayInputStream(xml.getBytes());
55            XMLStreamReader sr = xif.createXMLStreamReader(is);
56            while (sr.hasNext()) {
57                int eventType = sr.next();
58                if (eventType == XMLStreamConstants.PROCESSING_INSTRUCTION) {
59                    String target = sr.getPITarget();
60                    String data = sr.getPIData();
61                    Assert.assertTrue(target.equals(PITarget) && data.equals(PIData));
62                }
63            }
64        } catch (Exception ex) {
65            ex.printStackTrace();
66        }
67    }
68
69}
70