|
| 1 | +'use strict'; |
| 2 | +require('../common'); |
| 3 | +const assert = require('assert'); |
| 4 | + |
| 5 | +const net = require('net'); |
| 6 | +const http = require('http'); |
| 7 | + |
| 8 | +const server = http.createServer(function(request, response) { |
| 9 | + // When the connection header is removed, for HTTP/1.1 the connection should still persist. |
| 10 | + // For HTTP/1.0, the connection should be closed after the response automatically. |
| 11 | + response.removeHeader('connection'); |
| 12 | + |
| 13 | + response.end('beep boop\n'); |
| 14 | +}); |
| 15 | + |
| 16 | +const agent = new http.Agent({ keepAlive: true }); |
| 17 | + |
| 18 | +function makeHttp11Request(cb) { |
| 19 | + http.get({ |
| 20 | + port: server.address().port, |
| 21 | + agent |
| 22 | + }, function(res) { |
| 23 | + const socket = res.socket; |
| 24 | + |
| 25 | + assert.strictEqual(res.statusCode, 200); |
| 26 | + assert.strictEqual(res.headers.connection, undefined); |
| 27 | + |
| 28 | + res.setEncoding('ascii'); |
| 29 | + let response = ''; |
| 30 | + res.on('data', function(chunk) { |
| 31 | + response += chunk; |
| 32 | + }); |
| 33 | + res.on('end', function() { |
| 34 | + assert.strictEqual(response, 'beep boop\n'); |
| 35 | + |
| 36 | + // Wait till next tick to ensure that the socket is returned to the agent before |
| 37 | + // we continue to the next request |
| 38 | + process.nextTick(function() { |
| 39 | + cb(socket); |
| 40 | + }); |
| 41 | + }); |
| 42 | + }); |
| 43 | +} |
| 44 | + |
| 45 | +function makeHttp10Request(cb) { |
| 46 | + // We have to manually make HTTP/1.0 requests since Node does not allow sending them: |
| 47 | + const socket = net.connect({ port: server.address().port }, function() { |
| 48 | + socket.write('GET / HTTP/1.0\r\n' + |
| 49 | + 'Host: localhost:' + server.address().port + '\r\n' + |
| 50 | + '\r\n'); |
| 51 | + socket.resume(); // Ignore the response itself |
| 52 | + |
| 53 | + setTimeout(function() { |
| 54 | + cb(socket); |
| 55 | + }, 10); |
| 56 | + }); |
| 57 | +} |
| 58 | + |
| 59 | +server.listen(0, function() { |
| 60 | + makeHttp11Request(function(firstSocket) { |
| 61 | + makeHttp11Request(function(secondSocket) { |
| 62 | + // Both HTTP/1.1 requests should have used the same socket: |
| 63 | + assert.strictEqual(firstSocket, secondSocket); |
| 64 | + |
| 65 | + makeHttp10Request(function(socket) { |
| 66 | + // The server should have immediately closed the HTTP/1.0 socket: |
| 67 | + assert.strictEqual(socket.closed, true); |
| 68 | + server.close(); |
| 69 | + }); |
| 70 | + }); |
| 71 | + }); |
| 72 | +}); |
0 commit comments