blob: 2e69d1452d7bdef0f5436f9e021a8a6ab98fdf7e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 Oracle.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jpt.core.tests.internal.context.java;
import java.util.Iterator;
import org.eclipse.jdt.core.IType;
import org.eclipse.jpt.core.internal.IMappingKeys;
import org.eclipse.jpt.core.internal.context.base.IEmbeddable;
import org.eclipse.jpt.core.internal.context.base.IEntity;
import org.eclipse.jpt.core.internal.context.base.IMappedSuperclass;
import org.eclipse.jpt.core.internal.context.java.JavaNullTypeMapping;
import org.eclipse.jpt.core.internal.resource.java.Embeddable;
import org.eclipse.jpt.core.internal.resource.java.JPA;
import org.eclipse.jpt.core.internal.resource.java.JavaPersistentAttributeResource;
import org.eclipse.jpt.core.internal.resource.java.JavaPersistentTypeResource;
import org.eclipse.jpt.core.tests.internal.context.ContextModelTestCase;
import org.eclipse.jpt.utility.internal.iterators.ArrayIterator;
public class JavaEmbeddableTests extends ContextModelTestCase
{
private void createEmbeddableAnnotation() throws Exception {
this.createAnnotationAndMembers("Embeddable", "");
}
private IType createTestEmbeddable() throws Exception {
createEmbeddableAnnotation();
return this.createTestType(new DefaultAnnotationWriter() {
@Override
public Iterator<String> imports() {
return new ArrayIterator<String>(JPA.EMBEDDABLE);
}
@Override
public void appendTypeAnnotationTo(StringBuilder sb) {
sb.append("@Embeddable");
}
});
}
public JavaEmbeddableTests(String name) {
super(name);
}
public void testMorphToEntity() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
javaPersistentType().setMappingKey(IMappingKeys.ENTITY_TYPE_MAPPING_KEY);
assertTrue(javaPersistentType().getMapping() instanceof IEntity);
JavaPersistentTypeResource typeResource = jpaProject().javaPersistentTypeResource(FULLY_QUALIFIED_TYPE_NAME);
JavaPersistentAttributeResource attributeResource = typeResource.attributes().next();
assertNull(attributeResource.mappingAnnotation(Embeddable.ANNOTATION_NAME));
}
public void testMorphToMappedSuperclass() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
javaPersistentType().setMappingKey(IMappingKeys.MAPPED_SUPERCLASS_TYPE_MAPPING_KEY);
assertTrue(javaPersistentType().getMapping() instanceof IMappedSuperclass);
JavaPersistentTypeResource typeResource = jpaProject().javaPersistentTypeResource(FULLY_QUALIFIED_TYPE_NAME);
JavaPersistentAttributeResource attributeResource = typeResource.attributes().next();
assertNull(attributeResource.mappingAnnotation(Embeddable.ANNOTATION_NAME));
}
public void testMorphToNull() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
javaPersistentType().setMappingKey(IMappingKeys.NULL_TYPE_MAPPING_KEY);
assertTrue(javaPersistentType().getMapping() instanceof JavaNullTypeMapping);
JavaPersistentTypeResource typeResource = jpaProject().javaPersistentTypeResource(FULLY_QUALIFIED_TYPE_NAME);
assertNull(typeResource.mappingAnnotation(Embeddable.ANNOTATION_NAME));
}
public void testEmbeddable() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
assertTrue(javaPersistentType().getMapping() instanceof IEmbeddable);
}
public void testOverridableAttributeNames() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
IEmbeddable embeddable = (IEmbeddable) javaPersistentType().getMapping();
Iterator<String> overridableAttributeNames = embeddable.overridableAttributeNames();
assertFalse(overridableAttributeNames.hasNext());
}
public void testOverridableAssociationNames() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
IEmbeddable embeddable = (IEmbeddable) javaPersistentType().getMapping();
Iterator<String> overridableAssociationNames = embeddable.overridableAssociationNames();
assertFalse(overridableAssociationNames.hasNext());
}
public void testTableNameIsInvalid() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
IEmbeddable embeddable = (IEmbeddable) javaPersistentType().getMapping();
assertFalse(embeddable.tableNameIsInvalid(FULLY_QUALIFIED_TYPE_NAME));
assertFalse(embeddable.tableNameIsInvalid("FOO"));
}
public void testAttributeMappingKeyAllowed() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
IEmbeddable embeddable = (IEmbeddable) javaPersistentType().getMapping();
assertTrue(embeddable.attributeMappingKeyAllowed(IMappingKeys.BASIC_ATTRIBUTE_MAPPING_KEY));
assertTrue(embeddable.attributeMappingKeyAllowed(IMappingKeys.TRANSIENT_ATTRIBUTE_MAPPING_KEY));
assertFalse(embeddable.attributeMappingKeyAllowed(IMappingKeys.ID_ATTRIBUTE_MAPPING_KEY));
assertFalse(embeddable.attributeMappingKeyAllowed(IMappingKeys.EMBEDDED_ATTRIBUTE_MAPPING_KEY));
assertFalse(embeddable.attributeMappingKeyAllowed(IMappingKeys.EMBEDDED_ID_ATTRIBUTE_MAPPING_KEY));
assertFalse(embeddable.attributeMappingKeyAllowed(IMappingKeys.VERSION_ATTRIBUTE_MAPPING_KEY));
assertFalse(embeddable.attributeMappingKeyAllowed(IMappingKeys.ONE_TO_ONE_ATTRIBUTE_MAPPING_KEY));
assertFalse(embeddable.attributeMappingKeyAllowed(IMappingKeys.MANY_TO_ONE_ATTRIBUTE_MAPPING_KEY));
assertFalse(embeddable.attributeMappingKeyAllowed(IMappingKeys.ONE_TO_MANY_ATTRIBUTE_MAPPING_KEY));
assertFalse(embeddable.attributeMappingKeyAllowed(IMappingKeys.MANY_TO_MANY_ATTRIBUTE_MAPPING_KEY));
}
public void testAssociatedTables() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
IEmbeddable embeddable = (IEmbeddable) javaPersistentType().getMapping();
assertFalse(embeddable.associatedTables().hasNext());
}
public void testAssociatedTablesIncludingInherited() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
IEmbeddable embeddable = (IEmbeddable) javaPersistentType().getMapping();
assertFalse(embeddable.associatedTablesIncludingInherited().hasNext());
}
public void testAssociatedTableNamesIncludingInherited() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
IEmbeddable embeddable = (IEmbeddable) javaPersistentType().getMapping();
assertFalse(embeddable.associatedTableNamesIncludingInherited().hasNext());
}
public void testAllOverridableAttributeNames() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
IEmbeddable embeddable = (IEmbeddable) javaPersistentType().getMapping();
Iterator<String> overridableAttributeNames = embeddable.overridableAttributeNames();
assertFalse(overridableAttributeNames.hasNext());
}
//TODO need to create a subclass mappedSuperclass and test this
public void testAllOverridableAssociationNames() throws Exception {
createTestEmbeddable();
addXmlClassRef(FULLY_QUALIFIED_TYPE_NAME);
IEmbeddable embeddable = (IEmbeddable) javaPersistentType().getMapping();
Iterator<String> overridableAssociationNames = embeddable.overridableAssociationNames();
assertFalse(overridableAssociationNames.hasNext());
}
}