49
49
import org .springframework .web .reactive .function .server .ServerRequest ;
50
50
import org .springframework .web .reactive .function .server .ServerResponse ;
51
51
import org .springframework .web .testfixture .http .server .reactive .bootstrap .HttpServer ;
52
- import org .springframework .web .testfixture .http .server .reactive .bootstrap .ReactorNetty2HttpServer ;
53
52
import org .springframework .web .testfixture .http .server .reactive .bootstrap .UndertowHttpServer ;
54
53
55
54
import static org .assertj .core .api .Assertions .assertThat ;
@@ -69,9 +68,6 @@ class MultipartRouterFunctionIntegrationTests extends AbstractRouterFunctionInte
69
68
70
69
@ ParameterizedHttpServerTest
71
70
void multipartData (HttpServer httpServer ) throws Exception {
72
- // TODO Determine why Reactor Netty 2 fails: https://github.com/spring-projects/spring-framework/issues/31110
73
- assumeFalse (httpServer instanceof ReactorNetty2HttpServer , "Potential bug in Netty 5 multipart support" );
74
-
75
71
startServer (httpServer );
76
72
77
73
Mono <ResponseEntity <Void >> result = webClient
@@ -90,9 +86,6 @@ void multipartData(HttpServer httpServer) throws Exception {
90
86
91
87
@ ParameterizedHttpServerTest
92
88
void parts (HttpServer httpServer ) throws Exception {
93
- // TODO Determine why Reactor Netty 2 fails: https://github.com/spring-projects/spring-framework/issues/31110
94
- assumeFalse (httpServer instanceof ReactorNetty2HttpServer , "Potential bug in Netty 5 multipart support" );
95
-
96
89
startServer (httpServer );
97
90
98
91
Mono <ResponseEntity <Void >> result = webClient
@@ -113,9 +106,6 @@ void parts(HttpServer httpServer) throws Exception {
113
106
void transferTo (HttpServer httpServer ) throws Exception {
114
107
// TODO Determine why Undertow fails: https://github.com/spring-projects/spring-framework/issues/25310
115
108
assumeFalse (httpServer instanceof UndertowHttpServer , "Undertow currently fails with transferTo" );
116
- // TODO Determine why Reactor Netty 2 fails: https://github.com/spring-projects/spring-framework/issues/31110
117
- assumeFalse (httpServer instanceof ReactorNetty2HttpServer , "Potential bug in Netty 5 multipart support" );
118
-
119
109
verifyTransferTo (httpServer );
120
110
}
121
111
@@ -154,9 +144,6 @@ private void verifyTransferTo(HttpServer httpServer) throws Exception {
154
144
155
145
@ ParameterizedHttpServerTest
156
146
void partData (HttpServer httpServer ) throws Exception {
157
- // TODO Determine why Reactor Netty 2 fails: https://github.com/spring-projects/spring-framework/issues/31110
158
- assumeFalse (httpServer instanceof ReactorNetty2HttpServer , "Potential bug in Netty 5 multipart support" );
159
-
160
147
startServer (httpServer );
161
148
162
149
Mono <ResponseEntity <Void >> result = webClient
@@ -176,9 +163,6 @@ void partData(HttpServer httpServer) throws Exception {
176
163
@ ParameterizedHttpServerTest
177
164
void proxy (HttpServer httpServer ) throws Exception {
178
165
assumeFalse (httpServer instanceof UndertowHttpServer , "Undertow currently fails proxying requests" );
179
- // TODO Determine why Reactor Netty 2 fails: https://github.com/spring-projects/spring-framework/issues/31110
180
- assumeFalse (httpServer instanceof ReactorNetty2HttpServer , "Potential bug in Netty 5 multipart support" );
181
-
182
166
startServer (httpServer );
183
167
184
168
Mono <ResponseEntity <Void >> result = webClient
0 commit comments