1 /*
   2  * Copyright (c) 2014, 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 
  24 package javax.xml.parsers.ptests;
  25 
  26 import static jaxp.library.JAXPTestUtilities.FILE_SEP;
  27 import static jaxp.library.JAXPTestUtilities.failUnexpected;
  28 import static org.testng.Assert.assertFalse;
  29 
  30 import java.io.File;
  31 import java.io.FileInputStream;
  32 import java.io.IOException;
  33 
  34 import javax.xml.parsers.DocumentBuilder;
  35 import javax.xml.parsers.DocumentBuilderFactory;
  36 import javax.xml.parsers.ParserConfigurationException;
  37 
  38 import org.testng.annotations.DataProvider;
  39 import org.testng.annotations.Test;
  40 import org.w3c.dom.Document;
  41 import org.xml.sax.EntityResolver;
  42 import org.xml.sax.InputSource;
  43 import org.xml.sax.SAXException;
  44 
  45 /**
  46  * This checks for the methods of DocumentBuilder
  47  */
  48 public class DocumentBuilderImpl01 implements EntityResolver {
  49 
  50     /**
  51      * Provide DocumentBuilder.
  52      *
  53      * @throws ParserConfigurationException
  54      */
  55     @DataProvider(name = "builder-provider")
  56     public Object[][] getBuilder() throws ParserConfigurationException {
  57         DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
  58         DocumentBuilder docBuilder = dbf.newDocumentBuilder();
  59         return new Object[][] { { docBuilder } };
  60     }
  61 
  62     /**
  63      * Testcase to test the default functionality of isValidation method. Expect
  64      * to return false because not setting the validation.
  65      */
  66     @Test(dataProvider = "builder-provider")
  67     public void testCheckDocumentBuilderImpl01(DocumentBuilder docBuilder) {
  68         assertFalse(docBuilder.isValidating());
  69 
  70     }
  71 
  72     /**
  73      * Testcase to test the default functionality of isNamespaceAware method.
  74      */
  75     @Test(dataProvider = "builder-provider")
  76     public void testCheckDocumentBuilderImpl02(DocumentBuilder docBuilder) {
  77         assertFalse(docBuilder.isNamespaceAware());
  78     }
  79 
  80     /**
  81      * Testcase to test the parse(InputStream).
  82      */
  83     @Test(dataProvider = "builder-provider")
  84     public void testCheckDocumentBuilderImpl04(DocumentBuilder docBuilder) {
  85         try {
  86             Document doc = docBuilder.parse(new FileInputStream(new File(TestUtils.XML_DIR, "DocumentBuilderImpl01.xml")));
  87         } catch (SAXException | IOException e) {
  88             failUnexpected(e);
  89         }
  90     }
  91 
  92     /**
  93      * Testcase to test the parse(File).
  94      */
  95     @Test(dataProvider = "builder-provider")
  96     public void testCheckDocumentBuilderImpl05(DocumentBuilder docBuilder) {
  97         try {
  98             Document doc = docBuilder.parse(new File(TestUtils.XML_DIR, "DocumentBuilderImpl01.xml"));
  99         } catch (SAXException | IOException e) {
 100             failUnexpected(e);
 101         }
 102     }
 103 
 104     /**
 105      * Testcase to test the parse(InputStream,systemId).
 106      */
 107     @Test(dataProvider = "builder-provider")
 108     public void testCheckDocumentBuilderImpl06(DocumentBuilder docBuilder) {
 109         try {
 110             Document doc = docBuilder.parse(new FileInputStream(new File(TestUtils.XML_DIR, "DocumentBuilderImpl02.xml")), new File(TestUtils.XML_DIR).toURI()
 111                     .toASCIIString() + FILE_SEP);
 112         } catch (SAXException | IOException e) {
 113             failUnexpected(e);
 114         }
 115     }
 116 
 117     /**
 118      * Testcase to test the setEntityResolver.
 119      */
 120     @Test(dataProvider = "builder-provider")
 121     public void testCheckDocumentBuilderImpl07(DocumentBuilder docBuilder) {
 122         docBuilder.setEntityResolver(this);
 123         resolveEntity("publicId", "http://www.myhost.com/today");
 124     }
 125 
 126     public InputSource resolveEntity(String publicId, String systemId) {
 127         if (systemId.equals("http://www.myhost.com/today"))
 128             return new InputSource(systemId);
 129         else
 130             return null;
 131     }
 132 }