According to the [Mozilla documentation about regular expressions](https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions), the special character '\w' is equivalent to '[A-Za-z0-9_]', which does not include the hyphen character (i.e. '-'). This cause the matching of services containing a hyphen to fail (e.g. 'maven-central').
103 lines
3.1 KiB
JavaScript
103 lines
3.1 KiB
JavaScript
// Usage:
|
|
//
|
|
// Run all services:
|
|
// npm run test:services
|
|
//
|
|
// Run some services:
|
|
// npm run test:services -- --only=service1,service2,service3
|
|
//
|
|
// Infer the current PR from the Travis environment, and look for bracketed,
|
|
// space-separated service names in the pull request title. If none are found,
|
|
// do not run any tests. For example:
|
|
// Pull request title: [travis sonar] Support user token authentication
|
|
// npm run test:services -- --pr
|
|
// is equivalent to
|
|
// npm run test:services -- --only=travis,sonar
|
|
|
|
'use strict';
|
|
|
|
const difference = require('lodash.difference');
|
|
const fetch = require('node-fetch');
|
|
const minimist = require('minimist');
|
|
const Runner = require('./runner');
|
|
const serverHelpers = require('../../lib/in-process-server-test-helpers');
|
|
|
|
function getTitle (repoSlug, pullRequest) {
|
|
const uri = `https://api.github.com/repos/${repoSlug}/pulls/${pullRequest}`;
|
|
const options = { headers: { 'User-Agent': 'badges/shields' } };
|
|
return fetch(uri, options)
|
|
.then(res => {
|
|
if (! res.ok) {
|
|
throw Error(`${res.status} ${res.statusText}`);
|
|
}
|
|
|
|
return res.json();
|
|
})
|
|
.then(json => json.title);
|
|
}
|
|
|
|
// [Travis] Fix timeout issues => ['travis']
|
|
// [Travis Sonar] Support user token authentication -> ['travis', 'sonar']
|
|
// [CRAN CPAN CTAN] Add test coverage => ['cran', 'cpan', 'ctan']
|
|
function servicesForTitle (title) {
|
|
const matches = title.match(/\[(.+)\]/);
|
|
if (matches === null) {
|
|
return [];
|
|
}
|
|
|
|
const services = matches[1].toLowerCase().split(' ');
|
|
const blacklist = ['wip'];
|
|
return difference(services, blacklist);
|
|
}
|
|
|
|
let server;
|
|
before('Start running the server', function () {
|
|
this.timeout(5000);
|
|
server = serverHelpers.start();
|
|
});
|
|
after('Shut down the server', function () { serverHelpers.stop(server); });
|
|
|
|
const runner = new Runner();
|
|
runner.prepare();
|
|
// The server's request cache causes side effects between tests.
|
|
runner.beforeEach = () => { serverHelpers.reset(server); };
|
|
|
|
const args = minimist(process.argv.slice(3));
|
|
const prOption = args.pr;
|
|
const serviceOption = args.only;
|
|
|
|
if (prOption !== undefined) {
|
|
const repoSlug = process.env.TRAVIS_REPO_SLUG;
|
|
const pullRequest = process.env.TRAVIS_PULL_REQUEST;
|
|
if (repoSlug === undefined || pullRequest === undefined) {
|
|
console.error('Please set TRAVIS_REPO_SLUG and TRAVIS_PULL_REQUEST.');
|
|
process.exit(-1);
|
|
}
|
|
console.info(`PR: ${repoSlug}#${pullRequest}`);
|
|
|
|
getTitle(repoSlug, pullRequest)
|
|
.then(title => {
|
|
console.info(`Title: ${title}`);
|
|
const services = servicesForTitle(title);
|
|
if (services.length === 0) {
|
|
console.info('No services found. Nothing to do.');
|
|
} else {
|
|
console.info(`Services: (${services.length} found) ${services.join(', ')}\n`);
|
|
runner.only(services);
|
|
runner.toss();
|
|
run();
|
|
}
|
|
}).catch(err => {
|
|
console.error(err);
|
|
process.exit(1);
|
|
});
|
|
} else {
|
|
if (serviceOption !== undefined) {
|
|
runner.only(serviceOption.split(','));
|
|
}
|
|
|
|
runner.toss();
|
|
// Invoke run() asynchronously, because Mocha will not start otherwise.
|
|
process.nextTick(run);
|
|
}
|