< prev index next >

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

Print this page

        

*** 22,40 **** */ package org.xml.sax.ptests; import java.io.File; 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.SAXException; import static org.xml.sax.ptests.SAXTestConst.CLASS_DIR; import static org.xml.sax.ptests.SAXTestConst.GOLDEN_DIR; --- 22,35 ---- */ package org.xml.sax.ptests; import java.io.File; import java.io.IOException; import javax.xml.parsers.ParserConfigurationException; import javax.xml.parsers.SAXParserFactory; + import jaxp.library.JAXPFileBaseTest; import static jaxp.library.JAXPTestUtilities.compareWithGold; import static org.testng.Assert.assertTrue; import org.testng.annotations.Test; import org.xml.sax.SAXException; import static org.xml.sax.ptests.SAXTestConst.CLASS_DIR; import static org.xml.sax.ptests.SAXTestConst.GOLDEN_DIR;
*** 42,134 **** /** * This class contains the testcases to test SAXParser with regard to * Namespace Table defined at http://www.megginson.com/SAX/Java/namespaces.html */ ! public class SAXParserNSTableTest { /** * namespace processing is enabled. namespace-prefix is also is enabled. * So it is a True-True combination. ! * The test is to test SAXParser with these conditions */ @Test ! public void testWithTrueTrue() { String outputFile = CLASS_DIR + "SPNSTableTT.out"; String goldFile = GOLDEN_DIR + "NSTableTTGF.out"; String xmlFile = XML_DIR + "namespace1.xml"; - try { SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); spf.setFeature("http://xml.org/sax/features/namespace-prefixes", true); ! ! SAXParser saxParser = spf.newSAXParser(); ! saxParser.parse(new File(xmlFile), new MyNSContentHandler(outputFile)); ! assertTrue(compareWithGold(goldFile, outputFile)); ! } catch (ParserConfigurationException | SAXException | IOException ex) { ! failUnexpected(ex); ! } finally { ! try { ! Path outputPath = Paths.get(outputFile); ! if(Files.exists(outputPath)) ! Files.delete(outputPath); ! } catch (IOException ex) { ! failCleanup(ex, outputFile); ! } } } /** * namespace processing is enabled. Hence namespace-prefix is ! * expected to be automaically off. So it is a True-False combination. ! * The test is to test SAXParser with these conditions */ ! public void testWithTrueFalse() { String outputFile = CLASS_DIR + "SPNSTableTF.out"; String goldFile = GOLDEN_DIR + "NSTableTFGF.out"; String xmlFile = XML_DIR + "namespace1.xml"; - try { SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); ! SAXParser saxParser = spf.newSAXParser(); ! saxParser.parse(new File(xmlFile), new MyNSContentHandler(outputFile)); ! assertTrue(compareWithGold(goldFile, outputFile)); ! } catch (ParserConfigurationException | SAXException | IOException ex) { ! failUnexpected(ex); ! } finally { ! try { ! Path outputPath = Paths.get(outputFile); ! if(Files.exists(outputPath)) ! Files.delete(outputPath); ! } catch (IOException ex) { ! failCleanup(ex, outputFile); ! } } } /** * namespace processing is not enabled. Hence namespace-prefix is ! * expected to be automaically on. So it is a False-True combination. ! * The test is to test SAXParser with these conditions */ ! public void testWithFalseTrue() { String outputFile = CLASS_DIR + "SPNSTableFT.out"; String goldFile = GOLDEN_DIR + "NSTableFTGF.out"; String xmlFile = XML_DIR + "namespace1.xml"; - try { SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); ! SAXParser saxParser = spf.newSAXParser(); ! saxParser.parse(new File(xmlFile), new MyNSContentHandler(outputFile)); ! assertTrue(compareWithGold(goldFile, outputFile)); ! } catch (ParserConfigurationException | SAXException | IOException ex) { ! failUnexpected(ex); ! } finally { ! try { ! Path outputPath = Paths.get(outputFile); ! if(Files.exists(outputPath)) ! Files.delete(outputPath); ! } catch (IOException ex) { ! failCleanup(ex, outputFile); ! } } } } --- 37,120 ---- /** * This class contains the testcases to test SAXParser with regard to * Namespace Table defined at http://www.megginson.com/SAX/Java/namespaces.html */ ! public class SAXParserNSTableTest extends JAXPFileBaseTest { /** * namespace processing is enabled. namespace-prefix is also is enabled. * So it is a True-True combination. ! * The test is to test SAXParser with these conditions. ! * ! * @throws SAXException If there is a problem processing the document. ! * @throws IOException if the file exists but is a directory rather than ! * a regular file, does not exist but cannot be created, or cannot ! * be opened for any other reason. ! * @throws ParserConfigurationException if a DocumentBuilder cannot be ! * created which satisfies the configuration requested. */ @Test ! public void testWithTrueTrue() throws ParserConfigurationException, ! SAXException, IOException { String outputFile = CLASS_DIR + "SPNSTableTT.out"; String goldFile = GOLDEN_DIR + "NSTableTTGF.out"; String xmlFile = XML_DIR + "namespace1.xml"; SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); spf.setFeature("http://xml.org/sax/features/namespace-prefixes", true); ! try (MyNSContentHandler handler = new MyNSContentHandler(outputFile)) { ! spf.newSAXParser().parse(new File(xmlFile), handler); } + assertTrue(compareWithGold(goldFile, outputFile)); + } /** * namespace processing is enabled. Hence namespace-prefix is ! * expected to be automatically off. So it is a True-False combination. ! * The test is to test SAXParser with these conditions. ! * ! * @throws SAXException If there is a problem processing the document. ! * @throws IOException if the file exists but is a directory rather than ! * a regular file, does not exist but cannot be created, or cannot ! * be opened for any other reason. ! * @throws ParserConfigurationException if a DocumentBuilder cannot be ! * created which satisfies the configuration requested. */ ! public void testWithTrueFalse() throws ParserConfigurationException, ! SAXException, IOException { String outputFile = CLASS_DIR + "SPNSTableTF.out"; String goldFile = GOLDEN_DIR + "NSTableTFGF.out"; String xmlFile = XML_DIR + "namespace1.xml"; SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); ! try (MyNSContentHandler handler = new MyNSContentHandler(outputFile)) { ! spf.newSAXParser().parse(new File(xmlFile), handler); } + assertTrue(compareWithGold(goldFile, outputFile)); } /** * namespace processing is not enabled. Hence namespace-prefix is ! * expected to be automatically on. So it is a False-True combination. ! * The test is to test SAXParser with these conditions. ! * ! * @throws SAXException If there is a problem processing the document. ! * @throws IOException if the file exists but is a directory rather than ! * a regular file, does not exist but cannot be created, or cannot ! * be opened for any other reason. ! * @throws ParserConfigurationException if a DocumentBuilder cannot be ! * created which satisfies the configuration requested. */ ! public void testWithFalseTrue() throws ParserConfigurationException, ! SAXException, IOException { String outputFile = CLASS_DIR + "SPNSTableFT.out"; String goldFile = GOLDEN_DIR + "NSTableFTGF.out"; String xmlFile = XML_DIR + "namespace1.xml"; SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); ! try (MyNSContentHandler handler = new MyNSContentHandler(outputFile)) { ! spf.newSAXParser().parse(new File(xmlFile), handler); } + assertTrue(compareWithGold(goldFile, outputFile)); } }
< prev index next >