| 
									
										
										
										
											2020-08-03 15:23:53 -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. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-08-19 21:32:12 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-29 11:11:32 -07:00
										 |  |  | import { browserTest as it, expect } from './config/browserTest'; | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-29 19:51:28 -07:00
										 |  |  | it('should work #smoke', async ({ browser, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   let error = null; | 
					
						
							|  |  |  |   const context = await browser.newContext({ ignoreHTTPSErrors: true }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const response = await page.goto(httpsServer.EMPTY_PAGE).catch(e => error = e); | 
					
						
							|  |  |  |   expect(error).toBe(null); | 
					
						
							|  |  |  |   expect(response.ok()).toBe(true); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should isolate contexts', async ({ browser, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   { | 
					
						
							|  |  |  |     let error = null; | 
					
						
							|  |  |  |     const context = await browser.newContext({ ignoreHTTPSErrors: true }); | 
					
						
							|  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     const response = await page.goto(httpsServer.EMPTY_PAGE).catch(e => error = e); | 
					
						
							|  |  |  |     expect(error).toBe(null); | 
					
						
							|  |  |  |     expect(response.ok()).toBe(true); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     let error = null; | 
					
						
							|  |  |  |     const context = await browser.newContext(); | 
					
						
							|  |  |  |     const page = await context.newPage(); | 
					
						
							|  |  |  |     await page.goto(httpsServer.EMPTY_PAGE).catch(e => error = e); | 
					
						
							|  |  |  |     expect(error).not.toBe(null); | 
					
						
							|  |  |  |     await context.close(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should work with mixed content', async ({ browser, server, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   httpsServer.setRoute('/mixedcontent.html', (req, res) => { | 
					
						
							|  |  |  |     res.end(`<iframe src=${server.EMPTY_PAGE}></iframe>`); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   const context = await browser.newContext({ ignoreHTTPSErrors: true }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  |   await page.goto(httpsServer.PREFIX + '/mixedcontent.html', { waitUntil: 'domcontentloaded' }); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   expect(page.frames().length).toBe(2); | 
					
						
							|  |  |  |   // Make sure blocked iframe has functional execution context
 | 
					
						
							|  |  |  |   // @see https://github.com/GoogleChrome/puppeteer/issues/2709
 | 
					
						
							|  |  |  |   expect(await page.frames()[0].evaluate('1 + 2')).toBe(3); | 
					
						
							|  |  |  |   expect(await page.frames()[1].evaluate('2 + 3')).toBe(5); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should work with WebSocket', async ({ browser, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2021-05-26 15:18:52 -07:00
										 |  |  |   httpsServer.sendOnWebSocketConnection('incoming'); | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   const context = await browser.newContext({ ignoreHTTPSErrors: true }); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const value = await page.evaluate(endpoint => { | 
					
						
							|  |  |  |     let cb; | 
					
						
							|  |  |  |     const result = new Promise(f => cb = f); | 
					
						
							|  |  |  |     const ws = new WebSocket(endpoint); | 
					
						
							|  |  |  |     ws.addEventListener('message', data => { ws.close(); cb(data.data); }); | 
					
						
							|  |  |  |     ws.addEventListener('error', error => cb('Error')); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  |   }, httpsServer.PREFIX.replace(/https/, 'wss') + '/ws'); | 
					
						
							|  |  |  |   expect(value).toBe('incoming'); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); | 
					
						
							| 
									
										
										
										
											2020-08-05 11:43:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-27 18:58:08 +02:00
										 |  |  | it('should fail with WebSocket if not ignored', async ({ browser, httpsServer }) => { | 
					
						
							| 
									
										
										
										
											2020-08-03 15:23:53 -07:00
										 |  |  |   const context = await browser.newContext(); | 
					
						
							|  |  |  |   const page = await context.newPage(); | 
					
						
							|  |  |  |   const value = await page.evaluate(endpoint => { | 
					
						
							|  |  |  |     let cb; | 
					
						
							|  |  |  |     const result = new Promise(f => cb = f); | 
					
						
							|  |  |  |     const ws = new WebSocket(endpoint); | 
					
						
							|  |  |  |     ws.addEventListener('message', data => { ws.close(); cb(data.data); }); | 
					
						
							|  |  |  |     ws.addEventListener('error', error => cb('Error')); | 
					
						
							|  |  |  |     return result; | 
					
						
							|  |  |  |   }, httpsServer.PREFIX.replace(/https/, 'wss') + '/ws'); | 
					
						
							|  |  |  |   expect(value).toBe('Error'); | 
					
						
							|  |  |  |   await context.close(); | 
					
						
							|  |  |  | }); |