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.
30 lines
728 B
30 lines
728 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
var http = require('http');
|
|
var net = require('net');
|
|
|
|
var s = http.createServer(function(req, res) {
|
|
res.statusCode = 200;
|
|
res.statusMessage = 'Custom Message';
|
|
res.end('');
|
|
});
|
|
|
|
s.listen(common.PORT, test);
|
|
|
|
|
|
function test() {
|
|
var bufs = [];
|
|
var client = net.connect(common.PORT, function() {
|
|
client.write('GET / HTTP/1.1\r\nConnection: close\r\n\r\n');
|
|
});
|
|
client.on('data', function(chunk) {
|
|
bufs.push(chunk);
|
|
});
|
|
client.on('end', function() {
|
|
var head = Buffer.concat(bufs).toString('binary').split('\r\n')[0];
|
|
assert.equal('HTTP/1.1 200 Custom Message', head);
|
|
console.log('ok');
|
|
s.close();
|
|
});
|
|
}
|
|
|