Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 7283fdf

Browse files
committed
fix(launcher): exit code is always 100 for sharded and 1 for nonsharded tests
1 parent f645252 commit 7283fdf

File tree

2 files changed

+43
-23
lines changed

2 files changed

+43
-23
lines changed

lib/launcher.js

+36-18
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ var log_ = function() {
3030
* @param {Object=} additionalConfig
3131
*/
3232
var init = function(configFile, additionalConfig) {
33-
34-
var runnerErrorCount = 0;
35-
3633
var configParser = new ConfigParser();
3734
if (configFile) {
3835
configParser.addFileConfig(configFile);
@@ -101,16 +98,21 @@ var init = function(configFile, additionalConfig) {
10198
this.process.on('error', function(err) {
10299
self.reporter.flush();
103100
log_('Runner Process(' + self.process.pid + ') Error: ' + err);
104-
runnerErrorCount += 1;
101+
self.reporter.exitCode = RUNNERS_FAILED_EXIT_CODE;
105102
});
106103

107104
this.process.on('exit', function(code) {
108105
self.reporter.flush();
109106
if (code) {
110-
log_('Runner Process Exited With Error Code: ' + code);
111-
runnerErrorCount += 1;
107+
if (self.reporter.failedCount) {
108+
log_('Test runner exited with ' + self.reporter.failedCount +
109+
' failed test(s)');
110+
} else {
111+
log_('Runner process exited unexpectedly with error code: ' + code);
112+
}
112113
}
113114
self.reporter.exitCode = code;
115+
114116
if (typeof testsDoneCallback === 'function') {
115117
testsDoneCallback();
116118
}
@@ -162,7 +164,7 @@ var init = function(configFile, additionalConfig) {
162164
cleanUpAndExit(exitCode);
163165
}).catch(function(err) {
164166
log_('Error:', err.stack || err.message || err);
165-
cleanUpAndExit(1);
167+
cleanUpAndExit(RUNNERS_FAILED_EXIT_CODE);
166168
});
167169
} else {
168170
if (config.debug) {
@@ -193,21 +195,21 @@ var init = function(configFile, additionalConfig) {
193195
deferred.promise.then(function() {
194196
reporter.reportSummary();
195197
var exitCode = 0;
196-
if (runnerErrorCount > 0) {
198+
if (reporter.totalProcessFailures() > 0) {
197199
exitCode = RUNNERS_FAILED_EXIT_CODE;
200+
} else if (reporter.totalSpecFailures() > 0) {
201+
exitCode = 1;
198202
}
199203
return cleanUpAndExit(exitCode);
200204
});
201205

202206
process.on('exit', function(code) {
203-
204-
if (code && code != RUNNERS_FAILED_EXIT_CODE) {
207+
if (code) {
205208
log_('Process exited with error code ' + code);
206-
} else if (!code &&
207-
scheduler.numTasksOutstanding() > 0) {
208-
code = 1;
209-
log_('BUG: launcher exited with ' +
210-
scheduler.numTasksOutstanding() + ' tasks remaining');
209+
} else if (scheduler.numTasksOutstanding() > 0) {
210+
code = RUNNERS_FAILED_EXIT_CODE;
211+
log_('BUG: launcher exited with ' +
212+
scheduler.numTasksOutstanding() + ' tasks remaining');
211213
}
212214
process.exit(code);
213215
});
@@ -229,20 +231,36 @@ var reporter = {
229231
return taskReporter;
230232
},
231233

232-
reportSummary: function() {
234+
totalSpecFailures: function() {
233235
var specFailures = 0;
236+
this.taskReporters_.forEach(function(taskReporter) {
237+
specFailures += taskReporter.failedCount;
238+
});
239+
return specFailures;
240+
},
241+
242+
totalProcessFailures: function() {
234243
var processFailures = 0;
244+
this.taskReporters_.forEach(function(taskReporter) {
245+
if (!taskReporter.failedCount && taskReporter.exitCode !== 0) {
246+
processFailures += 1;
247+
}
248+
});
249+
return processFailures;
250+
},
251+
252+
reportSummary: function() {
253+
var specFailures = this.totalSpecFailures();
254+
var processFailures = this.totalProcessFailures();
235255
this.taskReporters_.forEach(function(taskReporter) {
236256
var capability = taskReporter.task.capability;
237257
var shortName = (capability.browserName) ? capability.browserName : '';
238258
shortName += (capability.version) ? capability.version : '';
239259
shortName += (' #' + taskReporter.task.taskId);
240260
if (taskReporter.failedCount) {
241261
log_(shortName + ' failed ' + taskReporter.failedCount + ' test(s)');
242-
specFailures += taskReporter.failedCount;
243262
} else if (taskReporter.exitCode !== 0) {
244263
log_(shortName + ' failed with exit code: ' + taskReporter.exitCode);
245-
processFailures += 1;
246264
} else {
247265
log_(shortName + ' passed');
248266
}

lib/runner.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -201,11 +201,13 @@ Runner.prototype.run = function() {
201201
this.setTestPreparer(this.config_.onPrepare);
202202

203203
var gracefulShutdown = function(driver) {
204-
return driver.getSession().then(function(session_) {
205-
if (session_) {
206-
return driver.quit();
207-
}
208-
});
204+
if (driver) {
205+
return driver.getSession().then(function(session_) {
206+
if (session_) {
207+
return driver.quit();
208+
}
209+
});
210+
}
209211
};
210212

211213
// 1) Setup environment

0 commit comments

Comments
 (0)