/******************************************************************************* * Copyright (c) 1998, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.oxm.mappings.anycollection.withoutgroupingelement; /** * @version $Header: AnyCollectionKeepUnknownAsElementTestCases.java 30-jul-2007.15:34:52 dmccann Exp $ * @author mmacivor * @since release specific (what release of product did this appear in) */ import java.util.Vector; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import junit.textui.TestRunner; import org.w3c.dom.Attr; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; import org.eclipse.persistence.testing.oxm.mappings.XMLMappingTestCases; public class AnyCollectionKeepUnknownAsElementNSTestCases extends XMLMappingTestCases { private static String XML_CHILD_ELEMENTS = "org/eclipse/persistence/testing/oxm/mappings/anycollection/withoutgroupingelement/child_elements_minus_child_ns.xml"; public AnyCollectionKeepUnknownAsElementNSTestCases(String name) throws Exception { super(name); setProject(new AnyCollectionWithoutGroupingElementKeepUnkownAsElementProject()); setControlDocument("org/eclipse/persistence/testing/oxm/mappings/anycollection/withoutgroupingelement/keep_as_element_ns.xml"); } public Object getControlObject() { Root root = new Root(); Vector any = new Vector(); Child child = new Child(); child.setContent("Child1"); any.add(child); root.setAny(any); DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); factory.setNamespaceAware(true); factory.setIgnoringElementContentWhitespace(true); try { DocumentBuilder builder = factory.newDocumentBuilder(); Document doc = builder.parse(getClass().getClassLoader().getResourceAsStream(XML_CHILD_ELEMENTS)); Element rootElem = doc.getDocumentElement(); NodeList children = rootElem.getChildNodes(); for (int i = 0; i < children.getLength(); i++) { if (children.item(i).getNodeType() == Element.ELEMENT_NODE) { any.add(children.item(i)); } } } catch (Exception ex) { } return root; } public static void main(String[] args) { String[] arguments = { "-c", "org.eclipse.persistence.testing.oxm.mappings.anycollection.withoutgroupingelement.AnyCollectionKeepUnknownAsElementNSTestCases" }; TestRunner.main(arguments); } public void xmlToObjectTest(Object testObject) throws Exception { super.xmlToObjectTest(testObject); Object firstObject = ((Root)testObject).getAny().get(1); assertTrue(firstObject instanceof Element); assertEquals("element1", ((Element)firstObject).getNodeName()); assertNull(((Element)firstObject).getNamespaceURI()); Attr nsDecl = ((Element)firstObject).getAttributeNode("xmlns:" + "foo"); assertNotNull(nsDecl); assertEquals("uri1", nsDecl.getValue()); } public Document getWriteControlDocument() throws Exception { java.io.InputStream inputStream = ClassLoader.getSystemResourceAsStream("org/eclipse/persistence/testing/oxm/mappings/anycollection/withoutgroupingelement/keep_as_element_ns_write.xml"); Document writeControlDocument = parser.parse(inputStream); removeEmptyTextNodes(controlDocument); inputStream.close(); return writeControlDocument; } }