blob: 3226c303cc29e4cf820f02213a4c419a381f9b44 [file] [log] [blame]
/*
* Copyright (c) 1998, 2020 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:
// bdoughan - January 13/2010 - 2.0.1 - Initial implementation
package org.eclipse.persistence.testing.jaxb.typemappinginfo.rootelement;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.util.HashMap;
import java.util.Map;
import jakarta.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import org.eclipse.persistence.jaxb.TypeMappingInfo;
import org.eclipse.persistence.jaxb.TypeMappingInfo.ElementScope;
import org.eclipse.persistence.testing.jaxb.typemappinginfo.TypeMappingInfoWithJSONTestCases;
public class RootFromNothingTestCases extends TypeMappingInfoWithJSONTestCases {
private static final String XML_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/rootelement/Nothing.xml";
private static final String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/rootelement/Nothing.json";
private static final String XSD_RESOURCE = "org/eclipse/persistence/testing/jaxb/typemappinginfo/rootelement/Nothing.xsd";
private static final String CONTROL_NUMBER = "613-555-1234";
public RootFromNothingTestCases(String name) throws Exception {
super(name);
setControlDocument(XML_RESOURCE);
setControlJSON(JSON_RESOURCE);
TypeMappingInfo[] typeMappingInfos = new TypeMappingInfo[1];
TypeMappingInfo phoneNumberTypeMappingInfo = new TypeMappingInfo();
phoneNumberTypeMappingInfo.setType(PhoneNumber.class);
phoneNumberTypeMappingInfo.setElementScope(ElementScope.Local);
phoneNumberTypeMappingInfo.setAnnotations(new Annotation[0]);
typeMappingInfos[0] = phoneNumberTypeMappingInfo;
setTypeMappingInfos(typeMappingInfos);
}
@Override
protected PhoneNumber getControlObject() {
PhoneNumber phoneNumber = new PhoneNumber();
phoneNumber.setNumber(CONTROL_NUMBER);
return phoneNumber;
}
@Override
public JAXBElement<PhoneNumber> getReadControlObject() {
return new JAXBElement<PhoneNumber>(new QName("number"), PhoneNumber.class, new PhoneNumber());
}
@Override
public Map<String, InputStream> getControlSchemaFiles() {
Map<String, InputStream> schemas = new HashMap<String, InputStream>(1);
InputStream instream = ClassLoader.getSystemResourceAsStream(XSD_RESOURCE);
schemas.put("", instream);
return schemas;
}
}