Skip to main content
summaryrefslogtreecommitdiffstats
blob: 71d4f0ad7dba8f4dfdc3776f3791cd9f67ea73fc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*******************************************************************************
 * Copyright (c) 2008, 2011 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.jpa.eclipselink.core.tests.internal.resource.java;

import java.util.Iterator;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jpt.common.core.resource.java.JavaResourceField;
import org.eclipse.jpt.common.core.resource.java.JavaResourceType;
import org.eclipse.jpt.common.utility.internal.CollectionTools;
import org.eclipse.jpt.common.utility.internal.iterators.ArrayIterator;
import org.eclipse.jpt.jpa.eclipselink.core.resource.java.EclipseLink;
import org.eclipse.jpt.jpa.eclipselink.core.resource.java.EclipseLinkMutableAnnotation;

@SuppressWarnings("nls")
public class MutableAnnotationTests extends EclipseLinkJavaResourceModelTestCase {
	
	public MutableAnnotationTests(String name) {
		super(name);
	}

	private ICompilationUnit createTestMutable() throws Exception {
		return this.createTestType(new DefaultAnnotationWriter() {
			@Override
			public Iterator<String> imports() {
				return new ArrayIterator<String>(EclipseLink.MUTABLE);
			}
			@Override
			public void appendIdFieldAnnotationTo(StringBuilder sb) {
				sb.append("@Mutable");
			}
		});
	}
	
	private ICompilationUnit createTestMutableWithValue() throws Exception {
		return this.createTestType(new DefaultAnnotationWriter() {
			@Override
			public Iterator<String> imports() {
				return new ArrayIterator<String>(EclipseLink.MUTABLE);
			}
			@Override
			public void appendIdFieldAnnotationTo(StringBuilder sb) {
				sb.append("@Mutable(value=true)");
			}
		});
	}
	

	
	public void testMutableAnnotation() throws Exception {
		ICompilationUnit cu = this.createTestMutable();
		JavaResourceType resourceType = buildJavaResourceType(cu); 
		JavaResourceField resourceField = CollectionTools.get(resourceType.getFields(), 0);
		
		assertNotNull(resourceField.getAnnotation(EclipseLink.MUTABLE));
		
		resourceField.removeAnnotation(EclipseLink.MUTABLE);		
		assertNull(resourceField.getAnnotation(EclipseLink.MUTABLE));
		
		resourceField.addAnnotation(EclipseLink.MUTABLE);
		assertNotNull(resourceField.getAnnotation(EclipseLink.MUTABLE));
	}

	public void testGetValue() throws Exception {
		ICompilationUnit cu = this.createTestMutableWithValue();
		JavaResourceType resourceType = buildJavaResourceType(cu); 
		JavaResourceField resourceField = CollectionTools.get(resourceType.getFields(), 0);
		
		EclipseLinkMutableAnnotation mutableAnnotation = (EclipseLinkMutableAnnotation) resourceField.getAnnotation(EclipseLink.MUTABLE);
		assertEquals(Boolean.TRUE, mutableAnnotation.getValue());
	}

	public void testSetValue() throws Exception {
		ICompilationUnit cu = this.createTestMutableWithValue();
		JavaResourceType resourceType = buildJavaResourceType(cu); 
		JavaResourceField resourceField = CollectionTools.get(resourceType.getFields(), 0);
		
		EclipseLinkMutableAnnotation mutableAnnotation = (EclipseLinkMutableAnnotation) resourceField.getAnnotation(EclipseLink.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();
		JavaResourceType resourceType = buildJavaResourceType(cu); 
		JavaResourceField resourceField = CollectionTools.get(resourceType.getFields(), 0);
		
		EclipseLinkMutableAnnotation mutableAnnotation = (EclipseLinkMutableAnnotation) resourceField.getAnnotation(EclipseLink.MUTABLE);
		assertEquals(Boolean.TRUE, mutableAnnotation.getValue());
		
		mutableAnnotation.setValue(null);
		assertNull(mutableAnnotation.getValue());
		
		assertSourceContains("@Mutable", cu);
		assertSourceDoesNotContain("value", cu);
	}

}

Back to the top