Daniel Jones opened SPR-16057 and commented
I'm trying to set up a Kotlin/Spring project using Spring Boot 2.0.0.M4 and Spring Framework 5.0.0.M4 and have ran into trouble with WebTestClient in a mocked-server test.
Essentially the following in Java works fine:
class JavaHelper {
static WebTestClient getMockWebTestClient(ApplicationContext ctx) {
return WebTestClient.bindToApplicationContext(ctx)
.apply(springSecurity())
.configureClient()
.filter(basicAuthentication())
.build();
}
}
But Kotlin is unable to infer the type T of apply method:
<T extends B> T apply(MockServerConfigurer configurer)
With the following code:
WebTestClient.bindToApplicationContext(context)
.apply(springSecurity())
.configureClient()
.filter(basicAuthentication())
.build()
The problem is to do with the generic typings, I'm still fairly new to Kotlin but if I write my test using the same package as ApplicationContextSpec (since they're package-private) and do the following, it works as expected:
(WebTestClient.bindToApplicationContext(context) as ApplicationContextSpec)
.apply<ApplicationContextSpec>(springSecurity())
.configureClient()
.filter(basicAuthentication())
.build()
I think the following:
static MockServerSpec<?> bindToApplicationContext(ApplicationContext applicationContext) {
return new ApplicationContextSpec(applicationContext);
}
should be changed to return ApplicationContextSpec (or at least AbstractMockServerSpec<ApplicationContextSpec>):
and make the class ApplicationContextSpec public. The constructor can still be default visibility so users won't be able to misuse the class outside of the defined API, and users in Kotlin will be able to import it for type inference.
Affects: 5.0 GA
Issue Links: - #20945 Upgrade to Kotlin 1.3 ("depends on") - #20251 Kotlin unable to inherit type for WebTestClient#BodySpec
Referenced from: commits https://github.com/spring-projects/spring-framework/commit/b9a0e6bbf2b6fe5f0ed222f506efc644d0d9a4f0
2 votes, 11 watchers
Comment From: spring-projects-issues
Daniel Jones commented
I've added a test repo here:
https://github.com/dan-j/kotlin-reactive-test-SPR-16057
Comment From: spring-projects-issues
Sébastien Deleuze commented
I think this is similar to #20251 which was expected to be fixed in Kotlin 1.2 via KT-5464 and similar to what Rob Winch raised as well, but was sadly postponed to Kotlin 1.3. As reported to JetBrains, this pending issue on Kotlin side makes WebTestClient not usable at all with Kotlin, and I have no other workaround to propose than using WebClient with non-mocked server for now, Reactor and Spring Kotlin extensions making that quite usable as demonstrated on this example.
For now I am going to update WebTestClient Javadoc to add a warning and a link to JetBrains issue + update our reference documentation with these infos. We will mark this issue as resolved asap we have the confirmation Kotlin 1.3 fixes this issue and our documentation has been updated to specify Kotlin 1.3+ should be used for WebTestCient.
Comment From: spring-projects-issues
Sébastien Deleuze commented
Notice that #20251 is now fixed.
Comment From: andriipivovarov
Any work around?
Comment From: noah-iam
Hey, For the similar issue , I want to share you my piece of code that is giving me same error :
.webFilter<>(myfilter) . This is saying to give the generic type here.
Error : Type expected
val client: WebTestClient = WebTestClient.bindToWebHandler { Mono.empty() } .webFilter<>(myfilter) .build()
Error : Type argument is not within its bounds. Expected: Nothing! Found: WebFilter!
@sdeleuze can you help me in this
Comment From: maresja1
@andriipivovarov Work around:
You have to re-define class MutatorFilter (it is a private static class in SecurityMockServerConfigurers):
// copy of org.springframework.security.test.web.reactive.server.SecurityMockServerConfigurers.MutatorFilter
internal class MutatorFilter : WebFilter {
override fun filter(exchange: ServerWebExchange, webFilterChain: WebFilterChain): Mono<Void> {
val context = exchange.getAttribute<Supplier<Mono<SecurityContext>>>(ATTRIBUTE_NAME)
if (context != null) {
exchange.attributes.remove(ATTRIBUTE_NAME)
return webFilterChain.filter(exchange)
.subscriberContext(ReactiveSecurityContextHolder.withSecurityContext(context.get()))
}
return webFilterChain.filter(exchange)
}
companion object {
const val ATTRIBUTE_NAME = "context"
}
}
And apply:
WebTestClient.bindToApplicationContext(context)
.configureClient()
.baseUrl("https://api.example.com")
.defaultHeader("Content-Type", MediaType.APPLICATION_JSON_VALUE)
// ...
.apply { _, httpHandlerBuilder, _ ->
httpHandlerBuilder?.filters { filters -> filters.add(0, MutatorFilter()) }
}
If anyone knows about a better way, please let me know.
Comment From: sdeleuze
This issue still happens with Kotlin 1.4.10 likely due to KT-40804 and I agree we should try to find a solution. I am discussing that with Kotlin team.
Comment From: xetra11
Any updates on this?
Comment From: sdeleuze
Both Kotlin and Spring team agreed this issue should be fixed on Kotlin side. My current hope is that it will be fixed in Kotlin 1.6 (Kotlin 1.5 is just around the corner and Kotlin has now a 6 month release cycle so that won't be too far away).
Comment From: petukhovv
Note that we (Kotlin team) supported given cases in the experimental mode in 1.5.30. In 1.5.30 the -Xself-upper-bound-inference compiler flag could be used to enabled the corresponding feature.
More information: https://youtrack.jetbrains.com/issue/KT-40804
Comment From: sdeleuze
Indeed seems to work based on my tests, thanks! I will close this issue when we will be based on Kotlin 1.6 in order to add proper test.
@petrukhnov Could you please confirm this will be the default as of Kotlin 1.6?
Comment From: petukhovv
Yes, it's going to be enabled by default since 1.6.
Comment From: sdeleuze
Depends on #27413.