Add script to run specs in CI, fixes #61.

This commit is contained in:
Cheng Zhao 2013-08-21 11:15:22 +08:00
Родитель 0cd3f3cc40
Коммит d160da7752
4 изменённых файлов: 47 добавлений и 2 удалений

8
script/cibuild Executable file
Просмотреть файл

@ -0,0 +1,8 @@
#!/usr/bin/env python
import os
import subprocess
test = os.path.join(os.path.dirname(__file__), 'test.py')
subprocess.check_call([test, '--ci'])

Просмотреть файл

@ -17,7 +17,7 @@ def main():
else:
atom_shell = os.path.join(SOURCE_ROOT, 'out', 'Debug', 'atom.exe')
subprocess.check_call([atom_shell, 'spec'])
subprocess.check_call([atom_shell, 'spec'] + sys.argv[1:])
if __name__ == '__main__':

Просмотреть файл

@ -15,6 +15,21 @@
require('coffee-script'); // Supports .coffee tests.
// Rediret all output to browser.
var ipc = require('ipc');
global.__defineGetter__('console', function() {
return {
log: function() {
args = Array.prototype.slice.call(arguments);
ipc.sendChannel('console.log', args);
},
error: function() {
args = Array.prototype.slice.call(arguments);
ipc.sendChannel('console.error', args);
},
}
});
var Mocha = require('mocha');
var mocha = new Mocha();
@ -24,6 +39,14 @@
if (query.grep) mocha.grep(query.grep);
if (query.invert) mocha.invert();
// Check if we are running in CI.
var argv = require('remote').process.argv;
var isCi = false;
if (argv[1] == '--ci') {
isCi = true;
mocha.reporter('tap');
}
// Read all test files.
var walker = require('walkdir').walk(__dirname);
@ -33,8 +56,10 @@
});
walker.on('end', function() {
mocha.run(function() {
var runner = mocha.run(function() {
Mocha.utils.highlightTags('code');
if (isCi)
ipc.sendChannel('process.exit', runner.failures);
});
});
})();

Просмотреть файл

@ -10,6 +10,18 @@ ipc.on('message', function() {
ipc.send.apply(this, arguments);
});
ipc.on('console.log', function(pid, rid, args) {
console.log.apply(console, args);
});
ipc.on('console.error', function(pid, rid, args) {
console.log.apply(console, args);
});
ipc.on('process.exit', function(pid, rid, code) {
process.exit(code);
});
process.on('uncaughtException', function() {
window.openDevTools();
});