mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-15 02:03:53 +00:00
682b76662e
Since WebdriverIO v5, Puppeteer is available as a Chromedriver alternative. Puppeteer is bundled with WebdriverIO. Chromedriver needs to be installed (and started/stopped) separately. Getting rid of Chromedriver simplifies our documentation, among other things. The commit updates tests/selenium/wdio.conf.js to use Puppeteer. Bug: T269566 Change-Id: Ib2a547792a34e6d40137432f7800b5f71c254c36
97 lines
2.4 KiB
JavaScript
97 lines
2.4 KiB
JavaScript
/**
|
|
* See also: http://webdriver.io/guide/testrunner/configurationfile.html
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const fs = require( 'fs' ),
|
|
saveScreenshot = require( 'wdio-mediawiki' ).saveScreenshot;
|
|
|
|
exports.config = {
|
|
// ==================
|
|
// Automation Protocols
|
|
// ==================
|
|
// See https://webdriver.io/docs/automationProtocols/
|
|
automationProtocol: 'devtools',
|
|
|
|
// ======
|
|
// Custom WDIO config specific to MediaWiki
|
|
// ======
|
|
// Use in a test as `browser.options.<key>`.
|
|
// Defaults are for convenience with MediaWiki-Vagrant
|
|
|
|
// Wiki admin
|
|
mwUser: process.env.MEDIAWIKI_USER || 'Admin',
|
|
mwPwd: process.env.MEDIAWIKI_PASSWORD || 'vagrant',
|
|
|
|
// Base for browser.url() and Page#openTitle()
|
|
baseUrl: ( process.env.MW_SERVER || 'http://127.0.0.1:8080' ) + (
|
|
process.env.MW_SCRIPT_PATH || '/w'
|
|
),
|
|
|
|
// ==================
|
|
// Test Files
|
|
// ==================
|
|
specs: [
|
|
__dirname + '/specs/*.js'
|
|
],
|
|
|
|
// ============
|
|
// Capabilities
|
|
// ============
|
|
capabilities: [ {
|
|
// https://sites.google.com/a/chromium.org/chromedriver/capabilities
|
|
browserName: 'chrome',
|
|
maxInstances: 1,
|
|
'goog:chromeOptions': {
|
|
// If DISPLAY is set, assume developer asked non-headless or CI with Xvfb.
|
|
// Otherwise, use --headless (added in Chrome 59)
|
|
// https://chromium.googlesource.com/chromium/src/+/59.0.3030.0/headless/README.md
|
|
args: [
|
|
...( process.env.DISPLAY ? [] : [ '--headless' ] ),
|
|
// Chrome sandbox does not work in Docker
|
|
...( fs.existsSync( '/.dockerenv' ) ? [ '--no-sandbox' ] : [] )
|
|
]
|
|
}
|
|
} ],
|
|
|
|
// ===================
|
|
// Test Configurations
|
|
// ===================
|
|
|
|
// Level of verbosity: silent | verbose | command | data | result | error
|
|
logLevel: 'error',
|
|
|
|
// Setting this enables automatic screenshots for when a browser command fails
|
|
// It is also used by afterTest for capturing failed assertions.
|
|
screenshotPath: process.env.LOG_DIR || __dirname + '/log',
|
|
|
|
// Default timeout for each waitFor* command.
|
|
waitforTimeout: 10 * 1000,
|
|
|
|
// See also: http://webdriver.io/guide/testrunner/reporters.html
|
|
reporters: [ 'spec' ],
|
|
|
|
// See also: http://mochajs.org
|
|
mochaOpts: {
|
|
ui: 'bdd',
|
|
timeout: 60 * 1000
|
|
},
|
|
|
|
// =====
|
|
// Hooks
|
|
// =====
|
|
|
|
/**
|
|
* Save a screenshot when test fails.
|
|
*
|
|
* @param {Object} test Mocha Test object
|
|
*/
|
|
afterTest: function ( test ) {
|
|
if ( !test.passed ) {
|
|
const filePath = saveScreenshot( test.title );
|
|
console.log( '\n\tScreenshot: ' + filePath + '\n' );
|
|
}
|
|
}
|
|
};
|