Stephane Nicoll
282bd9f0db
Only create a WebTestClient with WebFlux
...
This commit updates WebTestClientAutoConfiguration to only create a
WebTestClient when running a WebFlux-based application as mocking the
context only works with that mode at the moment.
Closes gh-12318
7 years ago
dreis2211
0d3f3e46dd
Fix typos
...
Closes gh-12468
7 years ago
Madhura Bhave
4ca1e6ae4e
Polish "Fix typo in TestDatabaseAutoConfiguration"
...
Closes gh-12350
7 years ago
inabajunmr
ddd8598e2e
Fix typo in TestDatabaseAutoConfiguration failure msg
...
See gh-12350
7 years ago
Phillip Webb
9bee9e9cf9
Polish
7 years ago
Madhura Bhave
df337eaf5e
Fix author name
7 years ago
Phillip Webb
7bc535e4fa
Polish
7 years ago
Phillip Webb
67998e983f
Revert "Include WebSecurityConfigurer beans in @WebMvcTest"
...
This reverts commit eef6fdb066
.
7 years ago
Phillip Webb
eef6fdb066
Include WebSecurityConfigurer beans in @WebMvcTest
...
Update `WebMvcTypeExcludeFilter` to include `WebSecurityConfigurer`
beans.
Fixes gh-12275
7 years ago
Stephane Nicoll
306c79f0de
Merge branch '1.5.x'
7 years ago
Phillip Webb
4b9c3c137e
Polish Collection.toArray
...
Consistently use `StringUtils.toStringArray`, `ClassUtils.toClassArray`
or zero length when converting collections to arrays.
Fixes gh-12160
7 years ago
igor-suhorukov
fe023817c7
Polish static finals
...
Closes gh-12083
7 years ago
Andy Wilkinson
5522174e96
Provide package info for all packages included in javadoc
7 years ago
Andy Wilkinson
76a450dfba
Format with Eclipse Oxygen SR2
7 years ago
Madhura Bhave
7136bed126
Fix tests
7 years ago
Andy Wilkinson
875091ed85
Polish “Remove or use unused method parameters”
...
Closes gh-11812
7 years ago
Andy Wilkinson
458dde63a8
Explicitly order AbstractTestExecutionListener subclasses
...
By default, AbstractTestExecutionListeners have an order of lowest
precedence. This means that it is impossible to write a listener with
lower precedence that any listener that's using the default order.
This commit updates Boot's 6 AbstractTestExecutionListeners to order
them explicitly. MockitoTestExecutionListener performs injection of
Mockito mocks and spies into the test instance. It now has an order of
2050 giving it slightly lower precedence than the dependency injection
test execution listener (2000).
The remaining 5 listeners have all been ordered with lowest precedence
- 100. This leaves them near their current lowest precedence position
while creating some room for any listeners that require lower
precedence.
Closes gh-11796
7 years ago
Stephane Nicoll
3f1aaa1f7e
Polish contribution
...
Closes gh-11783
7 years ago
Raja Kolli
64c324612e
Polish
...
See gh-11783
7 years ago
Phillip Webb
dc935fba48
Polish
7 years ago
Madhura Bhave
5e2cc02499
Move servlet specific security auto-config
7 years ago
Phillip Webb
b078698f20
Update copyright year of changed files
7 years ago
Phillip Webb
b9bb31cfd4
Extract RestDocsProperties
...
Extract properties used by RestDocs to their own class.
7 years ago
Andy Wilkinson
964939d3a9
Polish "Add auto-configuration for using REST Docs with WebTestClient"
...
Closes gh-10696
7 years ago
Roman Zaynetdinov
ab7c47d340
Add auto-configuration for using REST Docs with WebTestClient
...
See gh-10969
7 years ago
Andy Wilkinson
16c52bce84
Introduce WebTestClientBuilderCustomizer callback
...
Closes gh-11579
7 years ago
Johnny Lim
b8706c47d6
Use instance equality for Class
...
Closes gh-11534
7 years ago
Phillip Webb
201da97774
Further refine test containers
7 years ago
Phillip Webb
25609c060e
Polish
7 years ago
Madhura Bhave
9a6c339243
Use TestContainers util from spring-boot-test-support
...
See gh-10516
7 years ago
Andy Wilkinson
996b3ef7f2
Refine test containers
7 years ago
Andy Wilkinson
927003e0b7
Polish
7 years ago
Andy Wilkinson
94d5836618
Merge branch '1.5.x'
7 years ago
Stephane Nicoll
ac004eabf3
Update copyright header
...
See gh-11510
7 years ago
Johnny Lim
37d8eedae3
Polish
...
Closes gh-11510
7 years ago
Madhura Bhave
fc3b43e832
Wait for neo4j to start accepting connections
...
See gh-10516
7 years ago
Madhura Bhave
e28915bd4b
Make integration tests self-contained
...
Fixes gh-10516
7 years ago
Madhura Bhave
8102dc78cb
Remove redundant throws declarations
7 years ago
Phillip Webb
2efa21c570
Make hot methods in-line friendly
...
Refactor a few hot methods so that they are more likely to be in-lined
by the JIT.
Fixes gh-11409
7 years ago
Phillip Webb
3273859fde
Polish
7 years ago
Stephane Nicoll
47c8b5731a
polish
7 years ago
Stephane Nicoll
7216a8fa38
Polish
...
See gh-11341
7 years ago
Stephane Nicoll
23218add90
Polish
7 years ago
Madhura Bhave
47ed096981
Make default username and password configurable
...
Closes gh-10963
7 years ago
Brian Clozel
deb16e1617
Polish
7 years ago
Stephane Nicoll
5ef9364085
Polish
7 years ago
Johnny Lim
6d54072e04
Remove "final" keywords
...
Closes gh-11294
7 years ago
Stephane Nicoll
1620ac42b3
Polish contribution
...
Closes gh-11143
7 years ago
Johnny Lim
d9828a0aaa
Polish
...
See gh-11143
7 years ago
Kazuki Shimizu
bd8834568d
Add @Inherited on spring-boot-test-autoconfigure
...
Closes gh-11139
7 years ago
Andy Wilkinson
61f9d240df
Polish
7 years ago
Johnny Lim
1783a072ad
Remove explicit constructor super() calls
...
Closes gh-11068
7 years ago
Stephane Nicoll
1830dcf103
Rename AutoConfigurationReportEndpoint to ConditionsEndpoint
...
This commit further aligns the change to ConditionEvaluationReport by
renaming the 'autoconfig' endpoint to 'conditions'.
Closes gh-2945
7 years ago
Stephane Nicoll
4e88db9883
Scan converters with @WebMvcTest and @WebFluxTest
...
This commit makes sure to automatically scan `Converter` and
`GenericConverter` beans when a test uses `@WebMvcTest` or
`@WebFluxTest`.
Closes gh-10802
7 years ago
Johnny Lim
bd0dcfb172
Utilize StandardCharsets
...
Closes gh-10972
7 years ago
Andy Wilkinson
60afbdc868
Polish
7 years ago
Johnny Lim
c05a299520
Polish
...
Closes gh-10921
7 years ago
Phillip Webb
c55b5d7111
Polish
7 years ago
Stephane Nicoll
d408ce2d42
Merge branch '1.5.x'
7 years ago
Andy Wilkinson
66b55defa0
Adapt to password encoder changes in Spring Security
...
Closes gh-10762
7 years ago
Andy Wilkinson
a256602c7b
Polish
7 years ago
Madhura Bhave
80b5da78a1
Fix test failures
7 years ago
Andy Wilkinson
688da652ac
Polish
7 years ago
Phillip Webb
748e0779b6
Update copyright year for changed files
7 years ago
Phillip Webb
a9263998a1
Support custom WebTestClient timeouts
...
Update @AutoConfigureWebTestClient to support a custom `timeout`
option.
See gh-10555
7 years ago
Phillip Webb
b87f9c11f1
Fix POMs for the updated build/release process
...
Fix POMs following project relocations and apply CI friendly Maven
conventions.
See gh-9316
7 years ago
Phillip Webb
0ba4830b4f
Relocate projects to spring-boot-project
...
Move projects to better reflect the way that Spring Boot is released.
The following projects are under `spring-boot-project`:
- `spring-boot`
- `spring-boot-autoconfigure`
- `spring-boot-tools`
- `spring-boot-starters`
- `spring-boot-actuator`
- `spring-boot-actuator-autoconfigure`
- `spring-boot-test`
- `spring-boot-test-autoconfigure`
- `spring-boot-devtools`
- `spring-boot-cli`
- `spring-boot-docs`
See gh-9316
7 years ago