debian-mirror-gitlab/scripts/frontend/test.js

124 lines
3.3 KiB
JavaScript
Raw Normal View History

2019-09-04 21:01:54 +05:30
#!/usr/bin/env node
const { spawn } = require('child_process');
const { EOL } = require('os');
const program = require('commander');
const chalk = require('chalk');
2019-09-30 21:07:59 +05:30
const SUCCESS_CODE = 0;
2019-09-04 21:01:54 +05:30
const JEST_ROUTE = 'spec/frontend';
const KARMA_ROUTE = 'spec/javascripts';
const COMMON_ARGS = ['--colors'];
2019-09-30 21:07:59 +05:30
const jestArgs = [...COMMON_ARGS, '--passWithNoTests'];
const karmaArgs = [...COMMON_ARGS, '--no-fail-on-empty-test-suite'];
2019-09-04 21:01:54 +05:30
program
.usage('[options] <file ...>')
.option('-p, --parallel', 'Run tests suites in parallel')
2019-09-30 21:07:59 +05:30
.option(
'-w, --watch',
'Rerun tests when files change (tests will be run in parallel if this enabled)',
)
2019-09-04 21:01:54 +05:30
.parse(process.argv);
2019-09-30 21:07:59 +05:30
const shouldParallelize = program.parallel || program.watch;
2019-09-04 21:01:54 +05:30
const isSuccess = code => code === SUCCESS_CODE;
const combineExitCodes = codes => {
const firstFail = codes.find(x => !isSuccess(x));
return firstFail === undefined ? SUCCESS_CODE : firstFail;
};
const skipIfFail = fn => code => (isSuccess(code) ? fn() : code);
const endWithEOL = str => (str[str.length - 1] === '\n' ? str : `${str}${EOL}`);
const runTests = paths => {
2019-09-30 21:07:59 +05:30
if (shouldParallelize) {
2019-09-04 21:01:54 +05:30
return Promise.all([runJest(paths), runKarma(paths)]).then(combineExitCodes);
} else {
return runJest(paths).then(skipIfFail(() => runKarma(paths)));
}
};
const spawnYarnScript = (cmd, args) => {
return new Promise((resolve, reject) => {
const proc = spawn('yarn', ['run', cmd, ...args]);
const output = data => {
const text = data
.toString()
.split(/\r?\n/g)
.map((line, idx, { length }) =>
idx === length - 1 && !line ? line : `${chalk.gray(cmd)}: ${line}`,
)
.join(EOL);
return endWithEOL(text);
};
proc.stdout.on('data', data => {
process.stdout.write(output(data));
});
proc.stderr.on('data', data => {
process.stderr.write(output(data));
});
proc.on('close', code => {
process.stdout.write(output(`exited with code ${code}`));
// We resolve even on a failure code because a `reject` would cause
// Promise.all to reject immediately (without waiting for other promises)
// to finish.
resolve(code);
});
});
};
const runJest = args => {
2019-09-30 21:07:59 +05:30
return spawnYarnScript('jest', [...jestArgs, ...toJestArgs(args)]);
2019-09-04 21:01:54 +05:30
};
const runKarma = args => {
2019-09-30 21:07:59 +05:30
return spawnYarnScript('karma', [...karmaArgs, ...toKarmaArgs(args)]);
2019-09-04 21:01:54 +05:30
};
const replacePath = to => path =>
path
.replace(JEST_ROUTE, to)
.replace(KARMA_ROUTE, to)
.replace('app/assets/javascripts', to);
const replacePathForJest = replacePath(JEST_ROUTE);
const replacePathForKarma = replacePath(KARMA_ROUTE);
const toJestArgs = paths => paths.map(replacePathForJest);
const toKarmaArgs = paths =>
paths.reduce((acc, path) => acc.concat('-f', replacePathForKarma(path)), []);
const main = paths => {
2019-09-30 21:07:59 +05:30
if (program.watch) {
jestArgs.push('--watch');
karmaArgs.push('--single-run', 'false', '--auto-watch');
}
2019-09-04 21:01:54 +05:30
runTests(paths).then(code => {
console.log('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
if (isSuccess(code)) {
console.log(chalk.bgGreen(chalk.black('All tests passed :)')));
} else {
console.log(chalk.bgRed(chalk.white(`Some tests failed :(`)));
}
console.log('~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~');
if (!isSuccess(code)) {
process.exit(code);
}
});
};
main(program.args);