mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
922 B
35 lines
922 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
// Verify that ServerResponse.getHeader() works correctly even after
|
|
// the response header has been sent. Issue 752 on github.
|
|
|
|
var s = http.createServer(function(req, res) {
|
|
var contentType = 'Content-Type';
|
|
var plain = 'text/plain';
|
|
res.setHeader(contentType, plain);
|
|
assert.ok(!res.headersSent);
|
|
res.writeHead(200);
|
|
assert.ok(res.headersSent);
|
|
res.end('hello world\n');
|
|
// This checks that after the headers have been sent, getHeader works
|
|
// and does not throw an exception (Issue 752)
|
|
assert.doesNotThrow(
|
|
function() {
|
|
assert.equal(plain, res.getHeader(contentType));
|
|
}
|
|
);
|
|
});
|
|
|
|
s.listen(0, runTest);
|
|
|
|
function runTest() {
|
|
http.get({ port: this.address().port }, function(response) {
|
|
response.on('end', function() {
|
|
s.close();
|
|
});
|
|
response.resume();
|
|
});
|
|
}
|
|
|