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
810 B
35 lines
810 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
|
|
var testResBody = 'other stuff!\n';
|
|
|
|
var server = http.createServer(function(req, res) {
|
|
assert.ok(!('date' in req.headers),
|
|
'Request headers contained a Date.');
|
|
res.writeHead(200, {
|
|
'Content-Type': 'text/plain'
|
|
});
|
|
res.end(testResBody);
|
|
});
|
|
server.listen(common.PORT);
|
|
|
|
|
|
server.addListener('listening', function() {
|
|
var options = {
|
|
port: common.PORT,
|
|
path: '/',
|
|
method: 'GET'
|
|
};
|
|
var req = http.request(options, function(res) {
|
|
assert.ok('date' in res.headers,
|
|
'Response headers didn\'t contain a Date.');
|
|
res.addListener('end', function() {
|
|
server.close();
|
|
process.exit();
|
|
});
|
|
res.resume();
|
|
});
|
|
req.end();
|
|
});
|
|
|