| 
									
										
										
										
											2020-08-03 13:41:48 -07: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-02 21:07:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:32 -07:00
										 |  |  | import { browserTest as it, expect } from './config/browserTest'; | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should intercept', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07: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'); | 
					
						
							|  |  |  |     route.continue(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const response = await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(response.ok()).toBe(true); | 
					
						
							|  |  |  |   expect(intercepted).toBe(true); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should unroute', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   const context = await browser.newContext(); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   let intercepted = []; | 
					
						
							| 
									
										
										
										
											2021-07-13 20:22:01 +02:00
										 |  |  |   await context.route('**/*', route => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |     intercepted.push(1); | 
					
						
							|  |  |  |     route.continue(); | 
					
						
							| 
									
										
										
										
											2021-07-13 20:22:01 +02:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(2); | 
					
						
							|  |  |  |     route.continue(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(3); | 
					
						
							|  |  |  |     route.continue(); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2021-07-13 20:22:01 +02:00
										 |  |  |   const handler4 = route => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |     intercepted.push(4); | 
					
						
							|  |  |  |     route.continue(); | 
					
						
							| 
									
										
										
										
											2021-07-13 20:22:01 +02:00
										 |  |  |   }; | 
					
						
							|  |  |  |   await context.route('**/empty.html', handler4); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-07-13 20:22:01 +02:00
										 |  |  |   expect(intercepted).toEqual([4]); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   intercepted = []; | 
					
						
							| 
									
										
										
										
											2021-07-13 20:22:01 +02:00
										 |  |  |   await context.unroute('**/empty.html', handler4); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-07-13 20:22:01 +02:00
										 |  |  |   expect(intercepted).toEqual([3]); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   intercepted = []; | 
					
						
							|  |  |  |   await context.unroute('**/empty.html'); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-07-13 20:22:01 +02:00
										 |  |  |   expect(intercepted).toEqual([1]); | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should yield to page.route', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   const context = await browser.newContext(); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     route.fulfill({ status: 200, body: 'context' }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   await page.route('**/empty.html', route => { | 
					
						
							|  |  |  |     route.fulfill({ status: 200, body: 'page' }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const response = await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(response.ok()).toBe(true); | 
					
						
							|  |  |  |   expect(await response.text()).toBe('page'); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should fall back to context.route', async ({ browser, server }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 13:41:48 -07:00
										 |  |  |   const context = await browser.newContext(); | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     route.fulfill({ status: 200, body: 'context' }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   await page.route('**/non-empty.html', route => { | 
					
						
							|  |  |  |     route.fulfill({ status: 200, body: 'page' }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const response = await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(response.ok()).toBe(true); | 
					
						
							|  |  |  |   expect(await response.text()).toBe('context'); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 17:33:09 -08:00
										 |  |  | it('should support Set-Cookie header', async ({ contextFactory, server, browserName, browserMajorVersion }) => { | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |   it.fixme(browserName === 'webkit'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const context = await contextFactory(); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   await page.route('https://example.com/', (route, request) => { | 
					
						
							|  |  |  |     route.fulfill({ | 
					
						
							|  |  |  |       headers: { | 
					
						
							|  |  |  |         'Set-Cookie': 'name=value; domain=.example.com; Path=/' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       contentType: 'text/html', | 
					
						
							|  |  |  |       body: 'done' | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.goto('https://example.com'); | 
					
						
							| 
									
										
										
										
											2021-12-15 17:33:09 -08:00
										 |  |  |   const defaultSameSiteCookieValue = browserName === 'chromium' || (browserName === 'firefox' && browserMajorVersion >= 96) ? 'Lax' : 'None'; | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |   expect(await context.cookies()).toEqual([{ | 
					
						
							| 
									
										
										
										
											2021-12-15 17:33:09 -08:00
										 |  |  |     sameSite: defaultSameSiteCookieValue, | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |     name: 'name', | 
					
						
							|  |  |  |     value: 'value', | 
					
						
							|  |  |  |     domain: '.example.com', | 
					
						
							|  |  |  |     path: '/', | 
					
						
							|  |  |  |     expires: -1, | 
					
						
							|  |  |  |     httpOnly: false, | 
					
						
							|  |  |  |     secure: false | 
					
						
							|  |  |  |   }]); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should ignore secure Set-Cookie header for insecure requests', async ({ contextFactory, server, browserName }) => { | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |   it.fixme(browserName === 'webkit'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const context = await contextFactory(); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   await page.route('http://example.com/', (route, request) => { | 
					
						
							|  |  |  |     route.fulfill({ | 
					
						
							|  |  |  |       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([]); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-15 17:33:09 -08:00
										 |  |  | it('should use Set-Cookie header in future requests', async ({ contextFactory, server, browserName, browserMajorVersion }) => { | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |   it.fixme(browserName === 'webkit'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const context = await contextFactory(); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await page.route(server.EMPTY_PAGE, (route, request) => { | 
					
						
							|  |  |  |     route.fulfill({ | 
					
						
							|  |  |  |       headers: { | 
					
						
							|  |  |  |         'Set-Cookie': 'name=value' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       contentType: 'text/html', | 
					
						
							|  |  |  |       body: 'done' | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							| 
									
										
										
										
											2021-12-15 17:33:09 -08:00
										 |  |  |   const defaultSameSiteCookieValue = browserName === 'chromium' || (browserName === 'firefox' && browserMajorVersion >= 96) ? 'Lax' : 'None'; | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |   expect(await context.cookies()).toEqual([{ | 
					
						
							| 
									
										
										
										
											2021-12-15 17:33:09 -08:00
										 |  |  |     sameSite: defaultSameSiteCookieValue, | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07:00
										 |  |  |     name: 'name', | 
					
						
							|  |  |  |     value: 'value', | 
					
						
							|  |  |  |     domain: 'localhost', | 
					
						
							|  |  |  |     path: '/', | 
					
						
							|  |  |  |     expires: -1, | 
					
						
							|  |  |  |     httpOnly: false, | 
					
						
							|  |  |  |     secure: false | 
					
						
							|  |  |  |   }]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   let cookie = ''; | 
					
						
							|  |  |  |   server.setRoute('/foo.html', (req, res) => { | 
					
						
							|  |  |  |     cookie = req.headers.cookie; | 
					
						
							|  |  |  |     res.end(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   await page.goto(server.PREFIX + '/foo.html'); | 
					
						
							|  |  |  |   expect(cookie).toBe('name=value'); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should work with ignoreHTTPSErrors', async ({ browser, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2021-05-05 19:10:28 -07: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); | 
					
						
							|  |  |  |   expect(response.status()).toBe(200); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-08-24 20:45:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should support the times parameter with route matching', async ({ context, page, server }) => { | 
					
						
							| 
									
										
										
										
											2021-08-24 20:45:50 +02:00
										 |  |  |   const intercepted = []; | 
					
						
							|  |  |  |   await context.route('**/empty.html', route => { | 
					
						
							|  |  |  |     intercepted.push(1); | 
					
						
							|  |  |  |     route.continue(); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   }, { times: 1 }); | 
					
						
							| 
									
										
										
										
											2021-08-24 20:45:50 +02:00
										 |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(intercepted).toHaveLength(1); | 
					
						
							|  |  |  | }); |