< prev index next >

test/javax/xml/jaxp/unittest/stream/XMLOutputFactoryTest/DuplicateNSDeclarationTest.java

Print this page




  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.XMLOutputFactoryTest;
  25 
  26 import java.io.ByteArrayOutputStream;
  27 
  28 import javax.xml.stream.XMLOutputFactory;
  29 import javax.xml.stream.XMLStreamException;
  30 import javax.xml.stream.XMLStreamWriter;
  31 import javax.xml.transform.stream.StreamResult;
  32 
  33 import org.testng.Assert;

  34 import org.testng.annotations.Test;
  35 
  36 /*
  37  * @summary Test the writing of duplicate namespace declarations when IS_REPAIRING_NAMESPACES is ture.
  38  */

  39 public class DuplicateNSDeclarationTest {
  40 
  41     @Test
  42     public void testDuplicateNSDeclaration() {
  43 
  44         // expect only 1 Namespace Declaration
  45         final String EXPECTED_OUTPUT = "<?xml version=\"1.0\" ?>" + "<ns1:foo" + " xmlns:ns1=\"http://example.com/\">" + "</ns1:foo>";
  46 
  47         // have XMLOutputFactory repair Namespaces
  48         XMLOutputFactory ofac = XMLOutputFactory.newInstance();
  49         ofac.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, new Boolean(true));
  50 
  51         // send output to a Stream
  52         ByteArrayOutputStream buffer = new ByteArrayOutputStream();
  53         StreamResult sr = new StreamResult(buffer);
  54         XMLStreamWriter w = null;
  55 
  56         // write a duplicate Namespace Declaration
  57         try {
  58             w = ofac.createXMLStreamWriter(sr);




  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.XMLOutputFactoryTest;
  25 
  26 import java.io.ByteArrayOutputStream;
  27 
  28 import javax.xml.stream.XMLOutputFactory;
  29 import javax.xml.stream.XMLStreamException;
  30 import javax.xml.stream.XMLStreamWriter;
  31 import javax.xml.transform.stream.StreamResult;
  32 
  33 import org.testng.Assert;
  34 import org.testng.annotations.Listeners;
  35 import org.testng.annotations.Test;
  36 
  37 /*
  38  * @summary Test the writing of duplicate namespace declarations when IS_REPAIRING_NAMESPACES is ture.
  39  */
  40 @Listeners({jaxp.library.BasePolicy.class})
  41 public class DuplicateNSDeclarationTest {
  42 
  43     @Test
  44     public void testDuplicateNSDeclaration() {
  45 
  46         // expect only 1 Namespace Declaration
  47         final String EXPECTED_OUTPUT = "<?xml version=\"1.0\" ?>" + "<ns1:foo" + " xmlns:ns1=\"http://example.com/\">" + "</ns1:foo>";
  48 
  49         // have XMLOutputFactory repair Namespaces
  50         XMLOutputFactory ofac = XMLOutputFactory.newInstance();
  51         ofac.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, new Boolean(true));
  52 
  53         // send output to a Stream
  54         ByteArrayOutputStream buffer = new ByteArrayOutputStream();
  55         StreamResult sr = new StreamResult(buffer);
  56         XMLStreamWriter w = null;
  57 
  58         // write a duplicate Namespace Declaration
  59         try {
  60             w = ofac.createXMLStreamWriter(sr);


< prev index next >