blob: f2832c27f3aa6ad06b35c208778e767b081fb350 [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.withoutgroupingelement;
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 DirectCollectionWithoutGroupingElementIdentifiedByNameNullItemTestCases extends XMLMappingTestCases
{
private final static String XML_RESOURCE = "org/eclipse/persistence/testing/oxm/mappings/directcollection/identifiedbyname/withoutgroupingelement/DirectCollectionWithoutGroupingElementNull.xml";
private final static String XML_WRITE_CONTROL_RESOURCE = "org/eclipse/persistence/testing/oxm/mappings/directcollection/identifiedbyname/withoutgroupingelement/DirectCollectionWithoutGroupingElementNullItemWriteControl.xml";
private final static int CONTROL_ID = 123;
private final static String CONTROL_RESPONSIBILITY1 = "do the dishes";
public DirectCollectionWithoutGroupingElementIdentifiedByNameNullItemTestCases(String name) throws Exception
{
super(name);
setControlDocument(XML_RESOURCE);
setProject(new DirectCollectionWithoutGroupingElementIdentifiedByNameProject());
}
@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;
}
/*
* On the read the null collection will come in as empty
*/
@Override
public Object getReadControlObject() {
Employee employee = new Employee();
employee.setID(CONTROL_ID);
Vector responsibilities = new Vector();
responsibilities.addElement(CONTROL_RESPONSIBILITY1);
employee.setResponsibilities(responsibilities);
return employee;
}
@Override
public void testObjectToContentHandler() throws Exception {
// DO NOTHING BECAUSE CONTENT HANDLER CAN NOT READ COMMENTS
}
}