< prev index next >

test/javax/xml/jaxp/functional/org/xml/sax/ptests/DefaultHandlerTest.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 24,97 **** import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; - import java.nio.file.Files; - import java.nio.file.Path; - import java.nio.file.Paths; - import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; import static jaxp.library.JAXPTestUtilities.compareWithGold; - import static jaxp.library.JAXPTestUtilities.failCleanup; - import static jaxp.library.JAXPTestUtilities.failUnexpected; import static org.testng.Assert.assertTrue; import org.testng.annotations.Test; import org.xml.sax.Attributes; import org.xml.sax.Locator; import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; import org.xml.sax.helpers.DefaultHandler; - import static org.xml.sax.ptests.SAXTestConst.CLASS_DIR; import static org.xml.sax.ptests.SAXTestConst.GOLDEN_DIR; import static org.xml.sax.ptests.SAXTestConst.XML_DIR; /** * XMLReader parse XML with default handler that transverses XML and * print all visited node. Test verifies output is same as the golden file. */ ! public class DefaultHandlerTest { /** * Test default handler that transverses XML and print all visited node. */ @Test ! public void testDefaultHandler() { ! String outputFile = CLASS_DIR + "DefaultHandler.out"; String goldFile = GOLDEN_DIR + "DefaultHandlerGF.out"; String xmlFile = XML_DIR + "namespace1.xml"; - try { SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); SAXParser saxparser = spf.newSAXParser(); MyDefaultHandler handler = new MyDefaultHandler(outputFile); File file = new File(xmlFile); String Absolutepath = file.getAbsolutePath(); String newAbsolutePath = Absolutepath; if (File.separatorChar == '\\') newAbsolutePath = Absolutepath.replace('\\', '/'); ! String uri = "file:///" + newAbsolutePath; ! saxparser.parse(uri, handler); ! } catch (IOException | ParserConfigurationException | SAXException ex) { ! failUnexpected(ex); ! } ! // Need close the output file before we compare it with golden file. ! try { assertTrue(compareWithGold(goldFile, outputFile)); ! } catch (IOException ex) { ! failUnexpected(ex); ! } finally { ! try { ! Path outputPath = Paths.get(outputFile); ! if(Files.exists(outputPath)) ! Files.delete(outputPath); ! } catch (IOException ex) { ! failCleanup(ex, outputFile); ! } ! } } } class MyDefaultHandler extends DefaultHandler { /** --- 24,78 ---- import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import javax.xml.parsers.SAXParser; import javax.xml.parsers.SAXParserFactory; + import jaxp.library.JAXPFileBaseTest; + import static jaxp.library.JAXPTestUtilities.USER_DIR; import static jaxp.library.JAXPTestUtilities.compareWithGold; import static org.testng.Assert.assertTrue; import org.testng.annotations.Test; import org.xml.sax.Attributes; import org.xml.sax.Locator; import org.xml.sax.SAXException; import org.xml.sax.SAXParseException; import org.xml.sax.helpers.DefaultHandler; import static org.xml.sax.ptests.SAXTestConst.GOLDEN_DIR; import static org.xml.sax.ptests.SAXTestConst.XML_DIR; /** * XMLReader parse XML with default handler that transverses XML and * print all visited node. Test verifies output is same as the golden file. */ ! public class DefaultHandlerTest extends JAXPFileBaseTest { /** * Test default handler that transverses XML and print all visited node. + * + * @throws Exception If any errors occur. */ @Test ! public void testDefaultHandler() throws Exception { ! String outputFile = USER_DIR + "DefaultHandler.out"; String goldFile = GOLDEN_DIR + "DefaultHandlerGF.out"; String xmlFile = XML_DIR + "namespace1.xml"; SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); SAXParser saxparser = spf.newSAXParser(); MyDefaultHandler handler = new MyDefaultHandler(outputFile); File file = new File(xmlFile); String Absolutepath = file.getAbsolutePath(); String newAbsolutePath = Absolutepath; if (File.separatorChar == '\\') newAbsolutePath = Absolutepath.replace('\\', '/'); ! saxparser.parse("file:///" + newAbsolutePath, handler); ! assertTrue(compareWithGold(goldFile, outputFile)); ! } } class MyDefaultHandler extends DefaultHandler { /**
< prev index next >