123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /**
- * Runner middleware is responsible for communication with `karma run`.
- *
- * It basically triggers a test run and streams stdout back.
- */
- var _ = require('lodash')
- var path = require('path')
- var helper = require('../helper')
- var log = require('../logger').create()
- var constant = require('../constants')
- var json = require('body-parser').json()
- // TODO(vojta): disable when single-run mode
- var createRunnerMiddleware = function (emitter, fileList, capturedBrowsers, reporter, executor,
- /* config.protocol */ protocol, /* config.hostname */ hostname, /* config.port */
- port, /* config.urlRoot */ urlRoot, config) {
- return function (request, response, next) {
- if (request.url !== '/__run__' && request.url !== urlRoot + 'run') {
- return next()
- }
- log.debug('Execution (fired by runner)')
- response.writeHead(200)
- if (!capturedBrowsers.length) {
- var url = protocol + '//' + hostname + ':' + port + urlRoot
- return response.end('No captured browser, open ' + url + '\n')
- }
- json(request, response, function () {
- if (!capturedBrowsers.areAllReady([])) {
- response.write('Waiting for previous execution...\n')
- }
- var data = request.body
- emitter.once('run_start', function () {
- var responseWrite = response.write.bind(response)
- responseWrite.colors = data.colors
- reporter.addAdapter(responseWrite)
- // clean up, close runner response
- emitter.once('run_complete', function (browsers, results) {
- reporter.removeAdapter(responseWrite)
- var emptyTestSuite = (results.failed + results.success) === 0 ? 0 : 1
- response.end(constant.EXIT_CODE + emptyTestSuite + results.exitCode)
- })
- })
- if (_.isEmpty(data.args)) {
- log.debug('Ignoring empty client.args from run command')
- } else if ((_.isArray(data.args) && _.isArray(config.client.args)) ||
- (_.isPlainObject(data.args) && _.isPlainObject(config.client.args))) {
- log.debug('Merging client.args with ', data.args)
- config.client.args = _.merge(config.client.args, data.args)
- } else {
- log.warn('Replacing client.args with ', data.args, ' as their types do not match.')
- config.client.args = data.args
- }
- var fullRefresh = true
- if (helper.isArray(data.changedFiles)) {
- data.changedFiles.forEach(function (filepath) {
- fileList.changeFile(path.resolve(config.basePath, filepath))
- fullRefresh = false
- })
- }
- if (helper.isArray(data.addedFiles)) {
- data.addedFiles.forEach(function (filepath) {
- fileList.addFile(path.resolve(config.basePath, filepath))
- fullRefresh = false
- })
- }
- if (helper.isArray(data.removedFiles)) {
- data.removedFiles.forEach(function (filepath) {
- fileList.removeFile(path.resolve(config.basePath, filepath))
- fullRefresh = false
- })
- }
- if (fullRefresh && data.refresh !== false) {
- log.debug('Refreshing all the files / patterns')
- fileList.refresh().then(function () {
- // Wait for the file list refresh to complete before starting test run,
- // otherwise the context.html generation might not see new/updated files.
- if (!config.autoWatch) {
- executor.schedule()
- }
- })
- } else {
- executor.schedule()
- }
- })
- }
- }
- createRunnerMiddleware.$inject = ['emitter', 'fileList', 'capturedBrowsers', 'reporter', 'executor',
- 'config.protocol', 'config.hostname', 'config.port', 'config.urlRoot', 'config']
- // PUBLIC API
- exports.create = createRunnerMiddleware
|