2018-06-14 23:48:14 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2018 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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-04-09 05:56:25 +00:00
|
|
|
const expect = require('expect');
|
2020-05-07 10:54:55 +00:00
|
|
|
const { getTestState } = require('./mocha-utils');
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describeFailsFirefox('ignoreHTTPSErrors', function () {
|
2020-04-09 05:56:25 +00:00
|
|
|
/* Note that this test creates its own browser rather than use
|
|
|
|
* the one provided by the test set-up as we need one
|
|
|
|
* with ignoreHTTPSErrors set to true
|
|
|
|
*/
|
|
|
|
let browser;
|
|
|
|
let context;
|
|
|
|
let page;
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
before(async () => {
|
|
|
|
const { defaultBrowserOptions, puppeteer } = getTestState();
|
|
|
|
const options = Object.assign(
|
|
|
|
{ ignoreHTTPSErrors: true },
|
|
|
|
defaultBrowserOptions
|
|
|
|
);
|
2020-04-09 05:56:25 +00:00
|
|
|
browser = await puppeteer.launch(options);
|
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
after(async () => {
|
2020-04-09 05:56:25 +00:00
|
|
|
await browser.close();
|
|
|
|
browser = null;
|
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
beforeEach(async () => {
|
2020-04-09 05:56:25 +00:00
|
|
|
context = await browser.createIncognitoBrowserContext();
|
|
|
|
page = await context.newPage();
|
|
|
|
});
|
2019-02-13 19:35:49 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
afterEach(async () => {
|
2020-04-09 05:56:25 +00:00
|
|
|
await context.close();
|
|
|
|
context = null;
|
|
|
|
page = null;
|
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describe('Response.securityDetails', function () {
|
|
|
|
it('should work', async () => {
|
|
|
|
const { httpsServer } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
const [serverRequest, response] = await Promise.all([
|
|
|
|
httpsServer.waitForRequest('/empty.html'),
|
2020-05-07 10:54:55 +00:00
|
|
|
page.goto(httpsServer.EMPTY_PAGE),
|
2020-04-09 05:56:25 +00:00
|
|
|
]);
|
|
|
|
const securityDetails = response.securityDetails();
|
|
|
|
expect(securityDetails.issuer()).toBe('puppeteer-tests');
|
|
|
|
const protocol = serverRequest.socket.getProtocol().replace('v', ' ');
|
|
|
|
expect(securityDetails.protocol()).toBe(protocol);
|
|
|
|
expect(securityDetails.subjectName()).toBe('puppeteer-tests');
|
2020-05-18 10:58:46 +00:00
|
|
|
expect(securityDetails.validFrom()).toBe(1589357069);
|
|
|
|
expect(securityDetails.validTo()).toBe(1904717069);
|
|
|
|
expect(securityDetails.subjectAlternativeNames()).toEqual([
|
|
|
|
'www.puppeteer-tests.test',
|
|
|
|
'www.puppeteer-tests-1.test',
|
|
|
|
]);
|
2019-02-13 19:35:49 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should be |null| for non-secure requests', async () => {
|
|
|
|
const { server } = getTestState();
|
2019-02-13 19:35:49 +00:00
|
|
|
|
2020-04-09 05:56:25 +00:00
|
|
|
const response = await page.goto(server.EMPTY_PAGE);
|
|
|
|
expect(response.securityDetails()).toBe(null);
|
2018-06-14 23:48:14 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('Network redirects should report SecurityDetails', async () => {
|
|
|
|
const { httpsServer } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
httpsServer.setRedirect('/plzredirect', '/empty.html');
|
2020-05-07 10:54:55 +00:00
|
|
|
const responses = [];
|
|
|
|
page.on('response', (response) => responses.push(response));
|
|
|
|
const [serverRequest] = await Promise.all([
|
2020-04-09 05:56:25 +00:00
|
|
|
httpsServer.waitForRequest('/plzredirect'),
|
2020-05-07 10:54:55 +00:00
|
|
|
page.goto(httpsServer.PREFIX + '/plzredirect'),
|
2020-04-09 05:56:25 +00:00
|
|
|
]);
|
|
|
|
expect(responses.length).toBe(2);
|
|
|
|
expect(responses[0].status()).toBe(302);
|
|
|
|
const securityDetails = responses[0].securityDetails();
|
|
|
|
const protocol = serverRequest.socket.getProtocol().replace('v', ' ');
|
|
|
|
expect(securityDetails.protocol()).toBe(protocol);
|
2018-09-04 09:04:27 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should work', async () => {
|
|
|
|
const { httpsServer } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
let error = null;
|
2020-05-07 10:54:55 +00:00
|
|
|
const response = await page
|
|
|
|
.goto(httpsServer.EMPTY_PAGE)
|
|
|
|
.catch((error_) => (error = error_));
|
2020-04-09 05:56:25 +00:00
|
|
|
expect(error).toBe(null);
|
|
|
|
expect(response.ok()).toBe(true);
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should work with request interception', async () => {
|
|
|
|
const { httpsServer } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
await page.setRequestInterception(true);
|
2020-05-07 10:54:55 +00:00
|
|
|
page.on('request', (request) => request.continue());
|
2020-04-09 05:56:25 +00:00
|
|
|
const response = await page.goto(httpsServer.EMPTY_PAGE);
|
|
|
|
expect(response.status()).toBe(200);
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should work with mixed content', async () => {
|
|
|
|
const { server, httpsServer } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
httpsServer.setRoute('/mixedcontent.html', (req, res) => {
|
|
|
|
res.end(`<iframe src=${server.EMPTY_PAGE}></iframe>`);
|
2018-06-14 23:48:14 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
await page.goto(httpsServer.PREFIX + '/mixedcontent.html', {
|
|
|
|
waitUntil: 'load',
|
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
expect(page.frames().length).toBe(2);
|
|
|
|
// Make sure blocked iframe has functional execution context
|
|
|
|
// @see https://github.com/puppeteer/puppeteer/issues/2709
|
|
|
|
expect(await page.frames()[0].evaluate('1 + 2')).toBe(3);
|
|
|
|
expect(await page.frames()[1].evaluate('2 + 3')).toBe(5);
|
2018-06-14 23:48:14 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|