mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
ef434cd8d3
This is a complete rework of our testing infrastructure. The main goal is to modernize and drop deprecated or undermaintained dependencies (specifically, grunt, karma, and testswarm). We've achieved that by limiting our dependency list to ones that are unlikely to drop support any time soon. The new dependency list includes: - `qunit` (our trusty unit testing library) - `selenium-webdriver` (for spinning up local browsers) - `express` (for starting a test server and adding middleware) - express middleware includes uses of `body-parser` and `raw-body` - `yargs` (for constructing a CLI with pretty help text) - BrowserStack (for running each of our QUnit modules separately in all of our supported browsers) - `browserstack-local` (for opening a local tunnel. This is the same package still currently used in the new Browserstack SDK) - We are not using any other BrowserStack library. The newest BrowserStack SDK does not fit our needs (and isn't open source). Existing libraries, such as `node-browserstack` or `browserstack-runner`, either do not quite fit our needs, are under-maintained and out-of-date, or are not robust enough to meet all of our requirements. We instead call the [BrowserStack REST API](https://github.com/browserstack/api) directly. **BrowserStack** - automatically retries individual modules in case of test failure(s) - automatically attempts to re-establish broken tunnels - automatically refreshes the page in case a test run has stalled - Browser workers are reused when running isolated modules in the same browser - runs all browsers concurrently and uses as many sessions as are available under the BrowserStack plan. It will wait for available sessions if there are none. - supports filtering the available list of browsers by browser name, browser version, device, OS, and OS version (see `npm run test:unit -- --list-browsers` for more info). It will retrieve the latest matching browser available if any of those parameters are not specified. Supports latest and latest-\d+ in place of browser version. - cleans up after itself (closes the local tunnel, stops the test server, etc.) - Requires `BROWSERSTACK_USERNAME` and `BROWSERSTACK_ACCESS_KEY` environment variables. **Selenium** - supports running any local browser as long as the driver is installed, including support for headless mode in Chrome, FF, and Edge - supports running `basic` tests on the latest [jsdom](https://github.com/jsdom/jsdom#readme), which can be seen in action in this PR (see `test:browserless`) - Node tests will run as before in PRs and all non-dependabot branches, but now includes tests on real Safari in a GH actions macos image instead of playwright-webkit. - can run multiple browsers and multiple modules concurrently Other notes: - Stale dependencies have been removed and all remaining dependencies have been upgraded with a few exceptions: - `sinon`: stopped supporting IE in version 10. But, `sinon` has been updated to 9.x. - `husky`: latest does not support Node 10 and runs on `npm install`. Needed for now until git builds are migrated to GitHub Actions. - `rollup`: latest does not support Node 10. Needed for now until git builds are migrated to GitHub Actions. - BrowserStack tests are set to run on each `main` branch commit - `debug` mode leaves Selenium browsers open whether they pass or fail and leaves browsers with test failures open on BrowserStack. The latter is to avoid leaving open too many sessions. - This PR includes a workflow to dispatch BrowserStack runs on-demand - The Node version used for most workflow tests has been upgraded to 20.x - updated supportjQuery to 3.7.1 Run `npm run test:unit -- --help` for CLI documentation Close gh-5427
338 lines
8.0 KiB
JavaScript
338 lines
8.0 KiB
JavaScript
import chalk from "chalk";
|
|
import { asyncExitHook, gracefulExit } from "exit-hook";
|
|
import { getLatestBrowser } from "./browserstack/api.js";
|
|
import { buildBrowserFromString } from "./browserstack/buildBrowserFromString.js";
|
|
import { localTunnel } from "./browserstack/local.js";
|
|
import { reportEnd, reportTest } from "./reporter.js";
|
|
import { createTestServer } from "./createTestServer.js";
|
|
import { buildTestUrl } from "./lib/buildTestUrl.js";
|
|
import { generateHash, printModuleHashes } from "./lib/generateHash.js";
|
|
import { getBrowserString } from "./lib/getBrowserString.js";
|
|
import { cleanupAllJSDOM, cleanupJSDOM } from "./jsdom.js";
|
|
import { modules as allModules } from "./modules.js";
|
|
import { cleanupAllBrowsers, touchBrowser } from "./browserstack/browsers.js";
|
|
import {
|
|
addBrowserStackRun,
|
|
getNextBrowserTest,
|
|
retryTest,
|
|
runAllBrowserStack
|
|
} from "./browserstack/queue.js";
|
|
import { addSeleniumRun, runAllSelenium } from "./selenium/queue.js";
|
|
|
|
const EXIT_HOOK_WAIT_TIMEOUT = 60 * 1000;
|
|
|
|
/**
|
|
* Run modules in parallel in different browser instances.
|
|
*/
|
|
export async function run( {
|
|
amd,
|
|
browsers: browserNames,
|
|
browserstack,
|
|
concurrency,
|
|
debug,
|
|
headless,
|
|
isolate,
|
|
modules = [],
|
|
retries = 0,
|
|
runId,
|
|
verbose
|
|
} ) {
|
|
if ( !browserNames || !browserNames.length ) {
|
|
browserNames = [ "chrome" ];
|
|
}
|
|
if ( !modules.length ) {
|
|
modules = allModules;
|
|
}
|
|
if ( headless && debug ) {
|
|
throw new Error(
|
|
"Cannot run in headless mode and debug mode at the same time."
|
|
);
|
|
}
|
|
|
|
if ( verbose ) {
|
|
console.log( browserstack ? "Running in BrowserStack." : "Running locally." );
|
|
}
|
|
|
|
const errorMessages = [];
|
|
const pendingErrors = {};
|
|
|
|
// Convert browser names to browser objects
|
|
let browsers = browserNames.map( ( b ) => ( { browser: b } ) );
|
|
const tunnelId = generateHash(
|
|
`${ Date.now() }-${ modules.join( ":" ) }-${ ( browserstack || [] )
|
|
.concat( browserNames )
|
|
.join( ":" ) }`
|
|
);
|
|
|
|
// A unique identifier for this run
|
|
if ( !runId ) {
|
|
runId = tunnelId;
|
|
}
|
|
|
|
// Create the test app and
|
|
// hook it up to the reporter
|
|
const reports = Object.create( null );
|
|
const app = await createTestServer( ( message ) => {
|
|
switch ( message.type ) {
|
|
case "testEnd": {
|
|
const reportId = message.id;
|
|
const report = reports[ reportId ];
|
|
touchBrowser( report.browser );
|
|
const errors = reportTest( message.data, reportId, report );
|
|
pendingErrors[ reportId ] ??= Object.create( null );
|
|
if ( errors ) {
|
|
pendingErrors[ reportId ][ message.data.name ] = errors;
|
|
} else {
|
|
delete pendingErrors[ reportId ][ message.data.name ];
|
|
}
|
|
break;
|
|
}
|
|
case "runEnd": {
|
|
const reportId = message.id;
|
|
const report = reports[ reportId ];
|
|
touchBrowser( report.browser );
|
|
const { failed, total } = reportEnd(
|
|
message.data,
|
|
message.id,
|
|
reports[ reportId ]
|
|
);
|
|
report.total = total;
|
|
|
|
cleanupJSDOM( reportId, { verbose } );
|
|
|
|
// Handle failure
|
|
if ( failed ) {
|
|
const retry = retryTest( reportId, retries );
|
|
if ( retry ) {
|
|
return retry;
|
|
}
|
|
errorMessages.push( ...Object.values( pendingErrors[ reportId ] ) );
|
|
return getNextBrowserTest( reportId );
|
|
}
|
|
|
|
// Handle success
|
|
if (
|
|
pendingErrors[ reportId ] &&
|
|
Object.keys( pendingErrors[ reportId ] ).length
|
|
) {
|
|
console.warn( "Detected flaky tests:" );
|
|
for ( const [ , error ] in Object.entries( pendingErrors[ reportId ] ) ) {
|
|
console.warn( chalk.italic( chalk.gray( error ) ) );
|
|
}
|
|
delete pendingErrors[ reportId ];
|
|
}
|
|
return getNextBrowserTest( reportId );
|
|
}
|
|
case "ack": {
|
|
const report = reports[ message.id ];
|
|
touchBrowser( report.browser );
|
|
break;
|
|
}
|
|
default:
|
|
console.warn( "Received unknown message type:", message.type );
|
|
}
|
|
} );
|
|
|
|
// Start up local test server
|
|
let server;
|
|
let port;
|
|
await new Promise( ( resolve ) => {
|
|
|
|
// Pass 0 to choose a random, unused port
|
|
server = app.listen( 0, () => {
|
|
port = server.address().port;
|
|
resolve();
|
|
} );
|
|
} );
|
|
|
|
if ( !server || !port ) {
|
|
throw new Error( "Server not started." );
|
|
}
|
|
|
|
if ( verbose ) {
|
|
console.log( `Server started on port ${ port }.` );
|
|
}
|
|
|
|
function stopServer() {
|
|
return new Promise( ( resolve ) => {
|
|
server.close( () => {
|
|
if ( verbose ) {
|
|
console.log( "Server stopped." );
|
|
}
|
|
resolve();
|
|
} );
|
|
} );
|
|
}
|
|
|
|
async function cleanup() {
|
|
console.log( "Cleaning up..." );
|
|
|
|
if ( tunnel ) {
|
|
await tunnel.stop();
|
|
if ( verbose ) {
|
|
console.log( "Stopped BrowserStackLocal." );
|
|
}
|
|
}
|
|
|
|
await cleanupAllBrowsers( { verbose } );
|
|
cleanupAllJSDOM( { verbose } );
|
|
}
|
|
|
|
asyncExitHook(
|
|
async() => {
|
|
await stopServer();
|
|
await cleanup();
|
|
},
|
|
{ wait: EXIT_HOOK_WAIT_TIMEOUT }
|
|
);
|
|
|
|
// Start up BrowserStackLocal
|
|
let tunnel;
|
|
if ( browserstack ) {
|
|
if ( headless ) {
|
|
console.warn(
|
|
chalk.italic(
|
|
"BrowserStack does not support headless mode. Running in normal mode."
|
|
)
|
|
);
|
|
headless = false;
|
|
}
|
|
|
|
// Convert browserstack to browser objects.
|
|
// If browserstack is an empty array, fall back
|
|
// to the browsers array.
|
|
if ( browserstack.length ) {
|
|
browsers = browserstack.map( ( b ) => {
|
|
if ( !b ) {
|
|
return browsers[ 0 ];
|
|
}
|
|
return buildBrowserFromString( b );
|
|
} );
|
|
}
|
|
|
|
// Fill out browser defaults
|
|
browsers = await Promise.all(
|
|
browsers.map( async( browser ) => {
|
|
|
|
// Avoid undici connect timeout errors
|
|
await new Promise( ( resolve ) => setTimeout( resolve, 100 ) );
|
|
|
|
const latestMatch = await getLatestBrowser( browser );
|
|
if ( !latestMatch ) {
|
|
console.error(
|
|
chalk.red( `Browser not found: ${ getBrowserString( browser ) }.` )
|
|
);
|
|
gracefulExit( 1 );
|
|
}
|
|
return latestMatch;
|
|
} )
|
|
);
|
|
|
|
tunnel = await localTunnel( tunnelId );
|
|
if ( verbose ) {
|
|
console.log( "Started BrowserStackLocal." );
|
|
|
|
printModuleHashes( modules );
|
|
}
|
|
}
|
|
|
|
function queueRun( modules, browser ) {
|
|
const fullBrowser = getBrowserString( browser, headless );
|
|
const reportId = generateHash( `${ modules.join( ":" ) } ${ fullBrowser }` );
|
|
reports[ reportId ] = { browser, headless, modules };
|
|
|
|
const url = buildTestUrl( modules, {
|
|
amd,
|
|
browserstack,
|
|
jsdom: browser.browser === "jsdom",
|
|
port,
|
|
reportId
|
|
} );
|
|
|
|
const options = {
|
|
debug,
|
|
headless,
|
|
modules,
|
|
reportId,
|
|
runId,
|
|
tunnelId,
|
|
verbose
|
|
};
|
|
|
|
if ( browserstack ) {
|
|
addBrowserStackRun( url, browser, options );
|
|
} else {
|
|
addSeleniumRun( url, browser, options );
|
|
}
|
|
}
|
|
|
|
for ( const browser of browsers ) {
|
|
if ( isolate ) {
|
|
for ( const module of modules ) {
|
|
queueRun( [ module ], browser );
|
|
}
|
|
} else {
|
|
queueRun( modules, browser );
|
|
}
|
|
}
|
|
|
|
try {
|
|
console.log( `Starting Run ${ runId }...` );
|
|
if ( browserstack ) {
|
|
await runAllBrowserStack( { verbose } );
|
|
} else {
|
|
await runAllSelenium( { concurrency, verbose } );
|
|
}
|
|
} catch ( error ) {
|
|
console.error( error );
|
|
if ( !debug ) {
|
|
gracefulExit( 1 );
|
|
}
|
|
} finally {
|
|
console.log();
|
|
if ( errorMessages.length === 0 ) {
|
|
let stop = false;
|
|
for ( const report of Object.values( reports ) ) {
|
|
if ( !report.total ) {
|
|
stop = true;
|
|
console.error(
|
|
chalk.red(
|
|
`No tests were run for ${ report.modules.join(
|
|
", "
|
|
) } in ${ getBrowserString( report.browser ) }`
|
|
)
|
|
);
|
|
}
|
|
}
|
|
if ( stop ) {
|
|
return gracefulExit( 1 );
|
|
}
|
|
console.log( chalk.green( "All tests passed!" ) );
|
|
|
|
if ( !debug || browserstack ) {
|
|
gracefulExit( 0 );
|
|
}
|
|
} else {
|
|
console.error( chalk.red( `${ errorMessages.length } tests failed.` ) );
|
|
console.log(
|
|
errorMessages.map( ( error, i ) => `\n${ i + 1 }. ${ error }` ).join( "\n" )
|
|
);
|
|
|
|
if ( debug ) {
|
|
console.log();
|
|
if ( browserstack ) {
|
|
console.log( "Leaving browsers with failures open for debugging." );
|
|
console.log(
|
|
"View running sessions at https://automate.browserstack.com/dashboard/v2/"
|
|
);
|
|
} else {
|
|
console.log( "Leaving browsers open for debugging." );
|
|
}
|
|
console.log( "Press Ctrl+C to exit." );
|
|
} else {
|
|
gracefulExit( 1 );
|
|
}
|
|
}
|
|
}
|
|
}
|