blob: 447b280c949ec242057eefb2c214c0e09c42fb11 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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.tests.validation;
import java.util.Hashtable;
import org.eclipse.persistence.exceptions.ConversionException;
import org.eclipse.persistence.mappings.DirectToFieldMapping;
import org.eclipse.persistence.testing.framework.AutoVerifyTestCase;
import org.eclipse.persistence.testing.framework.TestErrorException;
/**
* @author Guy Pelletier
* @version 1.0
* @date June 25, 2003
*/
public class ConversionExceptionFromMappingTest extends AutoVerifyTestCase {
ConversionException m_exception;
public ConversionExceptionFromMappingTest() {
setDescription("Ensures that the correct ConversionException is thrown.");
}
public void reset() {
}
public void setup() throws Exception {
}
public void test() throws Exception {
DirectToFieldMapping map = new DirectToFieldMapping();
map.setAttributeName("foobar");
map.setAttributeClassification(Hashtable.class);
try {
map.getObjectValue("foobar", getSession());
} catch (ConversionException e) {
m_exception = e;
}
}
public void verify() throws Exception {
if (m_exception.getErrorCode() != ConversionException.COULD_NOT_BE_CONVERTED_EXTENDED) {
throw new TestErrorException("Invalid conversion exception was thrown");
}
}
}