strapi/tests/scripts/run-tests.js

495 lines
16 KiB
JavaScript

'use strict';
const path = require('path');
const fs = require('node:fs/promises');
const yargs = require('yargs');
const chalk = require('chalk');
const dotenv = require('dotenv');
const execa = require('execa');
const {
publishYalc,
setupTestApps,
getCurrentTestApps,
setupTestEnvironment,
} = require('../utils/runners/shared-setup');
const { runPlaywright } = require('../utils/runners/browser-runner');
const {
loadDomainConfigs,
calculateTestAppsRequired,
runCLI,
} = require('../utils/runners/cli-runner');
const { createConfig } = require('../../playwright.base.config');
const cwd = path.resolve(__dirname, '../..');
const pathExists = async (filePath) => {
try {
await fs.access(filePath);
return true;
} catch (err) {
return false;
}
};
yargs
.parserConfiguration({
'unknown-options-as-args': false,
})
.command({
command: '*',
description: 'run the test suite (e2e or cli)',
builder(yarg) {
yarg.option('type', {
alias: 't',
type: 'string',
choices: ['e2e', 'cli'],
demandOption: true,
describe: 'Type of tests to run (e2e or cli)',
});
return yarg;
},
async handler(argv) {
const { type } = argv;
// Set up paths based on test type
const testRoot = path.join(cwd, 'tests', type);
const testAppDirectory = path.join(cwd, 'test-apps', type);
const testDomainRoot = path.join(testRoot, 'tests');
const templateDir = path.join(cwd, 'tests', 'app-template');
try {
// Load dotenv for e2e tests
if (type === 'e2e' && (await pathExists(path.join(testRoot, '.env')))) {
dotenv.config({ path: path.join(testRoot, '.env') });
}
// Read domains
const domains = await fs.readdir(testDomainRoot);
// Parse test-specific arguments - need to reconstruct the full argv without --type
// The outer yargs already parsed --type, so we need to get the remaining args
const processArgs = process.argv.slice(2);
const typeIndex = processArgs.findIndex((arg) => arg === '--type' || arg === '-t');
const argsWithoutType =
typeIndex >= 0
? [...processArgs.slice(0, typeIndex), ...processArgs.slice(typeIndex + 2)]
: processArgs;
const testYargs = yargs(argsWithoutType)
.parserConfiguration({
'unknown-options-as-args': false,
})
.option('concurrency', {
alias: 'c',
type: 'number',
default: domains.length,
describe: `Number of concurrent test ${type === 'cli' ? 'domains' : 'apps'} to run`,
})
.option('domains', {
alias: 'd',
describe: 'Run a specific test suite domain',
type: 'array',
choices: domains,
default: domains,
})
.option('setup', {
alias: 'f',
describe: 'Force the setup process of the test apps',
type: 'boolean',
default: false,
})
.parse();
const { concurrency, domains: selectedDomains, setup } = testYargs;
/**
* Publishing all packages to the yalc store
*/
await publishYalc(cwd);
// Load domain configs for CLI tests
let domainConfigs = null;
let testAppsRequired;
if (type === 'cli') {
domainConfigs = await loadDomainConfigs(testDomainRoot, selectedDomains, testYargs);
testAppsRequired = calculateTestAppsRequired(domainConfigs, concurrency);
} else {
// For e2e: we don't need more apps than domains, but respect concurrency
testAppsRequired = Math.min(selectedDomains.length, concurrency);
}
if (testAppsRequired === 0) {
throw new Error('No test apps to spawn');
}
const testAppPaths = Array.from({ length: testAppsRequired }, (_, i) =>
path.join(testAppDirectory, `test-app-${i}`)
);
const currentTestApps = await getCurrentTestApps(testAppDirectory);
/**
* Setup test apps if needed
*/
const wasSetup = await setupTestApps({
testAppDirectory,
testAppPaths,
templateDir,
setup,
currentTestApps: currentTestApps.map((appPath) => path.basename(appPath)),
setupTestEnvironment: type === 'e2e' ? setupTestEnvironment : null,
});
if (wasSetup) {
console.log(
`${chalk.green('Successfully')} setup test apps for the following domains: ${chalk.bold(
selectedDomains.join(', ')
)}`
);
} else {
console.log(
`Skipping setting up test apps, use ${chalk.bold('--setup')} to force the setup process`
);
}
/**
* Run the appropriate test runner
*/
if (type === 'e2e') {
// Playwright orchestration: init git and start Strapi once per test app, then run tests for each domain
const testAppsToSpawn = testAppPaths.length;
const gitUser = ['-c', 'user.name=Strapi CLI', '-c', 'user.email=test@strapi.io'];
// Initialize git and start Strapi once per test app (not per domain)
// Start sequentially to avoid port conflicts with internal services (e.g., Vite on 5173)
// eslint-disable-next-line no-plusplus
for (let j = 0; j < testAppPaths.length; j++) {
const testAppPath = testAppPaths[j];
await (async () => {
const port = 8000 + j;
// Store the filesystem state with git so it can be reset between tests
console.log(`Initializing git for test app ${j} at ${testAppPath}`);
// Check if git repo already exists
const gitDir = path.join(testAppPath, '.git');
const gitExists = await pathExists(gitDir);
if (!gitExists) {
await execa('git', [...gitUser, 'init'], {
stdio: 'inherit',
cwd: testAppPath,
});
}
await execa('git', [...gitUser, 'add', '-A', '.'], {
stdio: 'inherit',
cwd: testAppPath,
});
// Check if there are changes to commit
try {
await execa('git', [...gitUser, 'diff', '--cached', '--quiet'], {
cwd: testAppPath,
});
// If exit code is 0, there are no changes, skip commit
} catch (err) {
// Exit code 1 means there are changes, proceed with commit
await execa(
'git',
[...gitUser, '-c', 'commit.gpgsign=false', 'commit', '-m', 'initial commit'],
{
stdio: 'inherit',
cwd: testAppPath,
}
);
}
// Start Strapi and wait for it to be ready to generate files
console.log(`Starting Strapi for test app ${j} to generate files...`);
const strapiProcess = execa('npm', ['run', 'develop'], {
cwd: testAppPath,
env: {
PORT: port,
STRAPI_DISABLE_EE: !process.env.STRAPI_LICENSE,
},
detached: true,
});
await new Promise((resolve, reject) => {
const startTime = Date.now();
const timeout = 160 * 1000;
const checkInterval = 1000;
const checkServer = async () => {
try {
const response = await fetch(`http://127.0.0.1:${port}/_health`);
if (response.ok) {
console.log(`Strapi is ready for test app ${j}, shutting down...`);
if (process.env.CI) {
process.kill(-strapiProcess.pid, 'SIGINT');
} else {
strapiProcess.kill('SIGINT');
}
resolve();
return;
}
} catch (err) {
// Server not ready yet, continue checking
}
if (Date.now() - startTime > timeout) {
console.log('Timeout reached, forcing shutdown...');
if (process.env.CI) {
process.kill(-strapiProcess.pid, 'SIGKILL');
} else {
strapiProcess.kill('SIGKILL');
}
reject(new Error('Strapi failed to start within timeout period'));
return;
}
setTimeout(checkServer, checkInterval);
};
checkServer();
strapiProcess.stdout.on('data', (data) => {
console.log(`[stdout] ${data.toString().trim()}`);
});
strapiProcess.stderr.on('data', (data) => {
console.error(`[stderr] ${data.toString().trim()}`);
});
strapiProcess.on('error', (err) => {
console.error(`[Strapi ERROR] Process error:`, err);
reject(err);
});
strapiProcess.on('exit', (code) => {
console.log(`Strapi process exited with code ${code}`);
});
});
// Wait for Strapi to fully shut down
await new Promise((resolve) => {
const checkPort = async () => {
try {
await fetch(`http://127.0.0.1:${port}/_health`);
setTimeout(checkPort, 1000);
} catch (err) {
resolve();
}
};
checkPort();
});
// Commit the generated files
await execa('git', [...gitUser, 'add', '-A', '.'], {
stdio: 'inherit',
cwd: testAppPath,
});
// Check if there are changes to commit
try {
await execa('git', [...gitUser, 'diff', '--cached', '--quiet'], {
cwd: testAppPath,
});
// If exit code is 0, there are no changes, skip commit
} catch (err) {
// Exit code 1 means there are changes, proceed with commit
await execa(
'git',
[
...gitUser,
'-c',
'commit.gpgsign=false',
'commit',
'-m',
'commit generated files',
],
{
stdio: 'inherit',
cwd: testAppPath,
}
);
}
})();
}
// Now chunk domains and run tests
const chunkedDomains = selectedDomains.reduce((acc, _, i) => {
if (i % testAppsToSpawn === 0) acc.push(selectedDomains.slice(i, i + testAppsToSpawn));
return acc;
}, []);
// eslint-disable-next-line no-plusplus
for (let i = 0; i < chunkedDomains.length; i++) {
const domainBatch = chunkedDomains[i];
await Promise.all(
domainBatch.map(async (domain, j) => {
const testAppPath = testAppPaths[j];
const port = 8000 + j;
const pathToPlaywrightConfig = path.resolve(testAppPath, 'playwright.config.js');
console.log(
`Creating playwright config for domain: ${domain}, at path: ${testAppPath}`
);
const config = createConfig({
testDir: path.join(testDomainRoot, domain),
port,
appDir: testAppPath,
reportFileName: `playwright-${domain}-${port}.xml`,
});
const configFileTemplate = `
const config = ${JSON.stringify(config)}
module.exports = config
`;
await fs.writeFile(pathToPlaywrightConfig, configFileTemplate);
// Add the config file to git so it persists through git clean
await execa('git', [...gitUser, 'add', pathToPlaywrightConfig], {
stdio: 'inherit',
cwd: testAppPath,
});
await execa(
'git',
[
...gitUser,
'-c',
'commit.gpgsign=false',
'commit',
'-m',
'Add playwright config',
],
{
stdio: 'inherit',
cwd: testAppPath,
}
).catch(() => {
// Ignore error if there's nothing to commit (file already tracked)
});
console.log(`Running ${domain} e2e tests`);
// Run Playwright - this is the only line that differs!
await runPlaywright({
configPath: pathToPlaywrightConfig,
cwd,
port,
testAppPath,
testArgs: testYargs._,
});
})
);
}
} else {
// CLI orchestration: batch domains, assign test apps, then run tests
const availableTestApps = [...testAppPaths];
const batches = [];
for (let i = 0; i < selectedDomains.length; i += concurrency) {
batches.push(selectedDomains.slice(i, i + concurrency));
}
// eslint-disable-next-line no-plusplus
for (let i = 0; i < batches.length; i++) {
const batch = batches[i];
let failingTests = 0;
await Promise.all(
batch.map(async (domain) => {
const config = domainConfigs[domain];
if (availableTestApps.length < config.testApps) {
console.error('Not enough test apps available; aborting');
process.exit(1);
}
const testApps = availableTestApps.splice(-1 * config.testApps);
try {
const domainDir = path.join(testDomainRoot, domain);
const jestConfigPath = path.join(cwd, 'jest.config.cli.js');
// Run Jest - this is the only line that differs!
await runCLI({
domainDir,
jestConfigPath,
testApps,
testArgs: testYargs._,
});
} catch (err) {
console.error('Test suite failed for', domain);
failingTests += 1;
}
availableTestApps.push(...testApps);
})
);
if (failingTests > 0) {
throw new Error(`${failingTests} tests failed`);
}
}
}
} catch (err) {
console.error(chalk.red(`Error running ${type} tests:`));
if (err.shortMessage) {
console.error(err.shortMessage);
process.exit(1);
}
console.error(err);
process.exit(1);
}
},
})
.command({
command: 'clean',
description: 'clean the test app directory',
builder(yarg) {
yarg.option('type', {
alias: 't',
type: 'string',
choices: ['e2e', 'cli'],
demandOption: true,
describe: 'Type of tests to clean (e2e or cli)',
});
return yarg;
},
async handler(argv) {
const { type } = argv;
const testAppDirectory = path.join(cwd, 'test-apps', type);
try {
const { cleanTestApp } = require('../helpers/test-app');
const currentTestApps = await getCurrentTestApps(testAppDirectory);
if (currentTestApps.length === 0) {
console.log(`No ${type} test apps to clean`);
return;
}
await Promise.all(
currentTestApps.map(async (appPath) => {
console.log(`Cleaning test app at path: ${chalk.bold(appPath)}`);
await cleanTestApp(appPath);
})
);
} catch (err) {
console.error(chalk.red('Error cleaning test apps:'));
console.error(err);
process.exit(1);
}
},
})
.help()
.parse();