2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2016-05-29 03:06:56 -04:00
|
|
|
require('../common');
|
2011-11-28 09:36:54 -08:00
|
|
|
var assert = require('assert');
|
|
|
|
var http = require('http');
|
|
|
|
|
|
|
|
var test = 1;
|
|
|
|
|
2012-01-17 19:43:34 +01:00
|
|
|
var server = http.createServer(function(req, res) {
|
2011-11-28 09:36:54 -08:00
|
|
|
res.writeHead(200, {'Content-Type': 'text/plain'});
|
|
|
|
if (test === 1) {
|
|
|
|
// write should accept string
|
|
|
|
res.write('string');
|
|
|
|
// write should accept buffer
|
2016-01-25 15:00:06 -08:00
|
|
|
res.write(Buffer.from('asdf'));
|
2011-11-28 09:36:54 -08:00
|
|
|
|
|
|
|
// write should not accept an Array
|
|
|
|
assert.throws(function() {
|
|
|
|
res.write(['array']);
|
|
|
|
}, TypeError, 'first argument must be a string or Buffer');
|
|
|
|
|
|
|
|
// end should not accept an Array
|
|
|
|
assert.throws(function() {
|
|
|
|
res.end(['moo']);
|
|
|
|
}, TypeError, 'first argument must be a string or Buffer');
|
|
|
|
|
|
|
|
// end should accept string
|
|
|
|
res.end('string');
|
|
|
|
} else if (test === 2) {
|
|
|
|
// end should accept Buffer
|
2016-01-25 15:00:06 -08:00
|
|
|
res.end(Buffer.from('asdf'));
|
2011-11-28 09:36:54 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-05-29 03:06:56 -04:00
|
|
|
server.listen(0, function() {
|
2011-11-28 09:36:54 -08:00
|
|
|
// just make a request, other tests handle responses
|
2016-05-29 03:06:56 -04:00
|
|
|
http.get({port: this.address().port}, function(res) {
|
2012-12-13 07:47:33 -08:00
|
|
|
res.resume();
|
2013-08-12 15:01:05 -07:00
|
|
|
// lazy serial test, because we can only call end once per request
|
2011-11-28 09:36:54 -08:00
|
|
|
test += 1;
|
|
|
|
// do it again to test .end(Buffer);
|
2016-05-29 03:06:56 -04:00
|
|
|
http.get({port: server.address().port}, function(res) {
|
2012-12-13 07:47:33 -08:00
|
|
|
res.resume();
|
2011-11-28 09:36:54 -08:00
|
|
|
server.close();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|