blob: c6c091481b1d27abf9c37c0c63f8cf6769a617b4 [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.oxm.mappings.directcollection.identifiedbyname.withgroupingelement;
import java.io.InputStream;
import java.util.Vector;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.eclipse.persistence.testing.oxm.mappings.XMLMappingTestCases;
import org.eclipse.persistence.testing.oxm.mappings.directcollection.Employee;
import org.w3c.dom.Document;
public class DirectCollectionWithGroupingElementIdentifiedByNameNullItemTestCases extends XMLMappingTestCases
{
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/oxm/mappings/directcollection/identifiedbyname/withgroupingelement/DirectCollectionWithGroupingElementNullItem.xml";
private final static String XML_WRITE_CONTROL_RESOURCE = "org/eclipse/persistence/testing/oxm/mappings/directcollection/identifiedbyname/withgroupingelement/DirectCollectionWithGroupingElementNullItemWriteControl.xml";
private final static int CONTROL_ID = 123;
private final static String CONTROL_RESPONSIBILITY1 = "do the dishes";
public DirectCollectionWithGroupingElementIdentifiedByNameNullItemTestCases(String name) throws Exception
{
super(name);
setControlDocument(XML_RESOURCE);
setProject(new DirectCollectionWithGroupingElementIdentifiedByNameProject());
}
@Override
protected Object getControlObject() {
Vector responsibilities = new Vector();
responsibilities.addElement(null);
responsibilities.addElement(CONTROL_RESPONSIBILITY1);
responsibilities.addElement(null);
Employee employee = new Employee();
employee.setID(CONTROL_ID);
employee.setResponsibilities(responsibilities);
return employee;
}
@Override
public Document getWriteControlDocument() throws Exception{
InputStream inputStream = ClassLoader.getSystemResourceAsStream(XML_WRITE_CONTROL_RESOURCE);
DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
builderFactory.setNamespaceAware(true);
builderFactory.setIgnoringElementContentWhitespace(true);
DocumentBuilder parser = builderFactory.newDocumentBuilder();
Document returnDoc = parser.parse(inputStream);
removeEmptyTextNodes(controlDocument);
return returnDoc;
}
/*
* Nulls are read in as empty collections.
*/
@Override
public Object getReadControlObject() {
Employee employee = new Employee();
employee.setID(CONTROL_ID);
Vector responsibilities = new Vector();
responsibilities.addElement(null);
responsibilities.addElement(CONTROL_RESPONSIBILITY1);
responsibilities.addElement(null);
employee.setResponsibilities(responsibilities);
return employee;
}
@Override
public void testObjectToContentHandler() throws Exception {
// DO NOTHING
}
}