2010-04-22 06:15:21 +08:00
|
|
|
require('../common');
|
|
|
|
|
|
|
|
var sys = require('sys'),
|
|
|
|
http = require('http'),
|
|
|
|
childProcess = require('child_process');
|
|
|
|
|
|
|
|
s = http.createServer(function (request, response) {
|
|
|
|
response.writeHead(304);
|
|
|
|
response.end();
|
|
|
|
})
|
2010-05-05 13:06:46 +08:00
|
|
|
s.listen(PORT);
|
|
|
|
sys.puts('Server running at http://127.0.0.1:'+PORT+'/')
|
2010-04-23 06:48:57 +08:00
|
|
|
|
|
|
|
s.addListener('listening', function () {
|
|
|
|
|
2010-05-27 08:59:55 +08:00
|
|
|
childProcess.exec('curl -i http://127.0.0.1:'+PORT+'/', function (err, stdout, stderr) {
|
2010-04-23 06:48:57 +08:00
|
|
|
if (err) throw err;
|
|
|
|
s.close();
|
2010-05-27 08:59:55 +08:00
|
|
|
error('curled response correctly');
|
|
|
|
error(sys.inspect(stdout));
|
2010-04-23 06:48:57 +08:00
|
|
|
});
|
2010-04-22 06:15:21 +08:00
|
|
|
|
|
|
|
});
|
|
|
|
|