2016-04-13 11:15:04 +02:00
|
|
|
// karma.conf.js - the config file for karma, which runs our tests.
|
|
|
|
|
|
|
|
var path = require('path');
|
|
|
|
var webpack = require('webpack');
|
2017-02-03 00:31:22 +01:00
|
|
|
var webpack_config = require('./webpack.config');
|
2016-04-13 11:15:04 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We use webpack to build our tests. It's a pain to have to wait for webpack
|
|
|
|
* to build everything; however it's the easiest way to load our dependencies
|
|
|
|
* from node_modules.
|
|
|
|
*
|
2017-02-03 00:31:22 +01:00
|
|
|
* If you run karma in multi-run mode (with `npm run test-multi`), it will watch
|
2016-04-13 11:15:04 +02:00
|
|
|
* the tests for changes, and webpack will rebuild using a cache. This is much quicker
|
|
|
|
* than a clean rebuild.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// the name of the test file. By default, a special file which runs all tests.
|
|
|
|
var testFile = process.env.KARMA_TEST_FILE || 'test/all-tests.js';
|
|
|
|
|
|
|
|
process.env.PHANTOMJS_BIN = 'node_modules/.bin/phantomjs';
|
|
|
|
process.env.Q_DEBUG = 1;
|
|
|
|
|
2017-02-03 00:31:22 +01:00
|
|
|
/* the webpack config is based on the real one, to (a) try to simulate the
|
|
|
|
* deployed environment as closely as possible, and (b) to avoid a shedload of
|
|
|
|
* cut-and-paste.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// find out if we're shipping olm, and where it is, if so.
|
|
|
|
const olm_entry = webpack_config.entry['olm'];
|
|
|
|
|
|
|
|
// remove the default entries - karma provides its own (via the 'files' and
|
|
|
|
// 'preprocessors' config below)
|
|
|
|
delete webpack_config['entry'];
|
|
|
|
|
|
|
|
// add ./test as a search path for js
|
|
|
|
webpack_config.module.loaders.unshift({
|
|
|
|
test: /\.js$/, loader: "babel",
|
|
|
|
include: [path.resolve('./src'), path.resolve('./test')],
|
|
|
|
});
|
|
|
|
|
|
|
|
// disable parsing for sinon, because it
|
|
|
|
// tries to do voodoo with 'require' which upsets
|
|
|
|
// webpack (https://github.com/webpack/webpack/issues/304)
|
|
|
|
webpack_config.module.noParse.push(/sinon\/pkg\/sinon\.js$/);
|
|
|
|
|
|
|
|
// ?
|
|
|
|
webpack_config.resolve.alias['sinon'] = 'sinon/pkg/sinon.js';
|
|
|
|
|
|
|
|
webpack_config.resolve.root = [
|
|
|
|
path.resolve('./src'),
|
|
|
|
path.resolve('./test'),
|
|
|
|
];
|
|
|
|
|
|
|
|
webpack_config.devtool = 'inline-source-map';
|
|
|
|
|
2016-04-13 11:15:04 +02:00
|
|
|
module.exports = function (config) {
|
2017-02-03 00:31:22 +01:00
|
|
|
const myconfig = {
|
2016-04-13 11:15:04 +02:00
|
|
|
// frameworks to use
|
|
|
|
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
|
|
|
|
frameworks: ['mocha'],
|
|
|
|
|
|
|
|
// list of files / patterns to load in the browser
|
|
|
|
files: [
|
2016-06-14 17:32:07 +02:00
|
|
|
'node_modules/babel-polyfill/browser.js',
|
2016-04-13 11:15:04 +02:00
|
|
|
testFile,
|
2017-01-18 22:30:53 +01:00
|
|
|
|
|
|
|
// make the images available via our httpd. They will be avaliable
|
|
|
|
// below http://localhost:[PORT]/base/. See also `proxies` which
|
|
|
|
// defines alternative URLs for them.
|
|
|
|
//
|
|
|
|
// This isn't required by any of the tests, but it stops karma
|
|
|
|
// logging warnings when it serves a 404 for them.
|
|
|
|
{
|
|
|
|
pattern: 'src/skins/vector/img/*',
|
|
|
|
watched: false, included: false, served: true, nocache: false,
|
|
|
|
},
|
2016-04-13 11:15:04 +02:00
|
|
|
],
|
|
|
|
|
|
|
|
proxies: {
|
2017-01-18 22:30:53 +01:00
|
|
|
// redirect img links to the karma server. See above.
|
|
|
|
"/img/": "/base/src/skins/vector/img/",
|
2016-04-13 11:15:04 +02:00
|
|
|
},
|
2016-06-16 08:39:34 +02:00
|
|
|
|
2016-04-13 11:15:04 +02:00
|
|
|
// preprocess matching files before serving them to the browser
|
|
|
|
// available preprocessors:
|
|
|
|
// https://npmjs.org/browse/keyword/karma-preprocessor
|
|
|
|
preprocessors: {
|
2017-02-03 00:31:22 +01:00
|
|
|
'{src,test}/**/*.js': ['webpack'],
|
2016-04-13 11:15:04 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// test results reporter to use
|
|
|
|
// possible values: 'dots', 'progress'
|
|
|
|
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
|
|
|
|
reporters: ['progress', 'junit'],
|
|
|
|
|
|
|
|
// web server port
|
|
|
|
port: 9876,
|
|
|
|
|
|
|
|
// enable / disable colors in the output (reporters and logs)
|
|
|
|
colors: true,
|
|
|
|
|
|
|
|
// level of logging
|
|
|
|
// possible values: config.LOG_DISABLE || config.LOG_ERROR ||
|
|
|
|
// config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
|
|
|
logLevel: config.LOG_INFO,
|
|
|
|
|
|
|
|
// enable / disable watching file and executing tests whenever any file
|
|
|
|
// changes
|
|
|
|
autoWatch: true,
|
|
|
|
|
|
|
|
// start these browsers
|
|
|
|
// available browser launchers:
|
|
|
|
// https://npmjs.org/browse/keyword/karma-launcher
|
|
|
|
browsers: [
|
|
|
|
'Chrome',
|
|
|
|
//'PhantomJS',
|
|
|
|
],
|
|
|
|
|
|
|
|
// Continuous Integration mode
|
|
|
|
// if true, Karma captures browsers, runs the tests and exits
|
|
|
|
// singleRun: false,
|
|
|
|
|
|
|
|
// Concurrency level
|
|
|
|
// how many browser should be started simultaneous
|
|
|
|
concurrency: Infinity,
|
|
|
|
|
|
|
|
junitReporter: {
|
|
|
|
outputDir: 'karma-reports',
|
|
|
|
},
|
|
|
|
|
2017-02-03 00:31:22 +01:00
|
|
|
webpack: webpack_config,
|
|
|
|
|
|
|
|
webpackMiddleware: {
|
|
|
|
stats: {
|
|
|
|
// don't fill the console up with a mahoosive list of modules
|
|
|
|
chunks: false,
|
2016-04-13 11:15:04 +02:00
|
|
|
},
|
|
|
|
},
|
2017-02-03 00:31:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// include the olm loader if we have it.
|
|
|
|
if (olm_entry) {
|
|
|
|
myconfig.files.unshift(olm_entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
config.set(myconfig);
|
2016-04-13 11:15:04 +02:00
|
|
|
};
|