@@ -177,6 +177,44 @@ await page.RouteAsync("**/non-empty.html", (route) =>
177
177
Assert . AreEqual ( "context" , await response . TextAsync ( ) ) ;
178
178
}
179
179
180
+
181
+ [ PlaywrightTest ( "browsercontext-route.spec.ts" , "should not throw on concurrent requests" ) ]
182
+ public async Task ShouldNotThrowOnConcurrentRequest ( )
183
+ {
184
+ await using var context = await Browser . NewContextAsync ( ) ;
185
+
186
+ // provide an html page which performs a high load of requests
187
+ await context . RouteAsync ( "**/empty.html" , async ( route ) =>
188
+ {
189
+ await route . FulfillAsync ( new ( )
190
+ {
191
+ Status = ( int ) HttpStatusCode . OK ,
192
+ Body = @"<script>document.addEventListener('DOMContentLoaded', async () => { while (true) { await fetch('test.json') }})</script>"
193
+ } ) ;
194
+ } ) ;
195
+
196
+ // provide a simple json to fulfill the requests
197
+ await context . RouteAsync ( "**/test.json" , async ( route ) =>
198
+ {
199
+ await route . FulfillAsync ( new ( )
200
+ {
201
+ Status = ( int ) HttpStatusCode . OK ,
202
+ Body = @"[]"
203
+ } ) ;
204
+ } ) ;
205
+
206
+
207
+ // open 10 pages to generate load on the RouteHandler
208
+ foreach ( int pageNr in Enumerable . Range ( 0 , 10 ) )
209
+ await ( await context . NewPageAsync ( ) )
210
+ . GotoAsync ( Server . EmptyPage ) ;
211
+
212
+ // let the test run for 5 second
213
+ await Task . Delay ( 5000 ) ;
214
+
215
+ // unobserved task exceptions are automatically collected by the PlaywrightTest attribute
216
+ }
217
+
180
218
[ PlaywrightTest ( "browsercontext-route.spec.ts" , "should support the times parameter with route matching" ) ]
181
219
public async Task ShouldSupportTheTimesParameterWithRouteMatching ( )
182
220
{
0 commit comments