gitlab-org--gitlab-foss/config/karma.config.js

143 lines
3.9 KiB
JavaScript
Raw Normal View History

const path = require('path');
const glob = require('glob');
const chalk = require('chalk');
const webpack = require('webpack');
const argumentsParser = require('commander');
const webpackConfig = require('./webpack.config.js');
const ROOT_PATH = path.resolve(__dirname, '..');
function fatalError(message) {
console.error(chalk.red(`\nError: ${message}\n`));
process.exit(1);
}
2016-12-29 21:42:48 +00:00
2018-03-02 21:12:49 +00:00
// disable problematic options
webpackConfig.entry = undefined;
webpackConfig.mode = 'development';
2018-06-21 17:36:17 +00:00
webpackConfig.optimization.nodeEnv = false;
2018-03-02 21:12:49 +00:00
webpackConfig.optimization.runtimeChunk = false;
webpackConfig.optimization.splitChunks = false;
// use quicker sourcemap option
webpackConfig.devtool = 'cheap-inline-source-map';
const specFilters = argumentsParser
.option(
'-f, --filter-spec [filter]',
'Filter run spec files by path. Multiple filters are like a logical OR.',
(filter, memo) => {
memo.push(filter, filter.replace(/\/?$/, '/**/*.js'));
return memo;
},
[]
)
.parse(process.argv).filterSpec;
2018-04-10 09:12:24 +00:00
if (specFilters.length) {
const specsPath = /^(?:\.[\\\/])?spec[\\\/]javascripts[\\\/]/;
// resolve filters
let filteredSpecFiles = specFilters.map(filter =>
glob
.sync(filter, {
root: ROOT_PATH,
matchBase: true,
})
.filter(path => path.endsWith('spec.js'))
);
// flatten
filteredSpecFiles = Array.prototype.concat.apply([], filteredSpecFiles);
// remove duplicates
filteredSpecFiles = [...new Set(filteredSpecFiles)];
if (filteredSpecFiles.length < 1) {
fatalError('Your filter did not match any test files.');
}
if (!filteredSpecFiles.every(file => specsPath.test(file))) {
fatalError('Test files must be located within /spec/javascripts.');
}
const newContext = filteredSpecFiles.reduce((context, file) => {
const relativePath = file.replace(specsPath, '');
context[file] = `./${relativePath}`;
return context;
}, {});
webpackConfig.plugins.push(
new webpack.ContextReplacementPlugin(
/spec[\\\/]javascripts$/,
path.join(ROOT_PATH, 'spec/javascripts'),
newContext
)
);
}
2016-12-29 21:42:48 +00:00
// Karma configuration
module.exports = function(config) {
2018-01-21 06:16:25 +00:00
process.env.TZ = 'Etc/UTC';
const karmaConfig = {
2016-12-29 21:42:48 +00:00
basePath: ROOT_PATH,
2017-06-14 18:58:10 +00:00
browsers: ['ChromeHeadlessCustom'],
2018-09-11 21:03:05 +00:00
client: {
2018-09-14 13:40:53 +00:00
color: !process.env.CI
2018-09-11 21:03:05 +00:00
},
customLaunchers: {
2017-06-14 18:58:10 +00:00
ChromeHeadlessCustom: {
base: 'ChromeHeadless',
2017-06-14 18:58:10 +00:00
displayName: 'Chrome',
flags: [
// chrome cannot run in sandboxed mode inside a docker container unless it is run with
// escalated kernel privileges (e.g. docker run --cap-add=CAP_SYS_ADMIN)
'--no-sandbox',
],
2018-03-23 16:52:54 +00:00
},
},
frameworks: ['jasmine'],
2016-12-29 21:42:48 +00:00
files: [
{ pattern: 'spec/javascripts/test_bundle.js', watched: false },
2018-04-08 10:20:05 +00:00
{ pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.html.raw|.png)', included: false },
2016-12-29 21:42:48 +00:00
],
preprocessors: {
'spec/javascripts/**/*.js': ['webpack', 'sourcemap'],
2016-12-29 21:42:48 +00:00
},
2018-09-11 21:03:05 +00:00
reporters: ['progress'],
webpack: webpackConfig,
webpackMiddleware: { stats: 'errors-only' },
};
2018-09-11 21:03:05 +00:00
if (process.env.CI) {
karmaConfig.reporters = ['mocha', 'junit'];
karmaConfig.junitReporter = {
outputFile: 'junit_karma.xml',
useBrowserName: false,
};
}
if (process.env.BABEL_ENV === 'coverage' || process.env.NODE_ENV === 'coverage') {
karmaConfig.reporters.push('coverage-istanbul');
karmaConfig.coverageIstanbulReporter = {
reports: ['html', 'text-summary'],
dir: 'coverage-javascript/',
subdir: '.',
2018-03-23 16:52:54 +00:00
fixWebpackSourcePaths: true,
};
2017-06-16 20:40:28 +00:00
karmaConfig.browserNoActivityTimeout = 60000; // 60 seconds
}
2017-06-14 18:58:10 +00:00
if (process.env.DEBUG) {
karmaConfig.logLevel = config.LOG_DEBUG;
process.env.CHROME_LOG_FILE = process.env.CHROME_LOG_FILE || 'chrome_debug.log';
}
if (process.env.CHROME_LOG_FILE) {
karmaConfig.customLaunchers.ChromeHeadlessCustom.flags.push('--enable-logging', '--v=1');
}
config.set(karmaConfig);
2016-12-29 21:42:48 +00:00
};