blob: 05ae28306de08289f029e7764589a381fadcd72b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.eclipselink.core.tests.internal.resource.java;
import java.util.Iterator;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentAttribute;
import org.eclipse.jpt.core.resource.java.JavaResourcePersistentType;
import org.eclipse.jpt.eclipselink.core.resource.java.EclipseLinkJPA;
import org.eclipse.jpt.eclipselink.core.resource.java.MutableAnnotation;
import org.eclipse.jpt.utility.internal.iterators.ArrayIterator;
@SuppressWarnings("nls")
public class MutableAnnotationTests extends EclipseLinkJavaResourceModelTestCase {
public MutableAnnotationTests(String name) {
super(name);
}
private ICompilationUnit createTestMutable() throws Exception {
this.createAnnotationAndMembers("Mutable", "boolean value() default true;");
return this.createTestType(new DefaultAnnotationWriter() {
@Override
public Iterator<String> imports() {
return new ArrayIterator<String>(EclipseLinkJPA.MUTABLE);
}
@Override
public void appendIdFieldAnnotationTo(StringBuilder sb) {
sb.append("@Mutable");
}
});
}
private ICompilationUnit createTestMutableWithValue() throws Exception {
this.createAnnotationAndMembers("Mutable", "boolean value() default true;");
return this.createTestType(new DefaultAnnotationWriter() {
@Override
public Iterator<String> imports() {
return new ArrayIterator<String>(EclipseLinkJPA.MUTABLE);
}
@Override
public void appendIdFieldAnnotationTo(StringBuilder sb) {
sb.append("@Mutable(value=true)");
}
});
}
public void testMutableAnnotation() throws Exception {
ICompilationUnit cu = this.createTestMutable();
JavaResourcePersistentType typeResource = buildJavaTypeResource(cu);
JavaResourcePersistentAttribute attributeResource = typeResource.fields().next();
assertNotNull(attributeResource.getSupportingAnnotation(EclipseLinkJPA.MUTABLE));
attributeResource.removeSupportingAnnotation(EclipseLinkJPA.MUTABLE);
assertNull(attributeResource.getSupportingAnnotation(EclipseLinkJPA.MUTABLE));
attributeResource.addSupportingAnnotation(EclipseLinkJPA.MUTABLE);
assertNotNull(attributeResource.getSupportingAnnotation(EclipseLinkJPA.MUTABLE));
}
public void testGetValue() throws Exception {
ICompilationUnit cu = this.createTestMutableWithValue();
JavaResourcePersistentType typeResource = buildJavaTypeResource(cu);
JavaResourcePersistentAttribute attributeResource = typeResource.fields().next();
MutableAnnotation mutableAnnotation = (MutableAnnotation) attributeResource.getSupportingAnnotation(EclipseLinkJPA.MUTABLE);
assertEquals(Boolean.TRUE, mutableAnnotation.getValue());
}
public void testSetValue() throws Exception {
ICompilationUnit cu = this.createTestMutableWithValue();
JavaResourcePersistentType typeResource = buildJavaTypeResource(cu);
JavaResourcePersistentAttribute attributeResource = typeResource.fields().next();
MutableAnnotation mutableAnnotation = (MutableAnnotation) attributeResource.getSupportingAnnotation(EclipseLinkJPA.MUTABLE);
assertEquals(Boolean.TRUE, mutableAnnotation.getValue());
mutableAnnotation.setValue(Boolean.FALSE);
assertEquals(Boolean.FALSE, mutableAnnotation.getValue());
assertSourceContains("@Mutable(value=false)", cu);
mutableAnnotation.setValue(null);
mutableAnnotation.setValue(Boolean.FALSE);
assertSourceContains("@Mutable(false)", cu);
}
public void testSetValueNull() throws Exception {
ICompilationUnit cu = this.createTestMutableWithValue();
JavaResourcePersistentType typeResource = buildJavaTypeResource(cu);
JavaResourcePersistentAttribute attributeResource = typeResource.fields().next();
MutableAnnotation mutableAnnotation = (MutableAnnotation) attributeResource.getSupportingAnnotation(EclipseLinkJPA.MUTABLE);
assertEquals(Boolean.TRUE, mutableAnnotation.getValue());
mutableAnnotation.setValue(null);
assertNull(mutableAnnotation.getValue());
assertSourceContains("@Mutable", cu);
assertSourceDoesNotContain("value", cu);
}
}