28
28
*/
29
29
import java .lang .constant .ClassDesc ;
30
30
import static java .lang .constant .ConstantDescs .*;
31
+
32
+ import java .lang .constant .ConstantDesc ;
31
33
import java .lang .constant .MethodTypeDesc ;
32
34
import java .util .AbstractMap ;
33
35
import java .util .ArrayList ;
39
41
import java .lang .classfile .attribute .RuntimeVisibleAnnotationsAttribute ;
40
42
import java .lang .classfile .*;
41
43
import java .lang .classfile .constantpool .ConstantPoolBuilder ;
44
+ import java .util .stream .Stream ;
45
+
42
46
import org .junit .jupiter .api .Test ;
43
47
44
48
import static java .util .stream .Collectors .toList ;
53
57
class AnnotationTest {
54
58
enum E {C };
55
59
56
- private static Map <String , Object > constants
60
+ // name -> (value, poolValue)
61
+ private static final Map <String , Map .Entry <Object , ConstantDesc >> constants
57
62
= Map .ofEntries (
58
- new AbstractMap .SimpleImmutableEntry <>("i" , 1 ),
59
- new AbstractMap .SimpleImmutableEntry <>("j" , 1L ),
60
- new AbstractMap .SimpleImmutableEntry <>("s" , 1 ),
61
- new AbstractMap .SimpleImmutableEntry <>("b" , 1 ),
62
- new AbstractMap .SimpleImmutableEntry <>("f" , 1.0f ),
63
- new AbstractMap .SimpleImmutableEntry <>("d" , 1.0d ),
64
- new AbstractMap .SimpleImmutableEntry <>("z" , 1 ),
65
- new AbstractMap .SimpleImmutableEntry <>("c" , (int ) '1' ),
66
- new AbstractMap .SimpleImmutableEntry <>("st" , "1" ),
67
- new AbstractMap .SimpleImmutableEntry <>("cl" , ClassDesc .of ("foo.Bar" )),
68
- new AbstractMap .SimpleImmutableEntry <>("en" , E .C ),
69
- new AbstractMap .SimpleImmutableEntry <>("arr" , new Object [] {1 , "1" , 1.0f })
63
+ Map .entry ("i" , Map .entry (1 , 1 )),
64
+ Map .entry ("j" , Map .entry (1L , 1L )),
65
+ Map .entry ("s" , Map .entry ((short ) 1 , 1 )),
66
+ Map .entry ("b" , Map .entry ((byte ) 1 , 1 )),
67
+ Map .entry ("f" , Map .entry (1.0f , 1.0f )),
68
+ Map .entry ("d" , Map .entry (1.0d , 1.0d )),
69
+ Map .entry ("z" , Map .entry (true , 1 )),
70
+ Map .entry ("c" , Map .entry ('1' , (int ) '1' )),
71
+ Map .entry ("st" , Map .entry ("1" , "1" ))
70
72
);
71
73
72
- private static final List <AnnotationElement > constantElements =
74
+ private static final List <AnnotationElement > constantElements = Stream . concat (
73
75
constants .entrySet ().stream ()
74
- .map (e -> AnnotationElement .of (e .getKey (), AnnotationValue .of (e .getValue ())))
75
- .toList ();
76
+ .map (e -> Map .entry (e .getKey (), e .getValue ().getKey ())),
77
+ Stream .of (
78
+ Map .entry ("cl" , ClassDesc .of ("foo.Bar" )),
79
+ Map .entry ("en" , E .C ),
80
+ Map .entry ("arr" , new Object [] {1 , "1" , 1.0f })
81
+ ))
82
+ .map (e -> AnnotationElement .of (e .getKey (), AnnotationValue .of (e .getValue ())))
83
+ .toList ();
76
84
77
85
private static List <AnnotationElement > elements () {
78
86
List <AnnotationElement > list = new ArrayList <>(constantElements );
@@ -88,9 +96,12 @@ private static boolean assertAnno(Annotation a, String annoClassDescriptor, bool
88
96
names .add (evp .name ().stringValue ());
89
97
switch (evp .name ().stringValue ()) {
90
98
case "i" , "j" , "s" , "b" , "f" , "d" , "z" , "c" , "st" :
91
- assertTrue (evp .value () instanceof AnnotationValue .OfConstant c );
92
- assertEquals (((AnnotationValue .OfConstant ) evp .value ()).constantValue (),
93
- constants .get (evp .name ().stringValue ()));
99
+ if (!(evp .value () instanceof AnnotationValue .OfConstant c ))
100
+ return fail ();
101
+ assertEquals (c .resolvedValue (),
102
+ constants .get (evp .name ().stringValue ()).getKey ());
103
+ assertEquals (c .constant ().constantValue (),
104
+ constants .get (evp .name ().stringValue ()).getValue ());
94
105
break ;
95
106
case "cl" :
96
107
assertTrue (evp .value () instanceof AnnotationValue .OfClass c
@@ -105,8 +116,9 @@ private static boolean assertAnno(Annotation a, String annoClassDescriptor, bool
105
116
&& assertAnno (c .annotation (), "LBar;" , false ));
106
117
break ;
107
118
case "arr" :
108
- assertTrue (evp .value () instanceof AnnotationValue .OfArray );
109
- List <AnnotationValue > values = ((AnnotationValue .OfArray ) evp .value ()).values ();
119
+ if (!(evp .value () instanceof AnnotationValue .OfArray arr ))
120
+ return fail ();
121
+ List <AnnotationValue > values = arr .values ();
110
122
assertEquals (values .stream ().map (v -> ((AnnotationValue .OfConstant ) v ).constant ().constantValue ()).collect (toSet ()),
111
123
Set .of (1 , 1.0f , "1" ));
112
124
break ;
0 commit comments