60
60
import org .springframework .web .server .adapter .WebHttpHandlerBuilder ;
61
61
import org .springframework .web .testfixture .http .server .reactive .bootstrap .AbstractHttpHandlerIntegrationTests ;
62
62
import org .springframework .web .testfixture .http .server .reactive .bootstrap .HttpServer ;
63
- import org .springframework .web .testfixture .http .server .reactive .bootstrap .TomcatHttpServer ;
64
63
import org .springframework .web .testfixture .http .server .reactive .bootstrap .UndertowHttpServer ;
65
64
66
65
import static org .assertj .core .api .Assertions .assertThat ;
@@ -88,8 +87,6 @@ protected void startServer(HttpServer httpServer) throws Exception {
88
87
89
88
@ ParameterizedHttpServerTest
90
89
void requestPart (HttpServer httpServer ) throws Exception {
91
- assumeFalse (httpServer instanceof TomcatHttpServer ,
92
- "TomcatHttpServer fails with invalid request body chunk" );
93
90
startServer (httpServer );
94
91
95
92
Mono <ResponseEntity <Void >> result = webClient
@@ -107,8 +104,6 @@ void requestPart(HttpServer httpServer) throws Exception {
107
104
108
105
@ ParameterizedHttpServerTest
109
106
void requestBodyMap (HttpServer httpServer ) throws Exception {
110
- assumeFalse (httpServer instanceof TomcatHttpServer ,
111
- "TomcatHttpServer fails with invalid request body chunk" );
112
107
startServer (httpServer );
113
108
114
109
Mono <String > result = webClient
@@ -125,8 +120,6 @@ void requestBodyMap(HttpServer httpServer) throws Exception {
125
120
126
121
@ ParameterizedHttpServerTest
127
122
void requestBodyFlux (HttpServer httpServer ) throws Exception {
128
- assumeFalse (httpServer instanceof TomcatHttpServer ,
129
- "TomcatHttpServer fails with invalid request body chunk" );
130
123
startServer (httpServer );
131
124
132
125
Mono <String > result = webClient
@@ -143,8 +136,6 @@ void requestBodyFlux(HttpServer httpServer) throws Exception {
143
136
144
137
@ ParameterizedHttpServerTest
145
138
void filePartsFlux (HttpServer httpServer ) throws Exception {
146
- assumeFalse (httpServer instanceof TomcatHttpServer ,
147
- "TomcatHttpServer fails with invalid request body chunk" );
148
139
startServer (httpServer );
149
140
150
141
Mono <String > result = webClient
@@ -161,8 +152,6 @@ void filePartsFlux(HttpServer httpServer) throws Exception {
161
152
162
153
@ ParameterizedHttpServerTest
163
154
void filePartsMono (HttpServer httpServer ) throws Exception {
164
- assumeFalse (httpServer instanceof TomcatHttpServer ,
165
- "TomcatHttpServer fails with invalid request body chunk" );
166
155
startServer (httpServer );
167
156
168
157
Mono <String > result = webClient
@@ -179,8 +168,6 @@ void filePartsMono(HttpServer httpServer) throws Exception {
179
168
180
169
@ ParameterizedHttpServerTest
181
170
void transferTo (HttpServer httpServer ) throws Exception {
182
- assumeFalse (httpServer instanceof TomcatHttpServer ,
183
- "TomcatHttpServer fails with invalid request body chunk" );
184
171
// TODO Determine why Undertow fails: https://github.com/spring-projects/spring-framework/issues/25310
185
172
assumeFalse (httpServer instanceof UndertowHttpServer , "Undertow currently fails with transferTo" );
186
173
startServer (httpServer );
@@ -201,8 +188,6 @@ void transferTo(HttpServer httpServer) throws Exception {
201
188
202
189
@ ParameterizedHttpServerTest
203
190
void modelAttribute (HttpServer httpServer ) throws Exception {
204
- assumeFalse (httpServer instanceof TomcatHttpServer ,
205
- "TomcatHttpServer fails with invalid request body chunk" );
206
191
startServer (httpServer );
207
192
208
193
Mono <String > result = webClient
@@ -219,8 +204,6 @@ void modelAttribute(HttpServer httpServer) throws Exception {
219
204
220
205
@ ParameterizedHttpServerTest
221
206
void partData (HttpServer httpServer ) throws Exception {
222
- assumeFalse (httpServer instanceof TomcatHttpServer ,
223
- "TomcatHttpServer fails with invalid request body chunk" );
224
207
startServer (httpServer );
225
208
226
209
Mono <String > result = webClient
0 commit comments