| 'use strict'; |
| |
| const common = require('../common'); |
| const assert = require('assert'); |
| |
| const http = require('http'); |
| const net = require('net'); |
| |
| function serverHandler(server, msg) { |
| const client = net.connect(server.address().port, 'localhost'); |
| |
| let response = ''; |
| |
| client.on('data', common.mustCall((chunk) => { |
| response += chunk; |
| })); |
| |
| client.setEncoding('utf8'); |
| client.on('error', common.mustNotCall()); |
| client.on('end', common.mustCall(() => { |
| assert.strictEqual( |
| response, |
| 'HTTP/1.1 400 Bad Request\r\nConnection: close\r\n\r\n' |
| ); |
| server.close(); |
| })); |
| client.write(msg); |
| client.resume(); |
| } |
| |
| { |
| const msg = [ |
| 'GET / HTTP/1.1', |
| 'Host: localhost', |
| 'Dummy: x\rContent-Length: 23', |
| '', |
| 'GET / HTTP/1.1', |
| 'Dummy: GET /admin HTTP/1.1', |
| 'Host: localhost', |
| '', |
| '', |
| ].join('\r\n'); |
| |
| const server = http.createServer(common.mustNotCall()); |
| |
| server.listen(0, common.mustSucceed(serverHandler.bind(null, server, msg))); |
| } |
| |
| { |
| const msg = [ |
| 'POST / HTTP/1.1', |
| 'Host: localhost', |
| 'x:x\rTransfer-Encoding: chunked', |
| '', |
| '1', |
| 'A', |
| '0', |
| '', |
| '', |
| ].join('\r\n'); |
| |
| const server = http.createServer(common.mustNotCall()); |
| |
| server.listen(0, common.mustSucceed(serverHandler.bind(null, server, msg))); |
| } |
| |
| { |
| const msg = [ |
| 'POST / HTTP/1.1', |
| 'Host: localhost', |
| 'x:\rTransfer-Encoding: chunked', |
| '', |
| '1', |
| 'A', |
| '0', |
| '', |
| '', |
| ].join('\r\n'); |
| |
| const server = http.createServer(common.mustNotCall()); |
| |
| server.listen(0, common.mustSucceed(serverHandler.bind(null, server, msg))); |
| } |