2015-05-19 11:00:06 +00:00
|
|
|
'use strict';
|
2016-05-29 07:06:56 +00:00
|
|
|
require('../common');
|
2016-12-30 23:38:06 +00:00
|
|
|
const http = require('http');
|
|
|
|
const net = require('net');
|
2012-09-08 19:43:55 +00:00
|
|
|
|
|
|
|
// Check that our HTTP server correctly handles HTTP/1.0 keep-alive requests.
|
|
|
|
check([{
|
|
|
|
name: 'keep-alive, no TE header',
|
|
|
|
requests: [{
|
|
|
|
expectClose: true,
|
|
|
|
data: 'POST / HTTP/1.0\r\n' +
|
|
|
|
'Connection: keep-alive\r\n' +
|
|
|
|
'\r\n'
|
|
|
|
}, {
|
|
|
|
expectClose: true,
|
|
|
|
data: 'POST / HTTP/1.0\r\n' +
|
|
|
|
'Connection: keep-alive\r\n' +
|
|
|
|
'\r\n'
|
|
|
|
}],
|
|
|
|
responses: [{
|
|
|
|
headers: {'Connection': 'keep-alive'},
|
|
|
|
chunks: ['OK']
|
|
|
|
}, {
|
|
|
|
chunks: []
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
name: 'keep-alive, with TE: chunked',
|
|
|
|
requests: [{
|
|
|
|
expectClose: false,
|
|
|
|
data: 'POST / HTTP/1.0\r\n' +
|
|
|
|
'Connection: keep-alive\r\n' +
|
|
|
|
'TE: chunked\r\n' +
|
|
|
|
'\r\n'
|
|
|
|
}, {
|
|
|
|
expectClose: true,
|
|
|
|
data: 'POST / HTTP/1.0\r\n' +
|
|
|
|
'\r\n'
|
|
|
|
}],
|
|
|
|
responses: [{
|
|
|
|
headers: {'Connection': 'keep-alive'},
|
|
|
|
chunks: ['OK']
|
|
|
|
}, {
|
|
|
|
chunks: []
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
name: 'keep-alive, with Transfer-Encoding: chunked',
|
|
|
|
requests: [{
|
|
|
|
expectClose: false,
|
|
|
|
data: 'POST / HTTP/1.0\r\n' +
|
|
|
|
'Connection: keep-alive\r\n' +
|
|
|
|
'\r\n'
|
|
|
|
}, {
|
|
|
|
expectClose: true,
|
|
|
|
data: 'POST / HTTP/1.0\r\n' +
|
|
|
|
'\r\n'
|
|
|
|
}],
|
|
|
|
responses: [{
|
|
|
|
headers: {'Connection': 'keep-alive',
|
|
|
|
'Transfer-Encoding': 'chunked'},
|
|
|
|
chunks: ['OK']
|
|
|
|
}, {
|
|
|
|
chunks: []
|
|
|
|
}]
|
|
|
|
}, {
|
|
|
|
name: 'keep-alive, with Content-Length',
|
|
|
|
requests: [{
|
|
|
|
expectClose: false,
|
|
|
|
data: 'POST / HTTP/1.0\r\n' +
|
|
|
|
'Connection: keep-alive\r\n' +
|
|
|
|
'\r\n'
|
|
|
|
}, {
|
|
|
|
expectClose: true,
|
|
|
|
data: 'POST / HTTP/1.0\r\n' +
|
|
|
|
'\r\n'
|
|
|
|
}],
|
|
|
|
responses: [{
|
|
|
|
headers: {'Connection': 'keep-alive',
|
|
|
|
'Content-Length': '2'},
|
|
|
|
chunks: ['OK']
|
|
|
|
}, {
|
|
|
|
chunks: []
|
|
|
|
}]
|
|
|
|
}]);
|
|
|
|
|
|
|
|
function check(tests) {
|
|
|
|
var test = tests[0];
|
2016-05-29 07:06:56 +00:00
|
|
|
var server;
|
|
|
|
if (test) {
|
|
|
|
server = http.createServer(serverHandler).listen(0, '127.0.0.1', client);
|
|
|
|
}
|
2012-09-08 19:43:55 +00:00
|
|
|
var current = 0;
|
|
|
|
|
|
|
|
function next() {
|
|
|
|
check(tests.slice(1));
|
|
|
|
}
|
|
|
|
|
2016-05-29 07:06:56 +00:00
|
|
|
function serverHandler(req, res) {
|
2012-09-08 19:43:55 +00:00
|
|
|
if (current + 1 === test.responses.length) this.close();
|
|
|
|
var ctx = test.responses[current];
|
2012-12-13 17:51:31 +00:00
|
|
|
console.error('< SERVER SENDING RESPONSE', ctx);
|
2012-09-08 19:43:55 +00:00
|
|
|
res.writeHead(200, ctx.headers);
|
2015-05-19 11:00:06 +00:00
|
|
|
ctx.chunks.slice(0, -1).forEach(function(chunk) { res.write(chunk); });
|
2012-09-08 19:43:55 +00:00
|
|
|
res.end(ctx.chunks[ctx.chunks.length - 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function client() {
|
|
|
|
if (current === test.requests.length) return next();
|
2016-05-29 07:06:56 +00:00
|
|
|
const port = server.address().port;
|
|
|
|
var conn = net.createConnection(port, '127.0.0.1', connected);
|
2012-09-08 19:43:55 +00:00
|
|
|
|
|
|
|
function connected() {
|
|
|
|
var ctx = test.requests[current];
|
2012-12-13 17:51:31 +00:00
|
|
|
console.error(' > CLIENT SENDING REQUEST', ctx);
|
2012-09-08 19:43:55 +00:00
|
|
|
conn.setEncoding('utf8');
|
|
|
|
conn.write(ctx.data);
|
|
|
|
|
|
|
|
function onclose() {
|
2012-12-13 17:51:31 +00:00
|
|
|
console.error(' > CLIENT CLOSE');
|
2012-09-08 19:43:55 +00:00
|
|
|
if (!ctx.expectClose) throw new Error('unexpected close');
|
|
|
|
client();
|
|
|
|
}
|
|
|
|
conn.on('close', onclose);
|
|
|
|
|
|
|
|
function ondata(s) {
|
2012-12-13 17:51:31 +00:00
|
|
|
console.error(' > CLIENT ONDATA %j %j', s.length, s.toString());
|
2012-09-08 19:43:55 +00:00
|
|
|
current++;
|
|
|
|
if (ctx.expectClose) return;
|
|
|
|
conn.removeListener('close', onclose);
|
2016-01-15 08:53:11 +00:00
|
|
|
conn.removeListener('data', ondata);
|
2012-09-08 19:43:55 +00:00
|
|
|
connected();
|
|
|
|
}
|
|
|
|
conn.on('data', ondata);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|