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.
33 lines
708 B
33 lines
708 B
'use strict';
|
|
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
|
|
|
var expect = 'hex\nutf8\n';
|
|
var data = '';
|
|
var ended = false;
|
|
|
|
process.on('exit', function() {
|
|
assert(ended);
|
|
assert.equal(data, expect);
|
|
console.log('ok');
|
|
});
|
|
|
|
http.createServer(function(q, s) {
|
|
s.setHeader('content-length', expect.length);
|
|
s.write('6865780a', 'hex');
|
|
s.write('utf8\n');
|
|
s.end();
|
|
this.close();
|
|
}).listen(common.PORT, function() {
|
|
http.request({ port: common.PORT }).on('response', function(res) {
|
|
res.setEncoding('ascii');
|
|
res.on('data', function(c) {
|
|
data += c;
|
|
});
|
|
res.on('end', function() {
|
|
ended = true;
|
|
});
|
|
}).end();
|
|
});
|
|
|