2019-02-02 01:55:12 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2019 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-06-23 05:18:46 +00:00
|
|
|
import expect from 'expect';
|
|
|
|
import {
|
2020-05-07 10:54:55 +00:00
|
|
|
getTestState,
|
|
|
|
setupTestBrowserHooks,
|
|
|
|
setupTestPageAndContextHooks,
|
2020-06-23 05:18:46 +00:00
|
|
|
describeChromeOnly,
|
|
|
|
} from './mocha-utils';
|
2019-02-25 20:51:06 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describeChromeOnly('Chromium-Specific Launcher tests', function () {
|
|
|
|
describe('Puppeteer.launch |browserURL| option', function () {
|
|
|
|
it('should be able to connect using browserUrl, with and without trailing slash', async () => {
|
|
|
|
const { defaultBrowserOptions, puppeteer } = getTestState();
|
2019-02-02 01:55:12 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
const originalBrowser = await puppeteer.launch(
|
|
|
|
Object.assign({}, defaultBrowserOptions, {
|
|
|
|
args: ['--remote-debugging-port=21222'],
|
|
|
|
})
|
|
|
|
);
|
2020-04-09 05:56:25 +00:00
|
|
|
const browserURL = 'http://127.0.0.1:21222';
|
2019-02-25 20:51:06 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
const browser1 = await puppeteer.connect({ browserURL });
|
2020-04-09 05:56:25 +00:00
|
|
|
const page1 = await browser1.newPage();
|
|
|
|
expect(await page1.evaluate(() => 7 * 8)).toBe(56);
|
|
|
|
browser1.disconnect();
|
2019-02-25 20:51:06 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
const browser2 = await puppeteer.connect({
|
|
|
|
browserURL: browserURL + '/',
|
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
const page2 = await browser2.newPage();
|
|
|
|
expect(await page2.evaluate(() => 8 * 7)).toBe(56);
|
|
|
|
browser2.disconnect();
|
|
|
|
originalBrowser.close();
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should throw when using both browserWSEndpoint and browserURL', async () => {
|
|
|
|
const { defaultBrowserOptions, puppeteer } = getTestState();
|
2019-02-25 20:51:06 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
const originalBrowser = await puppeteer.launch(
|
|
|
|
Object.assign({}, defaultBrowserOptions, {
|
|
|
|
args: ['--remote-debugging-port=21222'],
|
|
|
|
})
|
|
|
|
);
|
2020-04-09 05:56:25 +00:00
|
|
|
const browserURL = 'http://127.0.0.1:21222';
|
2019-02-25 20:51:06 +00:00
|
|
|
|
2020-04-09 05:56:25 +00:00
|
|
|
let error = null;
|
2020-05-07 10:54:55 +00:00
|
|
|
await puppeteer
|
|
|
|
.connect({
|
|
|
|
browserURL,
|
|
|
|
browserWSEndpoint: originalBrowser.wsEndpoint(),
|
|
|
|
})
|
|
|
|
.catch((error_) => (error = error_));
|
|
|
|
expect(error.message).toContain(
|
|
|
|
'Exactly one of browserWSEndpoint, browserURL or transport'
|
|
|
|
);
|
2019-02-25 20:51:06 +00:00
|
|
|
|
2020-04-09 05:56:25 +00:00
|
|
|
originalBrowser.close();
|
2019-02-25 20:51:06 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should throw when trying to connect to non-existing browser', async () => {
|
|
|
|
const { defaultBrowserOptions, puppeteer } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
const originalBrowser = await puppeteer.launch(
|
|
|
|
Object.assign({}, defaultBrowserOptions, {
|
|
|
|
args: ['--remote-debugging-port=21222'],
|
|
|
|
})
|
|
|
|
);
|
2020-04-09 05:56:25 +00:00
|
|
|
const browserURL = 'http://127.0.0.1:32333';
|
2019-02-25 20:51:06 +00:00
|
|
|
|
2020-04-09 05:56:25 +00:00
|
|
|
let error = null;
|
2020-05-07 10:54:55 +00:00
|
|
|
await puppeteer
|
|
|
|
.connect({ browserURL })
|
|
|
|
.catch((error_) => (error = error_));
|
|
|
|
expect(error.message).toContain(
|
|
|
|
'Failed to fetch browser webSocket url from'
|
|
|
|
);
|
2020-04-09 05:56:25 +00:00
|
|
|
originalBrowser.close();
|
2019-02-02 01:55:12 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|
2019-07-23 04:30:49 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describe('Puppeteer.launch |pipe| option', function () {
|
|
|
|
it('should support the pipe option', async () => {
|
|
|
|
const { defaultBrowserOptions, puppeteer } = getTestState();
|
|
|
|
const options = Object.assign({ pipe: true }, defaultBrowserOptions);
|
2020-04-09 05:56:25 +00:00
|
|
|
const browser = await puppeteer.launch(options);
|
|
|
|
expect((await browser.pages()).length).toBe(1);
|
|
|
|
expect(browser.wsEndpoint()).toBe('');
|
|
|
|
const page = await browser.newPage();
|
|
|
|
expect(await page.evaluate('11 * 11')).toBe(121);
|
|
|
|
await page.close();
|
|
|
|
await browser.close();
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should support the pipe argument', async () => {
|
|
|
|
const { defaultBrowserOptions, puppeteer } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
const options = Object.assign({}, defaultBrowserOptions);
|
|
|
|
options.args = ['--remote-debugging-pipe'].concat(options.args || []);
|
|
|
|
const browser = await puppeteer.launch(options);
|
|
|
|
expect(browser.wsEndpoint()).toBe('');
|
|
|
|
const page = await browser.newPage();
|
|
|
|
expect(await page.evaluate('11 * 11')).toBe(121);
|
|
|
|
await page.close();
|
|
|
|
await browser.close();
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should fire "disconnected" when closing with pipe', async () => {
|
|
|
|
const { defaultBrowserOptions, puppeteer } = getTestState();
|
|
|
|
const options = Object.assign({ pipe: true }, defaultBrowserOptions);
|
2020-04-09 05:56:25 +00:00
|
|
|
const browser = await puppeteer.launch(options);
|
2020-05-07 10:54:55 +00:00
|
|
|
const disconnectedEventPromise = new Promise((resolve) =>
|
|
|
|
browser.once('disconnected', resolve)
|
|
|
|
);
|
2020-04-09 05:56:25 +00:00
|
|
|
// Emulate user exiting browser.
|
|
|
|
browser.process().kill();
|
|
|
|
await disconnectedEventPromise;
|
|
|
|
});
|
2019-02-25 20:51:06 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describeChromeOnly('Chromium-Specific Page Tests', function () {
|
2020-04-09 05:56:25 +00:00
|
|
|
setupTestBrowserHooks();
|
|
|
|
setupTestPageAndContextHooks();
|
2020-05-07 10:54:55 +00:00
|
|
|
it('Page.setRequestInterception should work with intervention headers', async () => {
|
|
|
|
const { server, page } = getTestState();
|
2019-02-25 20:51:06 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
server.setRoute('/intervention', (req, res) =>
|
|
|
|
res.end(`
|
2019-02-25 20:51:06 +00:00
|
|
|
<script>
|
|
|
|
document.write('<script src="${server.CROSS_PROCESS_PREFIX}/intervention.js">' + '</scr' + 'ipt>');
|
|
|
|
</script>
|
2020-05-07 10:54:55 +00:00
|
|
|
`)
|
|
|
|
);
|
2020-04-09 05:56:25 +00:00
|
|
|
server.setRedirect('/intervention.js', '/redirect.js');
|
|
|
|
let serverRequest = null;
|
|
|
|
server.setRoute('/redirect.js', (req, res) => {
|
|
|
|
serverRequest = req;
|
|
|
|
res.end('console.log(1);');
|
2019-02-02 01:55:12 +00:00
|
|
|
});
|
|
|
|
|
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
|
|
|
await page.goto(server.PREFIX + '/intervention');
|
|
|
|
// Check for feature URL substring rather than https://www.chromestatus.com to
|
|
|
|
// make it work with Edgium.
|
2020-05-07 10:54:55 +00:00
|
|
|
expect(serverRequest.headers.intervention).toContain(
|
|
|
|
'feature/5718547946799104'
|
|
|
|
);
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|
|
|
|
});
|