28
28
import org .springframework .core .Ordered ;
29
29
import org .springframework .data .mapping .Person ;
30
30
import org .springframework .data .mapping .PersonDocument ;
31
+ import org .springframework .data .mapping .PersonNoId ;
31
32
import org .springframework .data .mapping .callback .CapturingEntityCallback .FirstCallback ;
32
33
import org .springframework .data .mapping .callback .CapturingEntityCallback .SecondCallback ;
33
34
import org .springframework .data .mapping .callback .CapturingEntityCallback .ThirdCallback ;
@@ -95,9 +96,8 @@ void invokeInvalidEvent() {
95
96
DefaultEntityCallbacks callbacks = new DefaultEntityCallbacks ();
96
97
callbacks .addEntityCallback (new InvalidEntityCallback () {});
97
98
98
- assertThatIllegalStateException ()
99
- .isThrownBy (() -> callbacks .callback (InvalidEntityCallback .class , new PersonDocument (null , "Walter" , null ),
100
- "agr0" , Float .POSITIVE_INFINITY ));
99
+ assertThatIllegalStateException ().isThrownBy (() -> callbacks .callback (InvalidEntityCallback .class ,
100
+ new PersonDocument (null , "Walter" , null ), "agr0" , Float .POSITIVE_INFINITY ));
101
101
}
102
102
103
103
@ Test // DATACMNS-1467
@@ -126,8 +126,7 @@ void errorsOnNullEntity() {
126
126
DefaultEntityCallbacks callbacks = new DefaultEntityCallbacks ();
127
127
callbacks .addEntityCallback (new CapturingEntityCallback ());
128
128
129
- assertThatIllegalArgumentException ()
130
- .isThrownBy (() -> callbacks .callback (CapturingEntityCallback .class , null ));
129
+ assertThatIllegalArgumentException ().isThrownBy (() -> callbacks .callback (CapturingEntityCallback .class , null ));
131
130
}
132
131
133
132
@ Test // DATACMNS-1467
@@ -144,18 +143,31 @@ void errorsOnNullValueReturnedByCallbackEntity() {
144
143
145
144
PersonDocument initial = new PersonDocument (null , "Walter" , null );
146
145
147
- assertThatIllegalArgumentException ()
148
- .isThrownBy (() -> callbacks .callback (CapturingEntityCallback .class , initial ));
146
+ assertThatIllegalArgumentException ().isThrownBy (() -> callbacks .callback (CapturingEntityCallback .class , initial ));
149
147
150
148
assertThat (first .capturedValue ()).isSameAs (initial );
151
149
assertThat (second .capturedValue ()).isNotNull ().isNotSameAs (initial );
152
150
assertThat (third .capturedValues ()).isEmpty ();
153
151
}
154
152
153
+ @ Test // GH-2583
154
+ void skipsInvocationUsingJava18ReflectiveTypeRejection () {
155
+
156
+ DefaultEntityCallbacks callbacks = new DefaultEntityCallbacks ();
157
+ callbacks .addEntityCallback (new Java18ClassCastStyle ());
158
+
159
+ Person person = new PersonNoId (42 , "Walter" , "White" );
160
+
161
+ Person afterCallback = callbacks .callback (BeforeConvertCallback .class , person );
162
+
163
+ assertThat (afterCallback ).isSameAs (person );
164
+ }
165
+
155
166
@ Test // DATACMNS-1467
156
167
void detectsMultipleCallbacksWithinOneClass () {
157
168
158
- AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext (MultipleCallbacksInOneClassConfig .class );
169
+ AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext (
170
+ MultipleCallbacksInOneClassConfig .class );
159
171
160
172
DefaultEntityCallbacks callbacks = new DefaultEntityCallbacks (ctx );
161
173
@@ -288,4 +300,13 @@ public Person onBeforeSave(Person object) {
288
300
}
289
301
}
290
302
303
+ static class Java18ClassCastStyle implements BeforeConvertCallback <Person > {
304
+
305
+ @ Override
306
+ public Person onBeforeConvert (Person object ) {
307
+ throw new IllegalArgumentException ("argument type mismatch" );
308
+ }
309
+
310
+ }
311
+
291
312
}
0 commit comments