mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
741 B
37 lines
741 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var expected = 'Post Body For Test';
|
|
var result = '';
|
|
|
|
var server = http.Server(function(req, res) {
|
|
req.setEncoding('utf8');
|
|
req.on('data', function(chunk) {
|
|
result += chunk;
|
|
});
|
|
|
|
req.on('end', function() {
|
|
server.close();
|
|
});
|
|
|
|
res.writeHead(200);
|
|
res.end("hello world\n");
|
|
});
|
|
|
|
server.listen(common.PORT, function() {
|
|
http.request({
|
|
port: common.PORT,
|
|
path: '/',
|
|
method: 'POST'
|
|
}, function(res) {
|
|
console.log(res.statusCode);
|
|
}).on('error', function(e) {
|
|
console.log(e.message);
|
|
process.exit(1);
|
|
}).end(expected);
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
assert.equal(expected, result);
|
|
});
|
|
|