| 
									
										
										
										
											2021-05-14 01:29:14 +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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { browserTest as it, expect } from './config/browserTest'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 19:05:29 +08:00
										 |  |  | it('BrowserContext.Events.Request', async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-05-14 01:29:14 +08:00
										 |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const requests = []; | 
					
						
							|  |  |  |   context.on('request', request => requests.push(request)); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.setContent('<a target=_blank rel=noopener href="/one-style.html">yo</a>'); | 
					
						
							|  |  |  |   const [page1] = await Promise.all([ | 
					
						
							|  |  |  |     context.waitForEvent('page'), | 
					
						
							|  |  |  |     page.click('a'), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   await page1.waitForLoadState(); | 
					
						
							|  |  |  |   const urls = requests.map(r => r.url()); | 
					
						
							|  |  |  |   expect(urls).toEqual([ | 
					
						
							|  |  |  |     server.EMPTY_PAGE, | 
					
						
							|  |  |  |     `${server.PREFIX}/one-style.html`, | 
					
						
							|  |  |  |     `${server.PREFIX}/one-style.css` | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 19:05:29 +08:00
										 |  |  | it('BrowserContext.Events.Response', async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-05-14 01:29:14 +08:00
										 |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const responses = []; | 
					
						
							|  |  |  |   context.on('response', response => responses.push(response)); | 
					
						
							|  |  |  |   await page.goto(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   await page.setContent('<a target=_blank rel=noopener href="/one-style.html">yo</a>'); | 
					
						
							|  |  |  |   const [page1] = await Promise.all([ | 
					
						
							|  |  |  |     context.waitForEvent('page'), | 
					
						
							|  |  |  |     page.click('a'), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   await page1.waitForLoadState(); | 
					
						
							|  |  |  |   const urls = responses.map(r => r.url()); | 
					
						
							|  |  |  |   expect(urls).toEqual([ | 
					
						
							|  |  |  |     server.EMPTY_PAGE, | 
					
						
							|  |  |  |     `${server.PREFIX}/one-style.html`, | 
					
						
							|  |  |  |     `${server.PREFIX}/one-style.css` | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 19:05:29 +08:00
										 |  |  | it('BrowserContext.Events.RequestFailed', async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-05-14 01:29:14 +08:00
										 |  |  |   server.setRoute('/one-style.css', (_, res) => { | 
					
						
							|  |  |  |     res.setHeader('Content-Type', 'text/css'); | 
					
						
							|  |  |  |     res.connection.destroy(); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const failedRequests = []; | 
					
						
							|  |  |  |   context.on('requestfailed', request => failedRequests.push(request)); | 
					
						
							|  |  |  |   await page.goto(server.PREFIX + '/one-style.html'); | 
					
						
							|  |  |  |   expect(failedRequests.length).toBe(1); | 
					
						
							|  |  |  |   expect(failedRequests[0].url()).toContain('one-style.css'); | 
					
						
							|  |  |  |   expect(await failedRequests[0].response()).toBe(null); | 
					
						
							|  |  |  |   expect(failedRequests[0].resourceType()).toBe('stylesheet'); | 
					
						
							|  |  |  |   expect(failedRequests[0].frame()).toBeTruthy(); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 19:05:29 +08:00
										 |  |  | it('BrowserContext.Events.RequestFinished', async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-05-14 01:29:14 +08:00
										 |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const [response] = await Promise.all([ | 
					
						
							|  |  |  |     page.goto(server.EMPTY_PAGE), | 
					
						
							|  |  |  |     context.waitForEvent('requestfinished') | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   const request = response.request(); | 
					
						
							|  |  |  |   expect(request.url()).toBe(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(await request.response()).toBeTruthy(); | 
					
						
							|  |  |  |   expect(request.frame() === page.mainFrame()).toBe(true); | 
					
						
							|  |  |  |   expect(request.frame().url()).toBe(server.EMPTY_PAGE); | 
					
						
							|  |  |  |   expect(request.failure()).toBe(null); | 
					
						
							|  |  |  | }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 19:05:29 +08:00
										 |  |  | it('should fire events in proper order', async ({context, server}) => { | 
					
						
							| 
									
										
										
										
											2021-05-14 01:29:14 +08:00
										 |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const events = []; | 
					
						
							|  |  |  |   context.on('request', () => events.push('request')); | 
					
						
							|  |  |  |   context.on('response', () => events.push('response')); | 
					
						
							|  |  |  |   context.on('requestfinished', () => events.push('requestfinished')); | 
					
						
							|  |  |  |   await Promise.all([ | 
					
						
							|  |  |  |     page.goto(server.EMPTY_PAGE), | 
					
						
							|  |  |  |     context.waitForEvent('requestfinished') | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  |   expect(events).toEqual([ | 
					
						
							|  |  |  |     'request', | 
					
						
							|  |  |  |     'response', | 
					
						
							|  |  |  |     'requestfinished', | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2021-09-02 23:31:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-07 19:05:29 +08:00
										 |  |  | it('should not fire events for favicon or favicon redirects', async ({context, page, server, browserName, channel, headless}) => { | 
					
						
							| 
									
										
										
										
											2021-09-02 23:31:25 +08:00
										 |  |  |   it.skip(headless && browserName !== 'firefox', 'headless browsers, except firefox, do not request favicons'); | 
					
						
							|  |  |  |   it.skip(!headless && browserName === 'webkit' && !channel, 'headed webkit does not have a favicon feature'); | 
					
						
							| 
									
										
										
										
											2021-09-07 19:05:29 +08:00
										 |  |  |   const favicon = `/no-cache/favicon.ico`; | 
					
						
							| 
									
										
										
										
											2021-09-02 23:31:25 +08:00
										 |  |  |   const hashedFaviconUrl = `/favicon-hashed.ico`; | 
					
						
							|  |  |  |   const imagePath = `/fakeimage.png`; | 
					
						
							|  |  |  |   const pagePath = `/page.html`; | 
					
						
							|  |  |  |   server.setRedirect(favicon, hashedFaviconUrl); | 
					
						
							|  |  |  |   server.setRoute(pagePath, (_, res) => { | 
					
						
							|  |  |  |     res.end(`
 | 
					
						
							|  |  |  |       <!DOCTYPE html> | 
					
						
							|  |  |  |       <html> | 
					
						
							|  |  |  |         <head> | 
					
						
							|  |  |  |           <meta charset="utf-8"> | 
					
						
							|  |  |  |           <link rel="icon" type="image/svg+xml" href="${favicon}"> | 
					
						
							|  |  |  |           <title>SVG Favicon Test</title> | 
					
						
							|  |  |  |         </head> | 
					
						
							|  |  |  |         <body> | 
					
						
							|  |  |  |           <img src="${imagePath}" alt="my fake image"> | 
					
						
							|  |  |  |         </body> | 
					
						
							|  |  |  |       </html> | 
					
						
							|  |  |  | `);
 | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   const events = []; | 
					
						
							|  |  |  |   context.on('request', req => events.push(req.url())); | 
					
						
							|  |  |  |   context.on('response', res => events.push(res.url())); | 
					
						
							|  |  |  |   context.on('requestfinished', req => events.push(req.url())); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   await Promise.all([ | 
					
						
							|  |  |  |     server.waitForRequest(favicon), | 
					
						
							|  |  |  |     server.waitForRequest(hashedFaviconUrl), | 
					
						
							|  |  |  |     page.goto(server.PREFIX + '/page.html'), | 
					
						
							|  |  |  |   ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   expect(events).toEqual(expect.arrayContaining([expect.stringContaining(pagePath)])); | 
					
						
							|  |  |  |   expect(events).toEqual(expect.arrayContaining([expect.stringContaining(imagePath)])); | 
					
						
							|  |  |  |   expect(events).not.toEqual(expect.arrayContaining([expect.stringContaining(favicon)])); | 
					
						
							|  |  |  |   expect(events).not.toEqual(expect.arrayContaining([expect.stringContaining(hashedFaviconUrl)])); | 
					
						
							|  |  |  | }); |