mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
093dfaf801
test/simple/test-url.js:31:(0110) Line too long (82 characters). test/simple/test-url.js:39:(0110) Line too long (85 characters). test/simple/test-url.js:40:(0110) Line too long (92 characters).
23 lines
705 B
JavaScript
23 lines
705 B
JavaScript
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
|
var childProcess = require('child_process');
|
|
|
|
var s = http.createServer(function(request, response) {
|
|
response.writeHead(304);
|
|
response.end();
|
|
});
|
|
|
|
s.listen(common.PORT, function() {
|
|
childProcess.exec('curl -i http://127.0.0.1:' + common.PORT + '/',
|
|
function(err, stdout, stderr) {
|
|
if (err) throw err;
|
|
s.close();
|
|
common.error('curled response correctly');
|
|
common.error(common.inspect(stdout));
|
|
});
|
|
});
|
|
|
|
console.log('Server running at http://127.0.0.1:' + common.PORT + '/');
|