1
1
/*
2
- * Copyright 2024 the original author or authors.
2
+ * Copyright 2025 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
15
15
*/
16
16
package org .springframework .data .domain ;
17
17
18
- import static org .assertj .core .api .Assertions .*;
18
+ import static org .assertj .core .api .Assertions .assertThat ;
19
+ import static org .assertj .core .api .Assertions .assertThatExceptionOfType ;
19
20
21
+ import java .util .ArrayList ;
20
22
import java .util .Arrays ;
23
+ import java .util .List ;
21
24
22
25
import org .junit .jupiter .api .Test ;
23
26
24
27
/**
25
28
* Unit tests for {@link NumberVector}.
26
29
*
27
30
* @author Mark Paluch
31
+ * @author Christoph Strobl
28
32
*/
29
33
class NumberVectorUnitTests {
30
34
31
35
Number [] values = new Number [] { 1.1 , 2.2 , 3.3 , 4.4 , 5.5 , 6.6f };
32
36
Number [] floats = new Number [] { (float ) 1.1d , (float ) 2.2d , (float ) 3.3d , (float ) 4.4d , (float ) 5.5 , 6.6 };
33
37
38
+ @ Test // GH-3193
39
+ void shouldErrorOnNullElements () {
40
+
41
+ List <Long > source = new ArrayList <>(3 );
42
+ source .add (1L );
43
+ source .add (null );
44
+ source .add (3L );
45
+
46
+ assertThatExceptionOfType (IllegalArgumentException .class ).isThrownBy (() -> NumberVector .copy (source ));
47
+ assertThatExceptionOfType (IllegalArgumentException .class )
48
+ .isThrownBy (() -> NumberVector .copy (new Number [] { 1L , null , 3L }));
49
+ }
50
+
51
+ @ Test // GH-3193
52
+ void shouldAcceptEmptySource () {
53
+
54
+ Vector vector = NumberVector .copy (List .of ());
55
+
56
+ assertThat (vector .size ()).isEqualTo (0 );
57
+ assertThat (vector .getType ()).isEqualTo (Number .class );
58
+
59
+ vector = NumberVector .copy (new Number [] {});
60
+
61
+ assertThat (vector .size ()).isEqualTo (0 );
62
+ assertThat (vector .getType ()).isEqualTo (Number .class );
63
+ }
64
+
34
65
@ Test // GH-3193
35
66
void shouldCreateVector () {
36
67
@@ -48,6 +79,17 @@ void shouldCopyVectorValues() {
48
79
assertThat (vector .getSource ()).isNotSameAs (vector ).isEqualTo (values );
49
80
}
50
81
82
+ @ Test // GH-3193
83
+ void shouldFigureOutCommonType () {
84
+
85
+ assertThat (NumberVector .copy (List .of ()).getType ()).isEqualTo (Number .class );
86
+ assertThat (NumberVector .copy (List .of (1 )).getType ()).isEqualTo (Integer .class );
87
+ assertThat (NumberVector .copy (List .of (1L , 2L )).getType ()).isEqualTo (Long .class );
88
+ assertThat (NumberVector .copy (List .of (1F , 2F )).getType ()).isEqualTo (Float .class );
89
+ assertThat (NumberVector .copy (List .of (1D , 2D )).getType ()).isEqualTo (Double .class );
90
+ assertThat (NumberVector .copy (List .of (1D , 2F , 3F )).getType ()).isEqualTo (Number .class );
91
+ }
92
+
51
93
@ Test // GH-3193
52
94
void shouldRenderToString () {
53
95
@@ -66,7 +108,7 @@ void shouldCompareVector() {
66
108
}
67
109
68
110
@ Test // GH-3193
69
- void sourceShouldReturnSource () {
111
+ void sourceShouldReturnSource () { // this one is questionable
70
112
71
113
Vector vector = new NumberVector (values );
72
114
0 commit comments