2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2010-12-05 00:20:34 +01:00
|
|
|
var common = require('../common');
|
|
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
2009-07-31 18:34:27 +02:00
|
|
|
|
2010-12-05 23:33:52 +01:00
|
|
|
var sent_body = '';
|
2009-07-31 18:34:27 +02:00
|
|
|
var server_req_complete = false;
|
|
|
|
var client_res_complete = false;
|
|
|
|
|
2009-09-28 12:36:36 +02:00
|
|
|
var server = http.createServer(function(req, res) {
|
2010-12-05 23:33:52 +01:00
|
|
|
assert.equal('POST', req.method);
|
|
|
|
req.setEncoding('utf8');
|
2009-07-31 18:34:27 +02:00
|
|
|
|
2011-10-15 01:08:36 +02:00
|
|
|
req.on('data', function(chunk) {
|
2010-12-05 23:33:52 +01:00
|
|
|
console.log('server got: ' + JSON.stringify(chunk));
|
2009-07-31 18:34:27 +02:00
|
|
|
sent_body += chunk;
|
|
|
|
});
|
|
|
|
|
2011-10-15 01:08:36 +02:00
|
|
|
req.on('end', function() {
|
2009-07-31 18:34:27 +02:00
|
|
|
server_req_complete = true;
|
2010-12-05 23:33:52 +01:00
|
|
|
console.log('request complete from server');
|
2010-02-25 21:54:48 +01:00
|
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
2010-02-17 07:16:29 +01:00
|
|
|
res.write('hello\n');
|
2010-04-08 19:44:22 +02:00
|
|
|
res.end();
|
2009-07-31 18:34:27 +02:00
|
|
|
});
|
|
|
|
});
|
2010-07-15 20:47:25 +02:00
|
|
|
server.listen(common.PORT);
|
2009-07-31 18:34:27 +02:00
|
|
|
|
2011-10-15 01:08:36 +02:00
|
|
|
server.on('listening', function() {
|
2011-08-14 08:02:14 +02:00
|
|
|
var req = http.request({
|
2011-10-05 00:08:18 +02:00
|
|
|
port: common.PORT,
|
2011-08-14 08:02:14 +02:00
|
|
|
method: 'POST',
|
2011-10-05 00:08:18 +02:00
|
|
|
path: '/'
|
2011-08-14 08:02:14 +02:00
|
|
|
}, function(res) {
|
2010-12-05 23:33:52 +01:00
|
|
|
res.setEncoding('utf8');
|
2011-10-15 01:08:36 +02:00
|
|
|
res.on('data', function(chunk) {
|
2010-08-12 01:38:42 +02:00
|
|
|
console.log(chunk);
|
|
|
|
});
|
2011-10-15 01:08:36 +02:00
|
|
|
res.on('end', function() {
|
2010-08-12 01:38:42 +02:00
|
|
|
client_res_complete = true;
|
|
|
|
server.close();
|
|
|
|
});
|
2009-08-26 18:22:00 +02:00
|
|
|
});
|
2011-08-14 08:02:14 +02:00
|
|
|
|
|
|
|
req.write('1\n');
|
|
|
|
req.write('2\n');
|
|
|
|
req.write('3\n');
|
|
|
|
req.end();
|
|
|
|
|
|
|
|
common.error('client finished sending request');
|
2009-08-26 18:22:00 +02:00
|
|
|
});
|
2009-07-31 18:34:27 +02:00
|
|
|
|
2011-10-15 01:08:36 +02:00
|
|
|
process.on('exit', function() {
|
2010-12-05 23:33:52 +01:00
|
|
|
assert.equal('1\n2\n3\n', sent_body);
|
2009-11-28 18:26:59 +01:00
|
|
|
assert.equal(true, server_req_complete);
|
|
|
|
assert.equal(true, client_res_complete);
|
2009-08-26 18:51:04 +02:00
|
|
|
});
|