Skip to content

Commit 43e7921

Browse files
sbrannenbclozel
authored andcommitted
Introduce tests for SpEL PropertyAccessor ordering
Closes gh-33861
1 parent 8202282 commit 43e7921

File tree

1 file changed

+170
-0
lines changed

1 file changed

+170
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
/*
2+
* Copyright 2002-2024 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package org.springframework.expression.spel.ast;
18+
19+
import java.util.List;
20+
21+
import org.junit.jupiter.api.Disabled;
22+
import org.junit.jupiter.api.Test;
23+
24+
import org.springframework.expression.EvaluationContext;
25+
import org.springframework.expression.PropertyAccessor;
26+
import org.springframework.expression.TypedValue;
27+
import org.springframework.lang.Nullable;
28+
29+
import static org.assertj.core.api.Assertions.assertThat;
30+
31+
/**
32+
* Tests for {@link AstUtils}.
33+
*
34+
* @author Sam Brannen
35+
* @since 6.1.15
36+
*/
37+
class AstUtilsTests {
38+
39+
private final PropertyAccessor animal1Accessor = createAccessor("Animal1", Animal.class);
40+
41+
private final PropertyAccessor animal2Accessor = createAccessor("Animal2", Animal.class);
42+
43+
private final PropertyAccessor cat1Accessor = createAccessor("Cat1", Cat.class);
44+
45+
private final PropertyAccessor cat2Accessor = createAccessor("Cat2", Cat.class);
46+
47+
private final PropertyAccessor generic1Accessor = createAccessor("Generic1", null);
48+
49+
private final PropertyAccessor generic2Accessor = createAccessor("Generic2", null);
50+
51+
private final List<PropertyAccessor> accessors = List.of(
52+
generic1Accessor,
53+
cat1Accessor,
54+
animal1Accessor,
55+
animal2Accessor,
56+
cat2Accessor,
57+
generic2Accessor
58+
);
59+
60+
61+
@Test
62+
void emptyAccessorsList() {
63+
List<PropertyAccessor> accessorsToTry = getPropertyAccessorsToTry(new Cat(), List.of());
64+
assertThat(accessorsToTry).isEmpty();
65+
}
66+
67+
@Test
68+
void noMatch() {
69+
List<PropertyAccessor> accessorsToTry = getPropertyAccessorsToTry(new Dog(), List.of(cat1Accessor));
70+
assertThat(accessorsToTry).isEmpty();
71+
}
72+
73+
@Test
74+
void singleExactTypeMatch() {
75+
List<PropertyAccessor> accessorsToTry = getPropertyAccessorsToTry(new Cat(), List.of(cat1Accessor));
76+
assertThat(accessorsToTry).containsExactly(cat1Accessor);
77+
}
78+
79+
@Test
80+
void exactTypeMatches() {
81+
List<PropertyAccessor> accessorsToTry = getPropertyAccessorsToTry(new Cat(), accessors);
82+
// We would actually expect the following.
83+
// assertThat(accessorsToTry).containsExactly(
84+
// cat1Accessor, cat2Accessor, animal1Accessor, animal2Accessor, generic1Accessor, generic2Accessor);
85+
// However, prior to Spring Framework 6.2, the supertype and generic accessors are not
86+
// ordered properly. So we test that the exact matches come first and in the expected order.
87+
assertThat(accessorsToTry)
88+
.hasSize(accessors.size())
89+
.startsWith(cat1Accessor, cat2Accessor);
90+
}
91+
92+
@Disabled("PropertyAccessor ordering for supertype and generic matches is broken prior to Spring Framework 6.2")
93+
@Test
94+
void supertypeMatches() {
95+
List<PropertyAccessor> accessorsToTry = getPropertyAccessorsToTry(new Dog(), accessors);
96+
assertThat(accessorsToTry).containsExactly(
97+
animal1Accessor, animal2Accessor, generic1Accessor, generic2Accessor);
98+
}
99+
100+
@Test
101+
void genericMatches() {
102+
List<PropertyAccessor> accessorsToTry = getPropertyAccessorsToTry("not an Animal", accessors);
103+
assertThat(accessorsToTry).containsExactly(generic1Accessor, generic2Accessor);
104+
}
105+
106+
107+
private static PropertyAccessor createAccessor(String name, Class<?> type) {
108+
return new DemoAccessor(name, type);
109+
}
110+
111+
private static List<PropertyAccessor> getPropertyAccessorsToTry(Object target, List<PropertyAccessor> propertyAccessors) {
112+
return AstUtils.getPropertyAccessorsToTry(target.getClass(), propertyAccessors);
113+
}
114+
115+
116+
private static class DemoAccessor implements PropertyAccessor {
117+
118+
private final String name;
119+
private final Class<?>[] types;
120+
121+
DemoAccessor(String name, Class<?> type) {
122+
this.name = name;
123+
this.types = (type != null ? new Class<?>[] {type} : null);
124+
}
125+
126+
@Override
127+
@Nullable
128+
public Class<?>[] getSpecificTargetClasses() {
129+
return this.types;
130+
}
131+
132+
@Override
133+
public String toString() {
134+
return this.name;
135+
}
136+
137+
@Override
138+
public boolean canRead(EvaluationContext context, Object target, String name) {
139+
return true;
140+
}
141+
142+
@Override
143+
public TypedValue read(EvaluationContext context, Object target, String name) {
144+
throw new UnsupportedOperationException("Auto-generated method stub");
145+
}
146+
147+
@Override
148+
public boolean canWrite(EvaluationContext context, Object target, String name) {
149+
return false;
150+
}
151+
152+
@Override
153+
public void write(EvaluationContext context, Object target, String name, Object newValue) {
154+
/* no-op */
155+
}
156+
}
157+
158+
sealed interface Animal permits Bat, Cat, Dog {
159+
}
160+
161+
static final class Bat implements Animal {
162+
}
163+
164+
static final class Cat implements Animal {
165+
}
166+
167+
static final class Dog implements Animal {
168+
}
169+
170+
}

0 commit comments

Comments
 (0)