| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Copyright 2018 Google Inc. All rights reserved. | 
					
						
							|  |  |  |  * Modifications copyright (c) Microsoft Corporation. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2021-04-03 12:07:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-26 07:05:50 +08:00
										 |  |  | import { browserTest as it, expect } from '../config/browserTest'; | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  | import type { Route } from '@playwright/test'; | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 00:58:08 +08:00
										 |  |  | it('should intercept', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   const context = await browser.newContext(); | 
					
						
							|  |  |  |   let intercepted = false; | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted = true; | 
					
						
							|  |  |  |     const request = route.request(); | 
					
						
							|  |  |  |     expect(request.url()).toContain('empty.html'); | 
					
						
							|  |  |  |     expect(request.headers()['user-agent']).toBeTruthy(); | 
					
						
							|  |  |  |     expect(request.method()).toBe('GET'); | 
					
						
							|  |  |  |     expect(request.postData()).toBe(null); | 
					
						
							|  |  |  |     expect(request.isNavigationRequest()).toBe(true); | 
					
						
							|  |  |  |     expect(request.resourceType()).toBe('document'); | 
					
						
							|  |  |  |     expect(request.frame() === page.mainFrame()).toBe(true); | 
					
						
							|  |  |  |     expect(request.frame().url()).toBe('about:blank'); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.continue(); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const response = await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   expect(response!.ok()).toBe(true); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   expect(intercepted).toBe(true); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 00:58:08 +08:00
										 |  |  | it('should unroute', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   const context = await browser.newContext(); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   let intercepted: number[] = []; | 
					
						
							| 
									
										
										
										
											2021-07-14 02:22:01 +08:00
										 |  |  |   await context.route('**/*', route => { | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |     intercepted.push(1); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2021-07-14 02:22:01 +08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(2); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(3); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   const handler4 = (route: Route) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |     intercepted.push(4); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2021-07-14 02:22:01 +08:00
										 |  |  |   }; | 
					
						
							| 
									
										
										
										
											2023-05-18 07:27:32 +08:00
										 |  |  |   await context.route(/empty.html/, handler4); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   expect(intercepted).toEqual([4, 3, 2, 1]); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   intercepted = []; | 
					
						
							| 
									
										
										
										
											2023-05-18 07:27:32 +08:00
										 |  |  |   await context.unroute(/empty.html/, handler4); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   expect(intercepted).toEqual([3, 2, 1]); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   intercepted = []; | 
					
						
							|  |  |  |   await context.unroute('**/empty.html'); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-07-14 02:22:01 +08:00
										 |  |  |   expect(intercepted).toEqual([1]); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 00:58:08 +08:00
										 |  |  | it('should yield to page.route', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   const context = await browser.newContext(); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fulfill({ status: 200, body: 'context' }); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   await page.route('**/empty.html', route => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fulfill({ status: 200, body: 'page' }); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   const response = (await page.goto(server.EMPTY_PAGE))!; | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   expect(response.ok()).toBe(true); | 
					
						
							|  |  |  |   expect(await response.text()).toBe('page'); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 00:58:08 +08:00
										 |  |  | it('should fall back to context.route', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   const context = await browser.newContext(); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fulfill({ status: 200, body: 'context' }); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   await page.route('**/non-empty.html', route => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fulfill({ status: 200, body: 'page' }); | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   const response = (await page.goto(server.EMPTY_PAGE))!; | 
					
						
							| 
									
										
										
										
											2020-08-04 04:41:48 +08:00
										 |  |  |   expect(response.ok()).toBe(true); | 
					
						
							|  |  |  |   expect(await response.text()).toBe('context'); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-30 08:20:38 +08:00
										 |  |  | it('should support Set-Cookie header', async ({ contextFactory, defaultSameSiteCookieValue }) => { | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |   const context = await contextFactory(); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   await page.route('https://example.com/', (route, request) => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fulfill({ | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |       headers: { | 
					
						
							|  |  |  |         'Set-Cookie': 'name=value; domain=.example.com; Path=/' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       contentType: 'text/html', | 
					
						
							|  |  |  |       body: 'done' | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.goto('https://example.com'); | 
					
						
							|  |  |  |   expect(await context.cookies()).toEqual([{ | 
					
						
							| 
									
										
										
										
											2021-12-16 09:33:09 +08:00
										 |  |  |     sameSite: defaultSameSiteCookieValue, | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |     name: 'name', | 
					
						
							|  |  |  |     value: 'value', | 
					
						
							|  |  |  |     domain: '.example.com', | 
					
						
							|  |  |  |     path: '/', | 
					
						
							|  |  |  |     expires: -1, | 
					
						
							|  |  |  |     httpOnly: false, | 
					
						
							|  |  |  |     secure: false | 
					
						
							|  |  |  |   }]); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 00:58:08 +08:00
										 |  |  | it('should ignore secure Set-Cookie header for insecure requests', async ({ contextFactory, server, browserName }) => { | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |   it.fixme(browserName === 'webkit'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const context = await contextFactory(); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   await page.route('http://example.com/', (route, request) => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fulfill({ | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |       headers: { | 
					
						
							|  |  |  |         'Set-Cookie': 'name=value; domain=.example.com; Path=/; Secure' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       contentType: 'text/html', | 
					
						
							|  |  |  |       body: 'done' | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.goto('http://example.com'); | 
					
						
							|  |  |  |   expect(await context.cookies()).toEqual([]); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-30 08:20:38 +08:00
										 |  |  | it('should use Set-Cookie header in future requests', async ({ contextFactory, server, defaultSameSiteCookieValue }) => { | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |   const context = await contextFactory(); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await page.route(server.EMPTY_PAGE, (route, request) => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fulfill({ | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |       headers: { | 
					
						
							|  |  |  |         'Set-Cookie': 'name=value' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       contentType: 'text/html', | 
					
						
							|  |  |  |       body: 'done' | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(await context.cookies()).toEqual([{ | 
					
						
							| 
									
										
										
										
											2021-12-16 09:33:09 +08:00
										 |  |  |     sameSite: defaultSameSiteCookieValue, | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |     name: 'name', | 
					
						
							|  |  |  |     value: 'value', | 
					
						
							| 
									
										
										
										
											2025-07-03 21:51:32 +08:00
										 |  |  |     domain: server.HOSTNAME, | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |     path: '/', | 
					
						
							|  |  |  |     expires: -1, | 
					
						
							|  |  |  |     httpOnly: false, | 
					
						
							|  |  |  |     secure: false | 
					
						
							|  |  |  |   }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   let cookie = ''; | 
					
						
							|  |  |  |   server.setRoute('/foo.html', (req, res) => { | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |     cookie = req.headers.cookie!; | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |     res.end(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.goto(server.PREFIX + '/foo.html'); | 
					
						
							|  |  |  |   expect(cookie).toBe('name=value'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 00:58:08 +08:00
										 |  |  | it('should work with ignoreHTTPSErrors', async ({ browser, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |   const context = await browser.newContext({ ignoreHTTPSErrors: true }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await page.route('**/*', route => route.continue()); | 
					
						
							|  |  |  |   const response = await page.goto(httpsServer.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   expect(response!.status()).toBe(200); | 
					
						
							| 
									
										
										
										
											2021-05-06 10:10:28 +08:00
										 |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-08-25 02:45:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-28 00:58:08 +08:00
										 |  |  | it('should support the times parameter with route matching', async ({ context, page, server }) => { | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   const intercepted: number[] = []; | 
					
						
							| 
									
										
										
										
											2021-08-25 02:45:50 +08:00
										 |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(1); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.continue(); | 
					
						
							| 
									
										
										
										
											2021-09-28 00:58:08 +08:00
										 |  |  |   }, { times: 1 }); | 
					
						
							| 
									
										
										
										
											2021-08-25 02:45:50 +08:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(intercepted).toHaveLength(1); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2022-01-25 07:06:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-11-29 09:52:16 +08:00
										 |  |  | it('should work if handler with times parameter was removed from another handler', async ({ context, page, server }) => { | 
					
						
							|  |  |  |   const intercepted = []; | 
					
						
							|  |  |  |   const handler = async route => { | 
					
						
							|  |  |  |     intercepted.push('first'); | 
					
						
							|  |  |  |     void route.continue(); | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  |   await context.route('**/*', handler, { times: 1 }); | 
					
						
							|  |  |  |   await context.route('**/*', async route => { | 
					
						
							|  |  |  |     intercepted.push('second'); | 
					
						
							|  |  |  |     await context.unroute('**/*', handler); | 
					
						
							|  |  |  |     await route.fallback(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(intercepted).toEqual(['second']); | 
					
						
							|  |  |  |   intercepted.length = 0; | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(intercepted).toEqual(['second']); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-22 12:55:46 +08:00
										 |  |  | it('should support async handler w/ times', async ({ context, page, server }) => { | 
					
						
							|  |  |  |   await context.route('**/empty.html', async route => { | 
					
						
							|  |  |  |     await new Promise(f => setTimeout(f, 100)); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fulfill({ | 
					
						
							| 
									
										
										
										
											2022-05-22 12:55:46 +08:00
										 |  |  |       body: '<html>intercepted</html>', | 
					
						
							|  |  |  |       contentType: 'text/html' | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }, { times: 1 }); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await expect(page.locator('body')).toHaveText('intercepted'); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await expect(page.locator('body')).not.toHaveText('intercepted'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-25 07:06:36 +08:00
										 |  |  | it('should overwrite post body with empty string', async ({ context, server, page, browserName }) => { | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.continue({ | 
					
						
							| 
									
										
										
										
											2022-01-25 07:06:36 +08:00
										 |  |  |       postData: '', | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const [req] = await Promise.all([ | 
					
						
							|  |  |  |     server.waitForRequest('/empty.html'), | 
					
						
							|  |  |  |     page.setContent(`
 | 
					
						
							|  |  |  |       <script> | 
					
						
							|  |  |  |         (async () => { | 
					
						
							|  |  |  |             await fetch('${server.EMPTY_PAGE}', { | 
					
						
							|  |  |  |               method: 'POST', | 
					
						
							|  |  |  |               body: 'original', | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |         })() | 
					
						
							|  |  |  |       </script> | 
					
						
							|  |  |  |     `),
 | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const body = (await req.postBody).toString(); | 
					
						
							|  |  |  |   expect(body).toBe(''); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-14 03:30:51 +08:00
										 |  |  | it('should chain fallback', async ({ context, page, server }) => { | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   const intercepted: number[] = []; | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(1); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(2); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(3); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(intercepted).toEqual([3, 2, 1]); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-25 01:48:16 +08:00
										 |  |  | it('should chain fallback w/ dynamic URL', async ({ context, page, server }) => { | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   const intercepted: number[] = []; | 
					
						
							| 
									
										
										
										
											2022-06-25 01:48:16 +08:00
										 |  |  |   await context.route('**/bar', route => { | 
					
						
							|  |  |  |     intercepted.push(1); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback({ url: server.EMPTY_PAGE }); | 
					
						
							| 
									
										
										
										
											2022-06-25 01:48:16 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/foo', route => { | 
					
						
							|  |  |  |     intercepted.push(2); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback({ url: 'http://localhost/bar' }); | 
					
						
							| 
									
										
										
										
											2022-06-25 01:48:16 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(3); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback({ url: 'http://localhost/foo' }); | 
					
						
							| 
									
										
										
										
											2022-06-25 01:48:16 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(intercepted).toEqual([3, 2, 1]); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  | it('should not chain fulfill', async ({ context, page, server }) => { | 
					
						
							|  |  |  |   let failed = false; | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     failed = true; | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fulfill({ status: 200, body: 'fulfilled' }); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   const response = await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   const body = await response!.body(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   expect(body.toString()).toEqual('fulfilled'); | 
					
						
							|  |  |  |   expect(failed).toBeFalsy(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | it('should not chain abort', async ({ context, page, server }) => { | 
					
						
							|  |  |  |   let failed = false; | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     failed = true; | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.abort(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   const e = await page.goto(server.EMPTY_PAGE).catch(e => e); | 
					
						
							|  |  |  |   expect(e).toBeTruthy(); | 
					
						
							|  |  |  |   expect(failed).toBeFalsy(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-14 03:30:51 +08:00
										 |  |  | it('should chain fallback into page', async ({ context, page, server }) => { | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   const intercepted: number[] = []; | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(1); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(2); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(3); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await page.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(4); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await page.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(5); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await page.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(6); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-11 00:06:39 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(intercepted).toEqual([6, 5, 4, 3, 2, 1]); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2022-06-22 07:53:36 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | it('should fall back async', async ({ page, context, server }) => { | 
					
						
							| 
									
										
										
										
											2023-10-24 00:31:30 +08:00
										 |  |  |   const intercepted: number[] = []; | 
					
						
							| 
									
										
										
										
											2022-06-22 07:53:36 +08:00
										 |  |  |   await context.route('**/empty.html', async route => { | 
					
						
							|  |  |  |     intercepted.push(1); | 
					
						
							|  |  |  |     await new Promise(r => setTimeout(r, 100)); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-22 07:53:36 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', async route => { | 
					
						
							|  |  |  |     intercepted.push(2); | 
					
						
							|  |  |  |     await new Promise(r => setTimeout(r, 100)); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-22 07:53:36 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', async route => { | 
					
						
							|  |  |  |     intercepted.push(3); | 
					
						
							|  |  |  |     await new Promise(r => setTimeout(r, 100)); | 
					
						
							| 
									
										
										
										
											2023-06-03 03:59:12 +08:00
										 |  |  |     void route.fallback(); | 
					
						
							| 
									
										
										
										
											2022-06-22 07:53:36 +08:00
										 |  |  |   }); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(intercepted).toEqual([3, 2, 1]); | 
					
						
							|  |  |  | }); |