123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461 |
- 'use strict'
- const path = require('path')
- const logger = require('./logger')
- const log = logger.create('config')
- const helper = require('./helper')
- const constant = require('./constants')
- const _ = require('lodash')
- let COFFEE_SCRIPT_AVAILABLE = false
- let LIVE_SCRIPT_AVAILABLE = false
- let TYPE_SCRIPT_AVAILABLE = false
- // Coffee is required here to enable config files written in coffee-script.
- // It's not directly used in this file.
- try {
- require('coffee-script').register()
- COFFEE_SCRIPT_AVAILABLE = true
- } catch (e) {}
- // CoffeeScript lost the hyphen in the module name a long time ago, all new version are named this:
- try {
- require('coffeescript').register()
- COFFEE_SCRIPT_AVAILABLE = true
- } catch (e) {}
- // LiveScript is required here to enable config files written in LiveScript.
- // It's not directly used in this file.
- try {
- require('LiveScript')
- LIVE_SCRIPT_AVAILABLE = true
- } catch (e) {}
- try {
- require('ts-node').register()
- TYPE_SCRIPT_AVAILABLE = true
- } catch (e) {}
- class Pattern {
- constructor (pattern, served, included, watched, nocache, type) {
- this.pattern = pattern
- this.served = helper.isDefined(served) ? served : true
- this.included = helper.isDefined(included) ? included : true
- this.watched = helper.isDefined(watched) ? watched : true
- this.nocache = helper.isDefined(nocache) ? nocache : false
- this.weight = helper.mmPatternWeight(pattern)
- this.type = type
- }
- compare (other) {
- return helper.mmComparePatternWeights(this.weight, other.weight)
- }
- }
- class UrlPattern extends Pattern {
- constructor (url, type) {
- super(url, false, true, false, false, type)
- }
- }
- function createPatternObject (pattern) {
- if (pattern && helper.isString(pattern)) {
- return helper.isUrlAbsolute(pattern) ? new UrlPattern(pattern) : new Pattern(pattern)
- }
- if (helper.isObject(pattern)) {
- if (pattern.pattern && helper.isString(pattern.pattern)) {
- return helper.isUrlAbsolute(pattern.pattern)
- ? new UrlPattern(pattern.pattern, pattern.type)
- : new Pattern(
- pattern.pattern,
- pattern.served,
- pattern.included,
- pattern.watched,
- pattern.nocache,
- pattern.type)
- }
- log.warn('Invalid pattern %s!\n\tObject is missing "pattern" property.', pattern)
- return new Pattern(null, false, false, false, false)
- }
- log.warn('Invalid pattern %s!\n\tExpected string or object with "pattern" property.', pattern)
- return new Pattern(null, false, false, false, false)
- }
- function normalizeUrl (url) {
- if (url.charAt(0) !== '/') {
- url = '/' + url
- }
- if (url.charAt(url.length - 1) !== '/') {
- url = url + '/'
- }
- return url
- }
- function normalizeUrlRoot (urlRoot) {
- const normalizedUrlRoot = normalizeUrl(urlRoot)
- if (normalizedUrlRoot !== urlRoot) {
- log.warn('urlRoot normalized to "%s"', normalizedUrlRoot)
- }
- return normalizedUrlRoot
- }
- function normalizeProxyPath (proxyPath) {
- const normalizedProxyPath = normalizeUrl(proxyPath)
- if (normalizedProxyPath !== proxyPath) {
- log.warn('proxyPath normalized to "%s"', normalizedProxyPath)
- }
- return normalizedProxyPath
- }
- function normalizeConfig (config, configFilePath) {
- function basePathResolve (relativePath) {
- if (helper.isUrlAbsolute(relativePath)) {
- return relativePath
- }
- if (!helper.isDefined(config.basePath) || !helper.isDefined(relativePath)) {
- return ''
- }
- return path.resolve(config.basePath, relativePath)
- }
- function createPatternMapper (resolve) {
- return (objectPattern) => {
- objectPattern.pattern = resolve(objectPattern.pattern)
- return objectPattern
- }
- }
- if (helper.isString(configFilePath)) {
- // resolve basePath
- config.basePath = path.resolve(path.dirname(configFilePath), config.basePath)
- // always ignore the config file itself
- config.exclude.push(configFilePath)
- } else {
- config.basePath = path.resolve(config.basePath || '.')
- }
- config.files = config.files.map(createPatternObject).map(createPatternMapper(basePathResolve))
- config.exclude = config.exclude.map(basePathResolve)
- config.customContextFile = config.customContextFile && basePathResolve(config.customContextFile)
- config.customDebugFile = config.customDebugFile && basePathResolve(config.customDebugFile)
- config.customClientContextFile = config.customClientContextFile && basePathResolve(config.customClientContextFile)
- // normalize paths on windows
- config.basePath = helper.normalizeWinPath(config.basePath)
- config.files = config.files.map(createPatternMapper(helper.normalizeWinPath))
- config.exclude = config.exclude.map(helper.normalizeWinPath)
- config.customContextFile = helper.normalizeWinPath(config.customContextFile)
- config.customDebugFile = helper.normalizeWinPath(config.customDebugFile)
- config.customClientContextFile = helper.normalizeWinPath(config.customClientContextFile)
- // normalize urlRoot
- config.urlRoot = normalizeUrlRoot(config.urlRoot)
- // normalize and default upstream proxy settings if given
- if (config.upstreamProxy) {
- const proxy = config.upstreamProxy
- proxy.path = _.isUndefined(proxy.path) ? '/' : normalizeProxyPath(proxy.path)
- proxy.hostname = _.isUndefined(proxy.hostname) ? 'localhost' : proxy.hostname
- proxy.port = _.isUndefined(proxy.port) ? 9875 : proxy.port
- // force protocol to end with ':'
- proxy.protocol = (proxy.protocol || 'http').split(':')[0] + ':'
- if (proxy.protocol.match(/https?:/) === null) {
- log.warn('"%s" is not a supported upstream proxy protocol, defaulting to "http:"',
- proxy.protocol)
- proxy.protocol = 'http:'
- }
- }
- // force protocol to end with ':'
- config.protocol = (config.protocol || 'http').split(':')[0] + ':'
- if (config.protocol.match(/https?:/) === null) {
- log.warn('"%s" is not a supported protocol, defaulting to "http:"',
- config.protocol)
- config.protocol = 'http:'
- }
- if (config.proxies && config.proxies.hasOwnProperty(config.urlRoot)) {
- log.warn('"%s" is proxied, you should probably change urlRoot to avoid conflicts',
- config.urlRoot)
- }
- if (config.singleRun && config.autoWatch) {
- log.debug('autoWatch set to false, because of singleRun')
- config.autoWatch = false
- }
- if (config.runInParent) {
- log.debug('useIframe set to false, because using runInParent')
- config.useIframe = false
- }
- if (!config.singleRun && !config.useIframe && config.runInParent) {
- log.debug('singleRun set to true, because using runInParent')
- config.singleRun = true
- }
- if (helper.isString(config.reporters)) {
- config.reporters = config.reporters.split(',')
- }
- if (config.client && config.client.args && !Array.isArray(config.client.args)) {
- throw new Error('Invalid configuration: client.args must be an array of strings')
- }
- if (config.browsers && Array.isArray(config.browsers) === false) {
- throw new TypeError('Invalid configuration: browsers option must be an array')
- }
- if (config.formatError && !helper.isFunction(config.formatError)) {
- throw new TypeError('Invalid configuration: formatError option must be a function.')
- }
- if (config.processKillTimeout && !helper.isNumber(config.processKillTimeout)) {
- throw new TypeError('Invalid configuration: processKillTimeout option must be a number.')
- }
- const defaultClient = config.defaultClient || {}
- Object.keys(defaultClient).forEach(function (key) {
- const option = config.client[key]
- config.client[key] = helper.isDefined(option) ? option : defaultClient[key]
- })
- // normalize preprocessors
- const preprocessors = config.preprocessors || {}
- const normalizedPreprocessors = config.preprocessors = Object.create(null)
- Object.keys(preprocessors).forEach(function (pattern) {
- const normalizedPattern = helper.normalizeWinPath(basePathResolve(pattern))
- normalizedPreprocessors[normalizedPattern] = helper.isString(preprocessors[pattern])
- ? [preprocessors[pattern]] : preprocessors[pattern]
- })
- // define custom launchers/preprocessors/reporters - create an inlined plugin
- const module = Object.create(null)
- let hasSomeInlinedPlugin = false
- const types = ['launcher', 'preprocessor', 'reporter']
- types.forEach(function (type) {
- const definitions = config['custom' + helper.ucFirst(type) + 's'] || {}
- Object.keys(definitions).forEach(function (name) {
- const definition = definitions[name]
- if (!helper.isObject(definition)) {
- return log.warn('Can not define %s %s. Definition has to be an object.', type, name)
- }
- if (!helper.isString(definition.base)) {
- return log.warn('Can not define %s %s. Missing base %s.', type, name, type)
- }
- const token = type + ':' + definition.base
- const locals = {
- args: ['value', definition]
- }
- module[type + ':' + name] = ['factory', function (injector) {
- const plugin = injector.createChild([locals], [token]).get(token)
- if (type === 'launcher' && helper.isDefined(definition.displayName)) {
- plugin.displayName = definition.displayName
- }
- return plugin
- }]
- hasSomeInlinedPlugin = true
- })
- })
- if (hasSomeInlinedPlugin) {
- config.plugins.push(module)
- }
- return config
- }
- class Config {
- constructor () {
- this.LOG_DISABLE = constant.LOG_DISABLE
- this.LOG_ERROR = constant.LOG_ERROR
- this.LOG_WARN = constant.LOG_WARN
- this.LOG_INFO = constant.LOG_INFO
- this.LOG_DEBUG = constant.LOG_DEBUG
- // DEFAULT CONFIG
- this.frameworks = []
- this.protocol = 'http:'
- this.port = constant.DEFAULT_PORT
- this.listenAddress = constant.DEFAULT_LISTEN_ADDR
- this.hostname = constant.DEFAULT_HOSTNAME
- this.httpsServerConfig = {}
- this.basePath = ''
- this.files = []
- this.browserConsoleLogOptions = {
- level: 'debug',
- format: '%b %T: %m',
- terminal: true
- }
- this.customContextFile = null
- this.customDebugFile = null
- this.customClientContextFile = null
- this.exclude = []
- this.logLevel = constant.LOG_INFO
- this.colors = true
- this.autoWatch = true
- this.autoWatchBatchDelay = 250
- this.restartOnFileChange = false
- this.usePolling = process.platform === 'linux'
- this.reporters = ['progress']
- this.singleRun = false
- this.browsers = []
- this.captureTimeout = 60000
- this.proxies = {}
- this.proxyValidateSSL = true
- this.preprocessors = {}
- this.urlRoot = '/'
- this.upstreamProxy = undefined
- this.reportSlowerThan = 0
- this.loggers = [constant.CONSOLE_APPENDER]
- this.transports = ['polling', 'websocket']
- this.forceJSONP = false
- this.plugins = ['karma-*']
- this.defaultClient = this.client = {
- args: [],
- useIframe: true,
- runInParent: false,
- captureConsole: true,
- clearContext: true
- }
- this.browserDisconnectTimeout = 2000
- this.browserDisconnectTolerance = 0
- this.browserNoActivityTimeout = 10000
- this.processKillTimeout = 2000
- this.concurrency = Infinity
- this.failOnEmptyTestSuite = true
- this.retryLimit = 2
- this.detached = false
- this.crossOriginAttribute = true
- }
- set (newConfig) {
- _.mergeWith(this, newConfig, (obj, src) => {
- // Overwrite arrays to keep consistent with #283
- if (_.isArray(src)) {
- return src
- }
- })
- }
- }
- const CONFIG_SYNTAX_HELP = ' module.exports = function(config) {\n' +
- ' config.set({\n' +
- ' // your config\n' +
- ' });\n' +
- ' };\n'
- function parseConfig (configFilePath, cliOptions) {
- let configModule
- if (configFilePath) {
- try {
- configModule = require(configFilePath)
- if (typeof configModule === 'object' && typeof configModule.default !== 'undefined') {
- configModule = configModule.default
- }
- } catch (e) {
- if (e.code === 'MODULE_NOT_FOUND' && e.message.indexOf(configFilePath) !== -1) {
- log.error('File %s does not exist!', configFilePath)
- } else {
- log.error('Invalid config file!\n ' + e.stack)
- const extension = path.extname(configFilePath)
- if (extension === '.coffee' && !COFFEE_SCRIPT_AVAILABLE) {
- log.error('You need to install CoffeeScript.\n' +
- ' npm install coffee-script --save-dev')
- } else if (extension === '.ls' && !LIVE_SCRIPT_AVAILABLE) {
- log.error('You need to install LiveScript.\n' +
- ' npm install LiveScript --save-dev')
- } else if (extension === '.ts' && !TYPE_SCRIPT_AVAILABLE) {
- log.error('You need to install TypeScript.\n' +
- ' npm install typescript ts-node --save-dev')
- }
- }
- return process.exit(1)
- }
- if (!helper.isFunction(configModule)) {
- log.error('Config file must export a function!\n' + CONFIG_SYNTAX_HELP)
- return process.exit(1)
- }
- } else {
- // if no config file path is passed, we define a dummy config module.
- configModule = () => {}
- }
- const config = new Config()
- // save and reset hostname and listenAddress so we can detect if the user
- // changed them
- const defaultHostname = config.hostname
- config.hostname = null
- const defaultListenAddress = config.listenAddress
- config.listenAddress = null
- // add the user's configuration in
- config.set(cliOptions)
- try {
- configModule(config)
- } catch (e) {
- log.error('Error in config file!\n', e)
- return process.exit(1)
- }
- // merge the config from config file and cliOptions (precedence)
- config.set(cliOptions)
- // if the user changed listenAddress, but didn't set a hostname, warn them
- if (config.hostname === null && config.listenAddress !== null) {
- log.warn('ListenAddress was set to %s but hostname was left as the default: ' +
- '%s. If your browsers fail to connect, consider changing the hostname option.',
- config.listenAddress, defaultHostname)
- }
- // restore values that weren't overwritten by the user
- if (config.hostname === null) {
- config.hostname = defaultHostname
- }
- if (config.listenAddress === null) {
- config.listenAddress = defaultListenAddress
- }
- // configure the logger as soon as we can
- logger.setup(config.logLevel, config.colors, config.loggers)
- if (configFilePath) {
- log.debug('Loading config %s', configFilePath)
- } else {
- log.debug('No config file specified.')
- }
- return normalizeConfig(config, configFilePath)
- }
- // PUBLIC API
- exports.parseConfig = parseConfig
- exports.Pattern = Pattern
- exports.createPatternObject = createPatternObject
- exports.Config = Config
|