blob: ca3ea14cacae08fe59b0d08bb22ca4b2fd5aafd9 [file] [log] [blame]
/*
* Copyright (c) 2011, 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:
// Denise Smith - February 9, 2010 - Since 2.1
package org.eclipse.persistence.testing.jaxb.typemappinginfo.simple;
import jakarta.xml.bind.JAXBContext;
import javax.xml.namespace.QName;
import org.eclipse.persistence.exceptions.JAXBException;
import org.eclipse.persistence.jaxb.TypeMappingInfo;
import org.eclipse.persistence.testing.oxm.OXTestCase;
public class TypeMappingInfoNullTypeTestCases extends OXTestCase {
public TypeMappingInfoNullTypeTestCases(String name) {
super(name);
}
public void testNullTypeNullTagName() throws Exception{
TypeMappingInfo[] tmis = new TypeMappingInfo[1];
TypeMappingInfo tmi = new TypeMappingInfo();
tmi.setType(null);
tmis[0] = tmi;
try{
JAXBContext ctx = org.eclipse.persistence.jaxb.JAXBContextFactory.createContext(tmis, null, Thread.currentThread().getContextClassLoader());
}catch(JAXBException ex){
assertEquals(JAXBException.NULL_TYPE_ON_TYPEMAPPINGINFO, ex.getErrorCode());
return;
}
fail("A JAXBException should have happened but didn't");
}
public void testNullTypeNonNullTagName() throws Exception{
TypeMappingInfo[] tmis = new TypeMappingInfo[1];
TypeMappingInfo tmi = new TypeMappingInfo();
tmi.setType(null);
QName tagname = new QName("someUri", "someLocalName");
tmi.setXmlTagName(tagname);
tmis[0] = tmi;
try{
JAXBContext ctx = org.eclipse.persistence.jaxb.JAXBContextFactory.createContext(tmis, null, Thread.currentThread().getContextClassLoader());
}catch(JAXBException ex){
assertEquals(JAXBException.NULL_TYPE_ON_TYPEMAPPINGINFO, ex.getErrorCode());
return;
}
fail("A JAXBException should have happened but didn't");
}
}