Sam Brannen
a122a0e8c8
Simplify RuntimeHintsUtilsTests
3 years ago
Sam Brannen
a5ceb964b9
Improve display names in CrossOriginTests
3 years ago
Sam Brannen
0beee7dc69
Stop using convention-based attribute overrides in tests in spring-test and spring-mvc
...
See gh-28760
3 years ago
Sam Brannen
c54b1519e4
Merge branch '5.3.x'
3 years ago
Sam Brannen
323dbb912e
Move convention-based attribute override tests to @Nested class
3 years ago
rstoyanchev
581275c68c
Merge branch '5.3.x'
3 years ago
rstoyanchev
0938909cd9
Switch to Reactor 2022.0.0 snapshots
...
See gh-28766
3 years ago
rstoyanchev
63d7e81a48
Switch to Reactor 2020-0.21 snapshots
...
See gh-28765
3 years ago
Sam Brannen
a194fa0e87
Merge branch '5.3.x'
...
# Conflicts:
# spring-core/src/test/java/org/springframework/core/annotation/MergedAnnotationsTests.java
3 years ago
Sam Brannen
07960d4918
Polishing
3 years ago
Sam Brannen
07cfcbc3a9
Move convention-based attribute override tests to @Nested class
3 years ago
Sam Brannen
36cf1ac1ef
Apply "instanceof pattern matching" in AopProxyUtils
3 years ago
Sam Brannen
d533eb4a55
Use Set.of() in StringToBooleanConverter
3 years ago
Sam Brannen
613aac5009
Merge branch '5.3.x'
3 years ago
Sam Brannen
2af27d899f
Trim string input in Converters where whitespace is irrelevant
...
Closes gh-28756
3 years ago
Sam Brannen
b61ac6315a
Merge branch '5.3.x'
...
# Conflicts:
# spring-webmvc/src/test/java/org/springframework/web/servlet/view/freemarker/FreeMarkerMacroTests.java
3 years ago
Sam Brannen
0621a8eff1
Fix concurrency issues in FreeMarkerMacroTests
...
Prior to this commit, tests in these two classes intermittently failed
with errors similar to the following, due to concurrent modification
of shared files.
expected:
"<input type="text" id="name" name="name" value="Darren" >"
but was:
"<input type="text" id="name" name="name" value="Darren" >
"hidden"/>"
This commit fixes this by creating a new temporary folder for each test
method invocation.
3 years ago
Sam Brannen
bcfba267e9
Upgrade to TestNG 7.6.1
3 years ago
Sam Brannen
3a02872334
Merge branch '5.3.x'
3 years ago
Sam Brannen
7ac646bc96
Upgrade to TestNG Engine 1.0.4
3 years ago
Sam Brannen
264989fea5
Upgrade to JUnit 5.9 RC1
...
See gh-28752
3 years ago
Lucas Mantovani
05df491154
Fix WebClientAdapter.createHttpServiceProxyFactory() example in ref docs
...
* Remove build() call
* Add call to afterPropertiesSet()
Closes gh-28753
3 years ago
Sam Brannen
338609a168
Merge branch '5.3.x'
3 years ago
Sam Brannen
2c3243c93c
Trim string input in PropertyEditors where whitespace is irrelevant
...
Closes gh-28755
3 years ago
Sam Brannen
2bf5f7a6b3
Introduce lenient parsing in DataSize regarding whitespace
...
Prior to this commit, a DataSize input string could not be parsed if it
contained any whitespace.
With this commit, a DataSize input string can contain leading, trailing,
or 'in between' whitespace. For example, the following will be parsed
to the same DataSize value.
- "1024B"
- "1024 B"
- " 1024B "
- " 1024 B "
Closes gh-28643
3 years ago
Sam Brannen
bf39492c34
Introduce StringUtils.trimAllWhitespace(CharSequence)
...
Closes gh-28757
3 years ago
rstoyanchev
a92b4279d7
Merge branch '5.3.x'
3 years ago
rstoyanchev
007bdede46
Add missing check to avoid re-initialization
...
Noticed during review of #28736 that a check protecting against
re-initialization was accidentally removed in commit
3d6e38bb43
.
3 years ago
rstoyanchev
22cc6c5918
Polishing contribution
...
Closes gh-28736
3 years ago
CodeInDreams
461ba53b39
Qualify channelExecutor and taskScheduler in WebSocket config
...
See gh-28736
3 years ago
Sébastien Deleuze
fd265a18c6
Add runtime hints for scheduling support
...
Closes gh-28696
3 years ago
Sébastien Deleuze
b64edebadc
Improve ConstantFieldFeature compatibility
...
This commit makes ConstantFieldFeature
compatible with GraalVM 22.2 while retaining
GraalVM 22.1 compatibility.
See gh-28624
3 years ago
Sam Brannen
279f55fdfa
Polish RuntimeHintsAgentCondition
3 years ago
Sam Brannen
adb2eef749
Clean up warnings and remove unused code
3 years ago
Sam Brannen
ce5076ffe8
Merge branch '5.3.x'
3 years ago
Sam Brannen
d1d6eb095e
Fix GenericApplicationContextTests on Microsoft Windows (round 2)
...
The previous change to the tests resulted in a failure on Windows when
using the DefaultResourceLoader by expecting an exception when no
exception is thrown.
This commit narrows the scope of the if-clause to expect an exception
only when using the FileSystemResourceLoader on Windows.
See gh-28703, gh-28746
3 years ago
Sam Brannen
f732fab820
Delete unused imports and dead code in CGLIB fork
3 years ago
Sam Brannen
fda3f8201a
Switch warning level for forbidden reference to INFO in Eclipse IDE
3 years ago
Sam Brannen
94e3738a94
Merge branch '5.3.x'
...
# Conflicts:
# spring-context/src/test/java/org/springframework/context/support/GenericApplicationContextTests.java
3 years ago
Sam Brannen
e608b36713
Improve GenericApplicationContextTests.getResource*() tests
...
This commit updates the tests so that they test something meaningful on
MS Windows as well as on Linux/Mac.
See gh-28703, gh-28746
3 years ago
jason
59180e76a7
Fix GenericApplicationContextTests on Microsoft Windows
...
The tests introduced in commit 9868c28c73
pass on Mac OS and Linux but
fail on Microsoft Windows.
This commit updates the tests so that they pass on MS Windows as well.
See gh-28703
Closes gh-28746
3 years ago
Sam Brannen
b2998842af
Merge branch '5.3.x'
3 years ago
Sam Brannen
c5987d7c37
Fix typo in test
3 years ago
Johnny Lim
1205f53c4a
Polish
3 years ago
Brian Clozel
a27104a485
Polish
...
See gh-27981
3 years ago
rstoyanchev
a81ba68da1
Update remaining trailingSlashMatch default value
...
See gh-28552
3 years ago
Sébastien Deleuze
50240bb609
Add runtime hints for tx management
...
Closes gh-28688
3 years ago
Sam Brannen
729c4e5434
Merge branch '5.3.x'
3 years ago
Sam Brannen
5650e20edd
Polishing
3 years ago
rstoyanchev
a575590c01
Merge branch '5.3.x'
3 years ago