blob: 022e5a435fd43c75bea6ec47076cf254a1f2b555 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.jaxb.xmlmarshaller;
import java.io.InputStream;
import jakarta.xml.bind.JAXBContext;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
public class XMLDeclarationTestCases extends MarshallerFragmentTestCases{
public XMLDeclarationTestCases(String name) {
super(name);
}
@Override
public void setUp() throws Exception {
//set up XMLMarshaller
DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
builderFactory.setNamespaceAware(true);
builderFactory.setIgnoringElementContentWhitespace(true);
DocumentBuilder parser = builderFactory.newDocumentBuilder();
String contextPath = System.getProperty("jaxb.test.contextpath", JAXBSAXTestSuite.CONTEXT_PATH);
JAXBContext jaxbContext = JAXBContext.newInstance(contextPath, getClass().getClassLoader());
marshaller = jaxbContext.createMarshaller();
originalSetting = true;
marshaller.setProperty("org.glassfish.jaxb.xmlDeclaration", Boolean.FALSE);
//set up controlObject
controlObject = new Employee();
controlObject.setName(CONTROL_EMPLOYEE_NAME);
//set up control Document
InputStream inputStream = ClassLoader.getSystemResourceAsStream(XML_RESOURCE);
controlDocument = parser.parse(inputStream);
removeEmptyTextNodes(controlDocument);
removeCopyrightNode(controlDocument);
}
}