2015-05-19 13:00:06 +02:00
|
|
|
'use strict';
|
2015-02-22 03:47:04 +01:00
|
|
|
var common = require('../common');
|
2012-10-07 22:26:03 +02:00
|
|
|
var W = require('_stream_writable');
|
2013-02-25 07:14:30 +01:00
|
|
|
var D = require('_stream_duplex');
|
2012-10-07 22:26:03 +02:00
|
|
|
var assert = require('assert');
|
|
|
|
|
|
|
|
var util = require('util');
|
|
|
|
util.inherits(TestWriter, W);
|
|
|
|
|
|
|
|
function TestWriter() {
|
|
|
|
W.apply(this, arguments);
|
|
|
|
this.buffer = [];
|
|
|
|
this.written = 0;
|
|
|
|
}
|
|
|
|
|
2013-03-04 04:14:06 +01:00
|
|
|
TestWriter.prototype._write = function(chunk, encoding, cb) {
|
2012-10-07 22:26:03 +02:00
|
|
|
// simulate a small unpredictable latency
|
|
|
|
setTimeout(function() {
|
|
|
|
this.buffer.push(chunk.toString());
|
|
|
|
this.written += chunk.length;
|
|
|
|
cb();
|
|
|
|
}.bind(this), Math.floor(Math.random() * 10));
|
|
|
|
};
|
|
|
|
|
|
|
|
var chunks = new Array(50);
|
|
|
|
for (var i = 0; i < chunks.length; i++) {
|
|
|
|
chunks[i] = new Array(i + 1).join('x');
|
|
|
|
}
|
|
|
|
|
|
|
|
// tiny node-tap lookalike.
|
|
|
|
var tests = [];
|
2013-01-12 05:59:57 +01:00
|
|
|
var count = 0;
|
|
|
|
|
2012-10-07 22:26:03 +02:00
|
|
|
function test(name, fn) {
|
2013-01-12 05:59:57 +01:00
|
|
|
count++;
|
2012-10-07 22:26:03 +02:00
|
|
|
tests.push([name, fn]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function run() {
|
|
|
|
var next = tests.shift();
|
|
|
|
if (!next)
|
2013-01-12 05:59:57 +01:00
|
|
|
return console.error('ok');
|
2012-10-07 22:26:03 +02:00
|
|
|
|
|
|
|
var name = next[0];
|
|
|
|
var fn = next[1];
|
|
|
|
console.log('# %s', name);
|
|
|
|
fn({
|
|
|
|
same: assert.deepEqual,
|
|
|
|
equal: assert.equal,
|
2015-05-19 13:00:06 +02:00
|
|
|
end: function() {
|
2013-01-12 05:59:57 +01:00
|
|
|
count--;
|
|
|
|
run();
|
|
|
|
}
|
2012-10-07 22:26:03 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-01-12 05:59:57 +01:00
|
|
|
// ensure all tests have run
|
2015-05-19 13:00:06 +02:00
|
|
|
process.on('exit', function() {
|
2013-01-12 05:59:57 +01:00
|
|
|
assert.equal(count, 0);
|
|
|
|
});
|
|
|
|
|
2012-10-07 22:26:03 +02:00
|
|
|
process.nextTick(run);
|
|
|
|
|
|
|
|
test('write fast', function(t) {
|
|
|
|
var tw = new TestWriter({
|
|
|
|
highWaterMark: 100
|
|
|
|
});
|
|
|
|
|
|
|
|
tw.on('finish', function() {
|
|
|
|
t.same(tw.buffer, chunks, 'got chunks in the right order');
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
chunks.forEach(function(chunk) {
|
|
|
|
// screw backpressure. Just buffer it all up.
|
|
|
|
tw.write(chunk);
|
|
|
|
});
|
|
|
|
tw.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('write slow', function(t) {
|
|
|
|
var tw = new TestWriter({
|
|
|
|
highWaterMark: 100
|
|
|
|
});
|
|
|
|
|
|
|
|
tw.on('finish', function() {
|
|
|
|
t.same(tw.buffer, chunks, 'got chunks in the right order');
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
var i = 0;
|
|
|
|
(function W() {
|
|
|
|
tw.write(chunks[i++]);
|
|
|
|
if (i < chunks.length)
|
|
|
|
setTimeout(W, 10);
|
|
|
|
else
|
|
|
|
tw.end();
|
|
|
|
})();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('write backpressure', function(t) {
|
|
|
|
var tw = new TestWriter({
|
|
|
|
highWaterMark: 50
|
|
|
|
});
|
|
|
|
|
|
|
|
var drains = 0;
|
|
|
|
|
|
|
|
tw.on('finish', function() {
|
|
|
|
t.same(tw.buffer, chunks, 'got chunks in the right order');
|
|
|
|
t.equal(drains, 17);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
tw.on('drain', function() {
|
|
|
|
drains++;
|
|
|
|
});
|
|
|
|
|
|
|
|
var i = 0;
|
|
|
|
(function W() {
|
|
|
|
do {
|
|
|
|
var ret = tw.write(chunks[i++]);
|
|
|
|
} while (ret !== false && i < chunks.length);
|
|
|
|
|
|
|
|
if (i < chunks.length) {
|
|
|
|
assert(tw._writableState.length >= 50);
|
|
|
|
tw.once('drain', W);
|
|
|
|
} else {
|
|
|
|
tw.end();
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
});
|
2012-10-10 02:37:40 +02:00
|
|
|
|
|
|
|
test('write bufferize', function(t) {
|
|
|
|
var tw = new TestWriter({
|
|
|
|
highWaterMark: 100
|
|
|
|
});
|
|
|
|
|
|
|
|
var encodings =
|
|
|
|
[ 'hex',
|
|
|
|
'utf8',
|
|
|
|
'utf-8',
|
|
|
|
'ascii',
|
|
|
|
'binary',
|
|
|
|
'base64',
|
|
|
|
'ucs2',
|
|
|
|
'ucs-2',
|
|
|
|
'utf16le',
|
|
|
|
'utf-16le',
|
|
|
|
undefined ];
|
|
|
|
|
|
|
|
tw.on('finish', function() {
|
|
|
|
t.same(tw.buffer, chunks, 'got the expected chunks');
|
|
|
|
});
|
|
|
|
|
|
|
|
chunks.forEach(function(chunk, i) {
|
|
|
|
var enc = encodings[ i % encodings.length ];
|
|
|
|
chunk = new Buffer(chunk);
|
|
|
|
tw.write(chunk.toString(enc), enc);
|
|
|
|
});
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('write no bufferize', function(t) {
|
|
|
|
var tw = new TestWriter({
|
|
|
|
highWaterMark: 100,
|
|
|
|
decodeStrings: false
|
|
|
|
});
|
|
|
|
|
2013-03-04 04:14:06 +01:00
|
|
|
tw._write = function(chunk, encoding, cb) {
|
|
|
|
assert(typeof chunk === 'string');
|
|
|
|
chunk = new Buffer(chunk, encoding);
|
|
|
|
return TestWriter.prototype._write.call(this, chunk, encoding, cb);
|
2012-10-10 02:37:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
var encodings =
|
|
|
|
[ 'hex',
|
|
|
|
'utf8',
|
|
|
|
'utf-8',
|
|
|
|
'ascii',
|
|
|
|
'binary',
|
|
|
|
'base64',
|
|
|
|
'ucs2',
|
|
|
|
'ucs-2',
|
|
|
|
'utf16le',
|
|
|
|
'utf-16le',
|
|
|
|
undefined ];
|
|
|
|
|
|
|
|
tw.on('finish', function() {
|
|
|
|
t.same(tw.buffer, chunks, 'got the expected chunks');
|
|
|
|
});
|
|
|
|
|
|
|
|
chunks.forEach(function(chunk, i) {
|
|
|
|
var enc = encodings[ i % encodings.length ];
|
|
|
|
chunk = new Buffer(chunk);
|
|
|
|
tw.write(chunk.toString(enc), enc);
|
|
|
|
});
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
2015-05-19 13:00:06 +02:00
|
|
|
test('write callbacks', function(t) {
|
2012-10-10 02:37:40 +02:00
|
|
|
var callbacks = chunks.map(function(chunk, i) {
|
|
|
|
return [i, function(er) {
|
|
|
|
callbacks._called[i] = chunk;
|
|
|
|
}];
|
|
|
|
}).reduce(function(set, x) {
|
|
|
|
set['callback-' + x[0]] = x[1];
|
|
|
|
return set;
|
|
|
|
}, {});
|
|
|
|
callbacks._called = [];
|
|
|
|
|
|
|
|
var tw = new TestWriter({
|
|
|
|
highWaterMark: 100
|
|
|
|
});
|
|
|
|
|
|
|
|
tw.on('finish', function() {
|
2012-12-06 16:29:42 +01:00
|
|
|
process.nextTick(function() {
|
|
|
|
t.same(tw.buffer, chunks, 'got chunks in the right order');
|
|
|
|
t.same(callbacks._called, chunks, 'called all callbacks');
|
|
|
|
t.end();
|
|
|
|
});
|
2012-10-10 02:37:40 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
chunks.forEach(function(chunk, i) {
|
|
|
|
tw.write(chunk, callbacks['callback-' + i]);
|
|
|
|
});
|
|
|
|
tw.end();
|
|
|
|
});
|
2013-02-05 23:58:16 +01:00
|
|
|
|
2015-05-19 13:00:06 +02:00
|
|
|
test('end callback', function(t) {
|
2013-02-05 23:58:16 +01:00
|
|
|
var tw = new TestWriter();
|
2015-05-19 13:00:06 +02:00
|
|
|
tw.end(function() {
|
2013-02-05 23:58:16 +01:00
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-05-19 13:00:06 +02:00
|
|
|
test('end callback with chunk', function(t) {
|
2013-02-05 23:58:16 +01:00
|
|
|
var tw = new TestWriter();
|
2015-05-19 13:00:06 +02:00
|
|
|
tw.end(new Buffer('hello world'), function() {
|
2013-02-05 23:58:16 +01:00
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-05-19 13:00:06 +02:00
|
|
|
test('end callback with chunk and encoding', function(t) {
|
2013-02-05 23:58:16 +01:00
|
|
|
var tw = new TestWriter();
|
2015-05-19 13:00:06 +02:00
|
|
|
tw.end('hello world', 'ascii', function() {
|
2013-02-05 23:58:16 +01:00
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-05-19 13:00:06 +02:00
|
|
|
test('end callback after .write() call', function(t) {
|
2013-02-05 23:58:16 +01:00
|
|
|
var tw = new TestWriter();
|
|
|
|
tw.write(new Buffer('hello world'));
|
2015-05-19 13:00:06 +02:00
|
|
|
tw.end(function() {
|
2013-02-05 23:58:16 +01:00
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
2013-02-07 17:50:18 +01:00
|
|
|
|
2015-05-19 13:00:06 +02:00
|
|
|
test('end callback called after write callback', function(t) {
|
2013-04-08 20:00:26 +02:00
|
|
|
var tw = new TestWriter();
|
|
|
|
var writeCalledback = false;
|
|
|
|
tw.write(new Buffer('hello world'), function() {
|
|
|
|
writeCalledback = true;
|
|
|
|
});
|
2015-05-19 13:00:06 +02:00
|
|
|
tw.end(function() {
|
2013-04-08 20:00:26 +02:00
|
|
|
t.equal(writeCalledback, true);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-02-07 17:50:18 +01:00
|
|
|
test('encoding should be ignored for buffers', function(t) {
|
|
|
|
var tw = new W();
|
|
|
|
var hex = '018b5e9a8f6236ffe30e31baf80d2cf6eb';
|
2013-03-04 04:14:06 +01:00
|
|
|
tw._write = function(chunk, encoding, cb) {
|
2013-02-07 17:50:18 +01:00
|
|
|
t.equal(chunk.toString('hex'), hex);
|
|
|
|
t.end();
|
|
|
|
};
|
|
|
|
var buf = new Buffer(hex, 'hex');
|
|
|
|
tw.write(buf, 'binary');
|
|
|
|
});
|
2013-02-25 07:14:30 +01:00
|
|
|
|
|
|
|
test('writables are not pipable', function(t) {
|
|
|
|
var w = new W();
|
|
|
|
w._write = function() {};
|
|
|
|
var gotError = false;
|
|
|
|
w.on('error', function(er) {
|
|
|
|
gotError = true;
|
|
|
|
});
|
|
|
|
w.pipe(process.stdout);
|
|
|
|
assert(gotError);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
|
|
|
|
test('duplexes are pipable', function(t) {
|
|
|
|
var d = new D();
|
|
|
|
d._read = function() {};
|
|
|
|
d._write = function() {};
|
|
|
|
var gotError = false;
|
|
|
|
d.on('error', function(er) {
|
|
|
|
gotError = true;
|
|
|
|
});
|
|
|
|
d.pipe(process.stdout);
|
|
|
|
assert(!gotError);
|
|
|
|
t.end();
|
|
|
|
});
|
2013-03-02 21:25:16 +01:00
|
|
|
|
|
|
|
test('end(chunk) two times is an error', function(t) {
|
|
|
|
var w = new W();
|
|
|
|
w._write = function() {};
|
|
|
|
var gotError = false;
|
|
|
|
w.on('error', function(er) {
|
|
|
|
gotError = true;
|
|
|
|
t.equal(er.message, 'write after end');
|
|
|
|
});
|
|
|
|
w.end('this is the end');
|
|
|
|
w.end('and so is this');
|
|
|
|
process.nextTick(function() {
|
|
|
|
assert(gotError);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
});
|
2013-03-22 02:18:55 +01:00
|
|
|
|
|
|
|
test('dont end while writing', function(t) {
|
|
|
|
var w = new W();
|
|
|
|
var wrote = false;
|
|
|
|
w._write = function(chunk, e, cb) {
|
|
|
|
assert(!this.writing);
|
|
|
|
wrote = true;
|
|
|
|
this.writing = true;
|
|
|
|
setTimeout(function() {
|
|
|
|
this.writing = false;
|
|
|
|
cb();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
w.on('finish', function() {
|
|
|
|
assert(wrote);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
w.write(Buffer(0));
|
|
|
|
w.end();
|
|
|
|
});
|
2013-04-08 20:00:26 +02:00
|
|
|
|
|
|
|
test('finish does not come before write cb', function(t) {
|
|
|
|
var w = new W();
|
|
|
|
var writeCb = false;
|
|
|
|
w._write = function(chunk, e, cb) {
|
|
|
|
setTimeout(function() {
|
|
|
|
writeCb = true;
|
|
|
|
cb();
|
|
|
|
}, 10);
|
|
|
|
};
|
|
|
|
w.on('finish', function() {
|
|
|
|
assert(writeCb);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
w.write(Buffer(0));
|
|
|
|
w.end();
|
|
|
|
});
|
2013-05-08 21:54:29 +02:00
|
|
|
|
|
|
|
test('finish does not come before sync _write cb', function(t) {
|
|
|
|
var w = new W();
|
|
|
|
var writeCb = false;
|
|
|
|
w._write = function(chunk, e, cb) {
|
|
|
|
cb();
|
|
|
|
};
|
|
|
|
w.on('finish', function() {
|
|
|
|
assert(writeCb);
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
w.write(Buffer(0), function(er) {
|
|
|
|
writeCb = true;
|
|
|
|
});
|
|
|
|
w.end();
|
|
|
|
});
|
2014-05-06 12:19:54 +02:00
|
|
|
|
|
|
|
test('finish is emitted if last chunk is empty', function(t) {
|
|
|
|
var w = new W();
|
|
|
|
w._write = function(chunk, e, cb) {
|
|
|
|
process.nextTick(cb);
|
|
|
|
};
|
|
|
|
w.on('finish', function() {
|
|
|
|
t.end();
|
|
|
|
});
|
|
|
|
w.write(Buffer(1));
|
|
|
|
w.end(Buffer(0));
|
|
|
|
});
|