mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
6522e4f524
Rather than use our own custom expect library, we can use expect from npm [1], which has an API almost identical to the one Puppeteer has, but with more options, better diffing, and is used by many in the community as it's the default assertions library that comes with Jest. It's also thoroughly documented [2]. [1]: https://www.npmjs.com/package/expect [2]: https://jestjs.io/docs/en/expect
174 lines
6.1 KiB
JavaScript
174 lines
6.1 KiB
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const rm = require('rimraf').sync;
|
|
const utils = require('./utils');
|
|
|
|
const expect = require('expect');
|
|
|
|
const YELLOW_COLOR = '\x1b[33m';
|
|
const RESET_COLOR = '\x1b[0m';
|
|
|
|
module.exports.addTests = ({testRunner, product, puppeteerPath}) => {
|
|
const {describe, xdescribe, fdescribe} = testRunner;
|
|
const {it, fit, xit} = testRunner;
|
|
const {beforeAll, beforeEach, afterAll, afterEach} = testRunner;
|
|
|
|
const CHROME = product === 'Chromium';
|
|
const FFOX = product === 'Firefox';
|
|
|
|
const puppeteer = require(puppeteerPath);
|
|
|
|
const headless = (process.env.HEADLESS || 'true').trim().toLowerCase() === 'true';
|
|
const slowMo = parseInt((process.env.SLOW_MO || '0').trim(), 10);
|
|
let extraLaunchOptions = {};
|
|
try {
|
|
extraLaunchOptions = JSON.parse(process.env.EXTRA_LAUNCH_OPTIONS || '{}');
|
|
} catch (error) {
|
|
console.warn(`${YELLOW_COLOR}Error parsing EXTRA_LAUNCH_OPTIONS: ${error.message}. Skipping.${RESET_COLOR}`);
|
|
}
|
|
|
|
const defaultBrowserOptions = Object.assign({
|
|
handleSIGINT: false,
|
|
executablePath: process.env.BINARY,
|
|
slowMo,
|
|
headless,
|
|
dumpio: !!process.env.DUMPIO,
|
|
}, extraLaunchOptions);
|
|
|
|
|
|
if (defaultBrowserOptions.executablePath) {
|
|
console.warn(`${YELLOW_COLOR}WARN: running ${product} tests with ${defaultBrowserOptions.executablePath}${RESET_COLOR}`);
|
|
} else {
|
|
const executablePath = puppeteer.executablePath();
|
|
if (!fs.existsSync(executablePath))
|
|
throw new Error(`Browser is not downloaded at ${executablePath}. Run 'npm install' and try to re-run tests`);
|
|
}
|
|
|
|
const suffix = FFOX ? 'firefox' : product.toLowerCase();
|
|
|
|
const GOLDEN_DIR = path.join(__dirname, 'golden-' + suffix);
|
|
const OUTPUT_DIR = path.join(__dirname, 'output-' + suffix);
|
|
if (fs.existsSync(OUTPUT_DIR))
|
|
rm(OUTPUT_DIR);
|
|
|
|
utils.extendExpectWithToBeGolden(GOLDEN_DIR, OUTPUT_DIR);
|
|
|
|
const testOptions = {
|
|
testRunner,
|
|
product,
|
|
FFOX,
|
|
CHROME,
|
|
puppeteer,
|
|
expect,
|
|
defaultBrowserOptions,
|
|
puppeteerPath,
|
|
headless: !!defaultBrowserOptions.headless,
|
|
};
|
|
|
|
|
|
describe('Browser', function() {
|
|
beforeAll(async state => {
|
|
state.browser = await puppeteer.launch(defaultBrowserOptions);
|
|
});
|
|
|
|
afterAll(async state => {
|
|
await state.browser.close();
|
|
state.browser = null;
|
|
});
|
|
|
|
beforeEach(async(state, test) => {
|
|
const rl = require('readline').createInterface({input: state.browser.process().stderr});
|
|
test.output = '';
|
|
rl.on('line', onLine);
|
|
state.tearDown = () => {
|
|
rl.removeListener('line', onLine);
|
|
rl.close();
|
|
};
|
|
function onLine(line) {
|
|
test.output += line + '\n';
|
|
}
|
|
});
|
|
|
|
afterEach(async state => {
|
|
state.tearDown();
|
|
});
|
|
|
|
describe('Page', function() {
|
|
beforeEach(async state => {
|
|
state.context = await state.browser.createIncognitoBrowserContext();
|
|
state.page = await state.context.newPage();
|
|
});
|
|
|
|
afterEach(async state => {
|
|
// This closes all pages.
|
|
await state.context.close();
|
|
state.context = null;
|
|
state.page = null;
|
|
});
|
|
|
|
// Page-level tests that are given a browser, a context and a page.
|
|
// Each test is launched in a new browser context.
|
|
require('./accessibility.spec.js').addTests(testOptions);
|
|
require('./browser.spec.js').addTests(testOptions);
|
|
require('./click.spec.js').addTests(testOptions);
|
|
require('./cookies.spec.js').addTests(testOptions);
|
|
require('./dialog.spec.js').addTests(testOptions);
|
|
require('./elementhandle.spec.js').addTests(testOptions);
|
|
require('./emulation.spec.js').addTests(testOptions);
|
|
require('./evaluation.spec.js').addTests(testOptions);
|
|
require('./frame.spec.js').addTests(testOptions);
|
|
require('./input.spec.js').addTests(testOptions);
|
|
require('./jshandle.spec.js').addTests(testOptions);
|
|
require('./keyboard.spec.js').addTests(testOptions);
|
|
require('./mouse.spec.js').addTests(testOptions);
|
|
require('./navigation.spec.js').addTests(testOptions);
|
|
require('./network.spec.js').addTests(testOptions);
|
|
require('./requestinterception.spec.js').addTests(testOptions);
|
|
require('./page.spec.js').addTests(testOptions);
|
|
require('./screenshot.spec.js').addTests(testOptions);
|
|
require('./queryselector.spec.js').addTests(testOptions);
|
|
require('./target.spec.js').addTests(testOptions);
|
|
require('./touchscreen.spec.js').addTests(testOptions);
|
|
require('./waittask.spec.js').addTests(testOptions);
|
|
require('./worker.spec.js').addTests(testOptions);
|
|
if (CHROME) {
|
|
require('./CDPSession.spec.js').addTests(testOptions);
|
|
require('./coverage.spec.js').addTests(testOptions);
|
|
// Add page-level Chromium-specific tests.
|
|
require('./chromiumonly.spec.js').addPageTests(testOptions);
|
|
}
|
|
});
|
|
|
|
// Browser-level tests that are given a browser.
|
|
require('./browsercontext.spec.js').addTests(testOptions);
|
|
});
|
|
|
|
// Top-level tests that launch Browser themselves.
|
|
require('./ignorehttpserrors.spec.js').addTests(testOptions);
|
|
require('./defaultbrowsercontext.spec.js').addTests(testOptions);
|
|
require('./launcher.spec.js').addTests(testOptions);
|
|
require('./fixtures.spec.js').addTests(testOptions);
|
|
if (CHROME) {
|
|
require('./oopif.spec.js').addTests(testOptions);
|
|
require('./headful.spec.js').addTests(testOptions);
|
|
require('./tracing.spec.js').addTests(testOptions);
|
|
// Add top-level Chromium-specific tests.
|
|
require('./chromiumonly.spec.js').addLauncherTests(testOptions);
|
|
}
|
|
};
|