1 /*
   2  * Copyright (c) 2003, 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 package org.xml.sax.ptests;
  24 
  25 import static jaxp.library.JAXPTestUtilities.USER_DIR;
  26 import static jaxp.library.JAXPTestUtilities.compareWithGold;
  27 import static org.testng.Assert.assertTrue;
  28 import static org.xml.sax.ptests.SAXTestConst.GOLDEN_DIR;
  29 import static org.xml.sax.ptests.SAXTestConst.XML_DIR;
  30 
  31 import java.io.File;
  32 
  33 import javax.xml.parsers.SAXParserFactory;
  34 
  35 import org.testng.annotations.Listeners;
  36 import org.testng.annotations.Test;
  37 
  38 /**
  39  * This class contains the testcases to test SAXParser with regard to
  40  * Namespace Table defined at http://www.megginson.com/SAX/Java/namespaces.html
  41  */
  42 @Listeners({jaxp.library.FilePolicy.class})
  43 public class SAXParserNSTableTest {
  44     /**
  45      * namespace processing is enabled. namespace-prefix is also is enabled.
  46      * So it is a True-True combination.
  47      * The test is to test SAXParser with these conditions.
  48      *
  49      * @throws Exception If any errors occur.
  50      */
  51     @Test
  52     public void testWithTrueTrue() throws Exception {
  53         String outputFile = USER_DIR + "SPNSTableTT.out";
  54         String goldFile = GOLDEN_DIR + "NSTableTTGF.out";
  55         String xmlFile = XML_DIR + "namespace1.xml";
  56         SAXParserFactory spf = SAXParserFactory.newInstance();
  57         spf.setNamespaceAware(true);
  58         spf.setFeature("http://xml.org/sax/features/namespace-prefixes",
  59                                     true);
  60         try (MyNSContentHandler handler = new MyNSContentHandler(outputFile)) {
  61             spf.newSAXParser().parse(new File(xmlFile), handler);
  62         }
  63         assertTrue(compareWithGold(goldFile, outputFile));
  64 
  65     }
  66     /**
  67      * namespace processing is enabled. Hence namespace-prefix is
  68      * expected to be automatically off. So it is a True-False combination.
  69      * The test is to test SAXParser with these conditions.
  70      *
  71      * @throws Exception If any errors occur.
  72      */
  73     public void testWithTrueFalse() throws Exception {
  74         String outputFile = USER_DIR + "SPNSTableTF.out";
  75         String goldFile = GOLDEN_DIR + "NSTableTFGF.out";
  76         String xmlFile = XML_DIR + "namespace1.xml";
  77         SAXParserFactory spf = SAXParserFactory.newInstance();
  78         spf.setNamespaceAware(true);
  79         try (MyNSContentHandler handler = new MyNSContentHandler(outputFile)) {
  80             spf.newSAXParser().parse(new File(xmlFile), handler);
  81         }
  82         assertTrue(compareWithGold(goldFile, outputFile));
  83     }
  84 
  85     /**
  86      * namespace processing is not enabled. Hence namespace-prefix is
  87      * expected to be automatically on. So it is a False-True combination.
  88      * The test is to test SAXParser with these conditions.
  89      *
  90      * @throws Exception If any errors occur.
  91      */
  92     public void testWithFalseTrue() throws Exception {
  93         String outputFile = USER_DIR + "SPNSTableFT.out";
  94         String goldFile = GOLDEN_DIR + "NSTableFTGF.out";
  95         String xmlFile = XML_DIR + "namespace1.xml";
  96         SAXParserFactory spf = SAXParserFactory.newInstance();
  97         spf.setNamespaceAware(true);
  98         try (MyNSContentHandler handler = new MyNSContentHandler(outputFile)) {
  99             spf.newSAXParser().parse(new File(xmlFile), handler);
 100         }
 101         assertTrue(compareWithGold(goldFile, outputFile));
 102     }
 103 }