nodejs/test/parallel/test-http-multi-line-headers.js

35 lines
844 B
JavaScript
Raw Normal View History

'use strict';
const common = require('../common');
const assert = require('assert');
const http = require('http');
const net = require('net');
const server = net.createServer(function(conn) {
const body = 'Yet another node.js server.';
const response =
'HTTP/1.1 200 OK\r\n' +
'Connection: close\r\n' +
'Content-Length: ' + body.length + '\r\n' +
'Content-Type: text/plain;\r\n' +
' x-unix-mode=0600;\r\n' +
' name="hello.txt"\r\n' +
'\r\n' +
body;
conn.end(response);
server.close();
});
server.listen(0, common.mustCall(function() {
http.get({
host: '127.0.0.1',
port: this.address().port
}, common.mustCall(function(res) {
assert.equal(res.headers['content-type'],
2014-07-23 23:08:46 +04:00
'text/plain; x-unix-mode=0600; name="hello.txt"');
res.destroy();
}));
}));