| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Copyright 2018 Google Inc. All rights reserved. | 
					
						
							| 
									
										
										
										
											2019-12-10 13:21:51 -08:00
										 |  |  |  * Modifications copyright (c) Microsoft Corporation. | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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-02-10 13:20:13 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @type {BrowserTestSuite} | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2020-01-13 10:13:28 -08:00
										 |  |  | module.exports.describe = function({testRunner, expect, defaultBrowserOptions, playwright, FFOX, CHROMIUM, WEBKIT}) { | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |   const {describe, xdescribe, fdescribe} = testRunner; | 
					
						
							| 
									
										
										
										
											2019-12-19 15:47:35 -08:00
										 |  |  |   const {it, fit, xit, dit} = testRunner; | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |   const {beforeAll, beforeEach, afterAll, afterEach} = testRunner; | 
					
						
							| 
									
										
										
										
											2019-12-13 22:46:27 -07:00
										 |  |  |   describe('ignoreHTTPSErrors', function() { | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |     it('should work', async({browser, httpsServer}) => { | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |       let error = null; | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |       const context = await browser.newContext({ ignoreHTTPSErrors: true }); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |       const response = await page.goto(httpsServer.EMPTY_PAGE).catch(e => error = e); | 
					
						
							|  |  |  |       expect(error).toBe(null); | 
					
						
							|  |  |  |       expect(response.ok()).toBe(true); | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |       await context.close(); | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |     it('should work with mixed content', async({browser, server, httpsServer}) => { | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |       httpsServer.setRoute('/mixedcontent.html', (req, res) => { | 
					
						
							|  |  |  |         res.end(`<iframe src=${server.EMPTY_PAGE}></iframe>`); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |       const context = await browser.newContext({ ignoreHTTPSErrors: true }); | 
					
						
							|  |  |  |       const page = await context.newPage(); | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |       await page.goto(httpsServer.PREFIX + '/mixedcontent.html', {waitUntil: 'load'}); | 
					
						
							|  |  |  |       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); | 
					
						
							| 
									
										
										
										
											2020-02-20 15:15:48 -08:00
										 |  |  |       await context.close(); | 
					
						
							| 
									
										
										
										
											2019-11-18 18:18:28 -08:00
										 |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }; |