blob: bd58bb074cb78e5e7fcc934dfa3ec3d7f637ef2c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package gls.annotations
import gls.CompilableTestSupport
/**
* Tests various properties of annotation definitions.
*/
final class AnnotationTest extends CompilableTestSupport {
/**
* Check that it is possible to annotate an annotation definition with field and method target elements.
*/
void testAnnotateAnnotationDefinitionWithMethodAndFieldTargetElementTypes() {
shouldCompile """
import java.lang.annotation.*
import static java.lang.annotation.RetentionPolicy.*
import static java.lang.annotation.ElementType.*
@Retention(RUNTIME)
@Target([METHOD, FIELD])
@interface MyAnnotation { }
"""
}
void testCannotAnnotateAnnotationDefinitionIfTargetIsNotOfTypeOrAnnotationType() {
shouldNotCompile """
import java.lang.annotation.*
import static java.lang.annotation.ElementType.*
// all target elements except ANNOTATION_TYPE and TYPE
@Target([CONSTRUCTOR, METHOD, FIELD, LOCAL_VARIABLE, PACKAGE, PARAMETER])
@interface MyAnnotation { }
@MyAnnotation
@interface AnotherAnnotation {}
"""
}
/**
* The @OneToMany cascade parameter takes an array of CascadeType.
* To use this annotation in Java with this parameter, you do <code>@OneToMany(cascade = { CascadeType.ALL })</code>
* In Groovy, you do <code>@OneToMany(cascade = [ CascadeType.ALL ])</code> (brackets instead of braces)
* But when there's just one value in the array, the curly braces or brackets can be omitted:
* <code>@OneToMany(cascade = [ CascadeType.ALL ])</code>
*/
void testOmittingBracketsForSingleValueArrayParameter() {
shouldCompile """
import gls.annotations.*
class Book {}
class Author {
@OneToMany(cascade = CascadeType.ALL)
Set<Book> books
}
def annotation = Author.class.getDeclaredField('books').annotations[0]
assert annotation instanceof OneToMany
assert annotation.cascade() == [CascadeType.ALL]
"""
}
void testPrimitiveDefault() {
// NOTE: for int anything else than a plain number will fail.
// For example 1l will fail too, even if it could be converted.
// If this should be changed, then further discussion is needed.
shouldNotCompile """
@interface X {
int x() default "1" // must be integer
}
"""
shouldCompile """
@interface X {
int x() default 1
}
"""
}
void testConstant() {
assertScript """
class Baz {
// static final int OTHER = 5
// below we would like to but can't use:
// constant field expressions, e.g. OTHER, or
// constant property expressions, e.g. Short.MAX_VALUE
@Foo(5) void run() {
assert Baz.class.getMethod('run').annotations[0].value() == 5
}
}
import java.lang.annotation.*
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@interface Foo {
int value() default -3
}
new Baz().run()
"""
}
void testArrayDefault() {
// GROOVY-4811
assertScript '''
import java.lang.annotation.*
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@interface Temp {
String[] bar() default '1' // coerced to list as per Java but must be correct type
}
@Temp
class Bar {}
assert Bar.getAnnotation(Temp).bar() == ['1']
'''
shouldNotCompile """
@interface X {
String[] x() default ["1",2] // list must contain elements of correct type
}
"""
shouldCompile """
@interface X {
String[] x() default ["a","b"]
}
"""
}
void testClassDefault() {
shouldNotCompile """
@interface X {
Class x() default "1" // must be list
}
"""
shouldCompile """
@interface X {
Class x() default Number.class // class with .class
}
"""
shouldCompile """
@interface X {
Class x() default Number
}
"""
}
void testEnumDefault() {
shouldNotCompile """
@interface X {
ElementType x() default "1" // must be Enum
}
"""
shouldNotCompile """
@interface X {
ElementType x() default Target.TYPE // must be Enum of correct type
}
"""
shouldCompile """
import java.lang.annotation.*
@interface X {
ElementType x() default ElementType.METHOD
}
"""
}
void testAnnotationDefault() {
shouldNotCompile """
import java.lang.annotation.*
@interface X {
Target x() default "1" // must be Annotation
}
"""
shouldNotCompile """
import java.lang.annotation.*
@interface X {
Target x() default @Retentention // must be correct type
}
"""
shouldCompile """
import java.lang.annotation.*
@interface X {
Target x() default @Target([ElementType.TYPE])
}
"""
}
void testSelfReference() {
shouldNotCompile """
@interface X {
X x() default @X // self reference must not work
}
"""
}
void testCyclicReference() {
shouldNotCompile """
@interface X {
Y x() default @Y
}
@interface Y {
X x() default @X
}
"""
}
void testParameter() {
shouldNotCompile """
@interface X {
String x(int x) default "" // annotation members can't have parameters
}
"""
}
void testThrowsClause() {
shouldNotCompile """
@interface X {
String x() throws IOException // annotation members can't have exceptions
}
"""
}
void testExtends() {
shouldNotCompile """
@interface X extends Serializable{}
// annotation members can't extend
"""
}
void testInvalidMemberType() {
shouldNotCompile """
@interface X {
Object x() // Object is no type for constants
}
"""
}
void testNull() {
shouldNotCompile """
@interface X {
String x() default null // null is no constant for annotations
}
"""
}
void testUsage() {
assertScript """
import java.lang.annotation.*
// a random annotation type
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation {
String stringValue()
int intValue()
int defaultInt() default 1
String defaultString() default ""
Class defaultClass() default Integer.class
ElementType defaultEnum() default ElementType.TYPE
Target defaultAnnotation() default @Target([ElementType.TYPE])
}
@MyAnnotation(stringValue = "for class", intValue = 100)
class Foo {}
Annotation[] annotations = Foo.class.annotations
assert annotations.size() == 1
MyAnnotation my = annotations[0]
assert my.stringValue() == "for class"
assert my.intValue() == 100
assert my.defaultInt() == 1
assert my.defaultString() == ""
assert my.defaultClass() == Integer
assert my.defaultEnum() == ElementType.TYPE
assert my.defaultAnnotation() instanceof Target
"""
}
void testJavaAnnotationUsageWithGroovyKeyword() {
assertScript """
package gls.annotations
import java.lang.annotation.*
@JavaAnnotation(in = 3)
class Foo {}
Annotation[] annotations = Foo.class.annotations
assert annotations.size() == 1
JavaAnnotation my = annotations[0]
assert my.in() == 3
"""
}
void testUsageOnClass() {
assertScript """
import java.lang.annotation.*
@Deprecated
class Foo{}
assert Foo.class.annotations.size() == 1
"""
}
void testFieldAndPropertyRuntimeRetention() {
assertScript """
import org.codehaus.groovy.ast.ClassNode
import java.lang.annotation.*
@Retention(RetentionPolicy.RUNTIME)
@interface Annotation1 {}
@Annotation1 class A {
@Annotation1 method1(){}
@Annotation1 public field1
@Annotation1 prop1
}
new ClassNode(A).with {
assert annotations: "ClassNode for class 'A' has an annotation as it should"
getMethod('method1').with {
assert annotations: "Annotation on 'method1' not found"
}
getField('field1').with {
assert annotations: "Annotation on 'field1' not found"
}
getField('prop1').with {
assert annotations: "Annotation on 'property1' not found"
}
}
"""
}
void testSingletonArrayUsage() {
assertScript """
import java.lang.annotation.*
// a random annnotation type
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation {
String[] things()
}
@MyAnnotation(things = "x")
class Foo {}
Annotation[] annotations = Foo.class.annotations
assert annotations.size() == 1
MyAnnotation my = annotations[0]
assert my.things().size() == 1
assert my.things()[0] == "x"
"""
}
void testSettingAnnotationMemberTwice() {
shouldNotCompile """
package gls.annotations
@JavaAnnotation(in = 1, in = 2)
class Foo {}
"""
}
void testGetterCallWithSingletonAnnotation() {
assertScript """
@Singleton class MyService3410{}
assert MyService3410.instance != null
assert MyService3410.getInstance() != null
"""
}
void testAttributePropertyConstants() {
assertScript """
import java.lang.annotation.*
import static Constants.*
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@interface Anno {
double value() default 0.0d
String[] array() default []
}
class Constants {
public static final String BAR = "bar"
public static final APPROX_PI = 3.14d
}
interface IConstants {
String FOO = "foo"
}
class ClassWithAnnotationUsingConstant {
@Anno(array = [IConstants.FOO, BAR, groovy.inspect.Inspector.GROOVY])
public annotatedStrings
@Anno(Math.PI)
public annotatedMath1
@Anno(APPROX_PI)
public annotatedMath2
}
assert ClassWithAnnotationUsingConstant.getDeclaredField('annotatedStrings').annotations[0].array() == ['foo', 'bar', "GROOVY"]
assert ClassWithAnnotationUsingConstant.getDeclaredField('annotatedMath1').annotations[0].value() == Math.PI
assert ClassWithAnnotationUsingConstant.getDeclaredField('annotatedMath2').annotations[0].value() == Constants.APPROX_PI
"""
}
void testNestedAttributePropertyConstants() {
assertScript """
import java.lang.annotation.*
import static Constants.*
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@interface Outer {
Inner value()
String[] array() default []
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@interface Inner {
String[] value() default []
}
class Constants {
public static final String BAR = "bar"
public static final String BAZ = "baz"
}
interface IConstants {
String FOO = "foo"
String FOOBAR = "foobar"
}
class ClassWithNestedAnnotationUsingConstant {
@Outer(value = @Inner([IConstants.FOOBAR, BAR, groovy.inspect.Inspector.GROOVY]),
array = [IConstants.FOO, groovy.inspect.Inspector.GROOVY, BAZ])
public outer
}
assert ClassWithNestedAnnotationUsingConstant.getDeclaredField('outer').annotations[0].array() == ['foo', 'GROOVY', 'baz']
assert ClassWithNestedAnnotationUsingConstant.getDeclaredField('outer').annotations[0].value().value() == ['foobar', 'bar', 'GROOVY']
"""
}
void testRuntimeRetentionAtAllLevels() {
assertScript """
import java.lang.annotation.*
@Retention(RetentionPolicy.RUNTIME)
@Target([ElementType.TYPE, ElementType.METHOD, ElementType.PARAMETER, ElementType.CONSTRUCTOR, ElementType.FIELD])
@interface MyAnnotation {
String value() default ""
}
@MyAnnotation('class')
class MyClass {
@MyAnnotation('field')
public myField
@MyAnnotation('constructor')
MyClass(@MyAnnotation('constructor param') arg){}
@MyAnnotation('method')
def myMethod(@MyAnnotation('method param') arg) {}
}
def c1 = new MyClass()
assert c1.class.annotations[0].value() == 'class'
def field = c1.class.fields.find{ it.name == 'myField' }
assert field.annotations[0].value() == 'field'
def method = c1.class.methods.find{ it.name == 'myMethod' }
assert method.annotations[0].value() == 'method'
assert method.parameterAnnotations[0][0].value() == 'method param'
def constructor = c1.class.constructors[0]
assert constructor.annotations[0].value() == 'constructor'
assert constructor.parameterAnnotations[0][0].value() == 'constructor param'
"""
}
void testAnnotationWithValuesNotGivenForAttributesWithoutDefaults() {
def scriptStr
scriptStr = """
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
@Retention(RetentionPolicy.RUNTIME)
@interface Annot3454V1 {
String x()
}
@Annot3454V1
class Bar {}
"""
// compiler should not allow this, because there is no default value for x
shouldNotCompile(scriptStr)
scriptStr = """
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
@Retention(RetentionPolicy.RUNTIME)
@interface Annot3454V2 {
String x() default 'xxx'
String y()
}
@Annot3454V2
class Bar {}
"""
// compiler should not allow this, because there is no default value for y
shouldNotCompile(scriptStr)
scriptStr = """
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
@Retention(RetentionPolicy.RUNTIME)
@interface Annot3454V3 {
String x() default 'xxx'
String y()
}
@Annot3454V3(y = 'yyy')
class Bar {}
def anno = Bar.class.getAnnotation(Annot3454V3)
assert anno.x() == 'xxx'
assert anno.y() == 'yyy'
"""
// compiler should allow this, because there is default value for x and value provided for y
assertScript(scriptStr)
}
void testAllowedTargetsCheckAlsoWorksForAnnotationTypesDefinedOutsideThisCompilationUnit() {
shouldCompile """
@java.lang.annotation.Documented
@interface Foo {}
"""
shouldNotCompile """
@java.lang.annotation.Documented
class Foo {
def bar
}
"""
shouldNotCompile """
class Foo {
@java.lang.annotation.Documented
def bar
}
"""
shouldCompile """
import org.junit.*
class Foo {
@Test
void foo() {}
}
"""
shouldNotCompile """
import org.junit.*
@Test
class Foo {
void foo() {}
}
"""
}
// GROOVY-6025
void testAnnotationDefinitionDefaultValues() {
assertScript '''
import java.lang.annotation.*
@Retention(RetentionPolicy.RUNTIME)
@Target([ElementType.TYPE, ElementType.METHOD])
public @interface Foo {
int i1() default 0
int i2() default (int)1
short s1() default 2
short s2() default (byte)3
short s3() default (Short)4
short s4() default (int)5
byte b() default 6
char c1() default 65
char c2() default 'B'
char c3() default 'C' as char
char c4() default (char)'D'
float f1() default 1.0
float f2() default 1.1f
float f3() default (float)1.2
float f4() default 1.3 as float
double d1() default 2.0
double d2() default 2.1d
double d3() default (double)2.2
double d4() default 2.3 as double
}
@Foo method() {}
def string = getClass().getMethod('method').getAnnotation(Foo).toString()[5..-2].tokenize(', ').sort().join('|')
assert string == 'b=6|c1=A|c2=B|c3=C|c4=D|d1=2.0|d2=2.1|d3=2.2|d4=2.3|f1=1.0|f2=1.1|f3=1.2|f4=1.3|i1=0|i2=1|s1=2|s2=3|s3=4|s4=5' ||
// changed in some jdk9 versions
string == "b=6|c1='A'|c2='B'|c3='C'|c4='D'|d1=2.0|d2=2.1|d3=2.2|d4=2.3|f1=1.0f|f2=1.1f|f3=1.2f|f4=1.3f|i1=0|i2=1|s1=2|s2=3|s3=4|s4=5"
'''
}
// GROOVY-6093
void testAnnotationOnEnumConstant() {
assertScript '''import gls.annotations.XmlEnum
import gls.annotations.XmlEnumValue
@XmlEnum
enum GroovyEnum {
@XmlEnumValue("good")
BAD
}
assert GroovyEnum.class.getField('BAD').isAnnotationPresent(XmlEnumValue)
'''
}
// GROOVY-7151
void testAnnotateAnnotationDefinitionWithAnnotationWithTypeTarget() {
shouldCompile codeWithMetaAnnotationWithTarget("TYPE")
}
void testAnnotateAnnotationDefinitionWithAnnotationWithAnnotationTypeTarget() {
shouldCompile codeWithMetaAnnotationWithTarget("ANNOTATION_TYPE")
}
// GROOVY-7806
void testNewlinesAllowedBeforeBlock() {
shouldCompile '''
@interface ANNOTATION_A
{
}
'''
}
// GROOVY-8226
void testAnnotationOnParameterType() {
assertScript '''
import java.lang.annotation.*
import static java.lang.annotation.ElementType.*
import static java.lang.annotation.RetentionPolicy.*
@Target([PARAMETER, FIELD, METHOD, ANNOTATION_TYPE, TYPE_USE])
@Retention(RUNTIME)
public @interface NonNull { }
class Foo {
@NonNull public Integer foo
@NonNull Integer bar(@NonNull String baz) {}
}
def expected = '@NonNull()'
def foo = Foo.getField('foo')
assert foo.annotations[0].toString() == expected
def bar = Foo.getMethod('bar', String)
assert bar.annotations[0].toString() == expected
def baz = bar.parameters[0]
assert baz.annotations[0].toString() == expected
'''
}
// GROOVY-8234
void testAnnotationWithRepeatableSupported() {
assertScript '''
import java.lang.annotation.*
class MyClass {
// TODO confirm the JDK9 behavior is what we expect
private static final List<String> expected = [
'@MyAnnotationArray(value=[@MyAnnotation(value=val1), @MyAnnotation(value=val2)])', // JDK5-8
'@MyAnnotationArray(value={@MyAnnotation(value="val1"), @MyAnnotation(value="val2")})' // JDK9
]
// control
@MyAnnotationArray([@MyAnnotation("val1"), @MyAnnotation("val2")])
String method1() { 'method1' }
// duplicate candidate for auto collection
@MyAnnotation(value = "val1")
@MyAnnotation(value = "val2")
String method2() { 'method2' }
static void main(String... args) {
MyClass myc = new MyClass()
assert 'method1' == myc.method1()
assert 'method2' == myc.method2()
assert expected.contains(checkAnnos(myc, "method1"))
assert expected.contains(checkAnnos(myc, "method2"))
}
private static String checkAnnos(MyClass myc, String name) {
def m = myc.getClass().getMethod(name)
List annos = m.getAnnotations()
assert annos.size() == 1
annos[0].toString()
}
}
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Repeatable(MyAnnotationArray)
@interface MyAnnotation {
String value() default "val0"
}
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotationArray {
MyAnnotation[] value()
}
'''
}
void testVariableExpressionsReferencingConstantsSeenForAnnotationAttributes() {
shouldCompile '''
class C {
public static final String VALUE = 'rawtypes'
@SuppressWarnings(VALUE)
def method() { }
}
'''
}
void testSimpleBinaryExpressions() {
assertScript '''
import java.lang.annotation.*
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@interface Pattern {
String regexp()
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@interface LimitedDouble {
double max() default Double.MAX_VALUE
double min() default Double.MIN_VALUE
double zero() default (1.0 - 1.0d) * 1L
}
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@interface IntegerConst {
int kilo() default 0b1 << 10
int two() default 64 >> 5
int nine() default 0b1100 ^ 0b101
int answer() default 42
}
class MyClass {
private static interface Constants {
static final String CONST = 'foo' + 'bar'
}
@Pattern(regexp=Constants.CONST)
String myString
@LimitedDouble(min=0.0d, max=50.0d * 2)
double myDouble
@IntegerConst(answer=(5 ** 2) * (2 << 1))
int myInteger
}
assert MyClass.getDeclaredField('myString').annotations[0].regexp() == 'foobar'
MyClass.getDeclaredField('myDouble').annotations[0].with {
assert max() == 100.0d
assert min() == 0.0d
assert zero() == 0.0d
}
MyClass.getDeclaredField('myInteger').annotations[0].with {
assert kilo() == 1024
assert two() == 2
assert nine() == 9
assert answer() == 100
}
'''
}
void testAnnotationAttributeConstantFromPrecompiledGroovyClass() {
// GROOVY-3278
assertScript '''
import gls.annotations.*
@ConstAnnotation(ints = 42)
class Child1 extends Base3278 {}
class OtherConstants {
static final Integer CONST3 = 3278
}
@ConstAnnotation(ints = [-1, Base3278.CONST, Base3278.CONST1, Base3278.CONST2, OtherConstants.CONST3, Integer.MIN_VALUE],
strings = ['foo', Base3278.CONST4, Base3278.CONST5, Base3278.CONST5 + 'bing'])
class Child3 extends Base3278 {}
assert new Child1().ints() == [42]
assert new Child2().ints() == [2147483647]
new Child3().with {
assert ints() == [-1, 3278, 2048, 2070, 3278, -2147483648]
assert strings() == ['foo', 'foobar', 'foobarbaz', 'foobarbazbing']
}
'''
}
void testAnnotationAttributeConstantFromEnumConstantField() {
// GROOVY-8898
assertScript '''
import java.lang.annotation.*
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@interface MyAnnotation {
String[] groups() default []
MyEnum alt() default MyEnum.ALT1
}
class Base {
static final String CONST = 'bar'
def groups() { getClass().annotations[0].groups() }
def alt() { getClass().annotations[0].alt() }
}
enum MyEnum {
ALT1, ALT2;
public static final String CONST = 'baz'
}
@MyAnnotation(groups = ['foo', Base.CONST, MyEnum.CONST], alt = MyEnum.ALT2)
class Child extends Base {}
new Child().with {
assert groups() == ['foo', 'bar', 'baz']
assert alt() == MyEnum.ALT2
}
'''
}
void testAnnotationWithRepeatableSupportedPrecompiledJava() {
assertScript '''
import java.lang.annotation.*
import gls.annotations.*
class MyClass {
// TODO confirm the JDK9 behavior is what we expect
private static final List<String> expected = [
'@gls.annotations.Requires(value=[@gls.annotations.Require(value=val1), @gls.annotations.Require(value=val2)])', // JDK5-8
'@gls.annotations.Requires(value={@gls.annotations.Require(value="val1"), @gls.annotations.Require(value="val2")})' // JDK9
]
// control
@Requires([@Require("val1"), @Require("val2")])
String method1() { 'method1' }
// duplicate candidate for auto collection
@Require(value = "val1")
@Require(value = "val2")
String method2() { 'method2' }
static void main(String... args) {
MyClass myc = new MyClass()
assert 'method1' == myc.method1()
assert 'method2' == myc.method2()
assert expected.contains(checkAnnos(myc, "method1"))
assert expected.contains(checkAnnos(myc, "method2"))
}
private static String checkAnnos(MyClass myc, String name) {
def m = myc.getClass().getMethod(name)
List annos = m.getAnnotations()
assert annos.size() == 1
annos[0].toString()
}
}
'''
}
//Parametrized tests in Spock would allow to make it much more readable
private static String codeWithMetaAnnotationWithTarget(String targetElementTypeName) {
"""
import java.lang.annotation.*
import static java.lang.annotation.RetentionPolicy.*
import static java.lang.annotation.ElementType.*
@Retention(RUNTIME)
@Target(${targetElementTypeName})
@interface Import {}
@Retention(RUNTIME)
@Target([FIELD])
@Import
@interface EnableFeature { }
"""
}
}