Now that https://github.com/laurentj/slimerjs/issues/333 is properly fixed (see 911fcb671a) we can no longer read Slimer's exit code from a file. Instead, we can just use the process exit code, which simplifies the test-rendering.js script.
54 lines
1.5 KiB
JavaScript
54 lines
1.5 KiB
JavaScript
/**
|
|
* This task starts a dev server that provides a script loader for OpenLayers
|
|
* and Closure Library and runs rendering tests in SlimerJS.
|
|
*/
|
|
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
var spawn = require('child_process').spawn;
|
|
|
|
var slimerjs = require('slimerjs-edge');
|
|
|
|
var serve = require('./serve');
|
|
var listen = require('./test').listen;
|
|
|
|
|
|
/**
|
|
* Create the debug server and run tests.
|
|
*/
|
|
serve.createServer(function(err, server) {
|
|
if (err) {
|
|
process.stderr.write(err.message + '\n');
|
|
process.exit(1);
|
|
}
|
|
|
|
listen(3001, 3005, server, function(err) {
|
|
if (err) {
|
|
process.stderr.write('Server failed to start: ' + err.message + '\n');
|
|
process.exit(1);
|
|
}
|
|
|
|
var address = server.address();
|
|
var url = 'http://' + address.address + ':' + address.port;
|
|
var profile = path.join(__dirname, '../build/slimerjs-profile');
|
|
var args = [
|
|
'-profile',
|
|
profile,
|
|
path.join(__dirname,
|
|
'../test_rendering/test.js'),
|
|
url + '/test_rendering/index.html'
|
|
];
|
|
|
|
// The current version of slimerjs is 0.9.6, but this version does not work
|
|
// for us because of https://github.com/laurentj/slimerjs/issues/333. This
|
|
// issue is now fixed in master and slimerjs-edge (nightly builds) works for
|
|
// us. But we should use slimerjs instead of slimerjs-edge when a new
|
|
// release is published.
|
|
var child = spawn(slimerjs.path, args, {stdio: 'inherit'});
|
|
child.on('exit', function(code) {
|
|
process.exit(code);
|
|
});
|
|
});
|
|
|
|
});
|