2010-07-16 02:47:25 +08:00
|
|
|
common = require("../common");
|
|
|
|
assert = common.assert
|
2010-04-22 06:15:21 +08:00
|
|
|
|
2010-07-16 02:47:25 +08:00
|
|
|
http = require('http');
|
|
|
|
childProcess = require('child_process');
|
2010-04-22 06:15:21 +08:00
|
|
|
|
|
|
|
s = http.createServer(function (request, response) {
|
|
|
|
response.writeHead(304);
|
|
|
|
response.end();
|
2010-05-28 11:28:12 +08:00
|
|
|
});
|
2010-04-23 06:48:57 +08:00
|
|
|
|
2010-07-16 02:47:25 +08:00
|
|
|
s.listen(common.PORT, function () {
|
|
|
|
childProcess.exec('curl -i http://127.0.0.1:'+common.PORT+'/', function (err, stdout, stderr) {
|
2010-04-23 06:48:57 +08:00
|
|
|
if (err) throw err;
|
|
|
|
s.close();
|
2010-07-16 02:47:25 +08:00
|
|
|
common.error('curled response correctly');
|
|
|
|
common.error(common.inspect(stdout));
|
2010-04-23 06:48:57 +08:00
|
|
|
});
|
2010-04-22 06:15:21 +08:00
|
|
|
});
|
|
|
|
|
2010-07-16 02:47:25 +08:00
|
|
|
console.log('Server running at http://127.0.0.1:'+common.PORT+'/')
|