Sindbad~EG File Manager
var through = require('..')
// must emit end before close.
exports['buffering'] = function (t) {
var ts = through(function (data) {
this.queue(data)
}, function () {
this.queue(null)
})
var ended = false, actual = []
ts.on('data', actual.push.bind(actual))
ts.on('end', function () {
ended = true
})
ts.write(1)
ts.write(2)
ts.write(3)
t.deepEqual(actual, [1, 2, 3])
ts.pause()
ts.write(4)
ts.write(5)
ts.write(6)
t.deepEqual(actual, [1, 2, 3])
ts.resume()
t.deepEqual(actual, [1, 2, 3, 4, 5, 6])
ts.pause()
ts.end()
t.ok(!ended)
ts.resume()
t.ok(ended)
t.end()
}
exports['buffering has data in queue, when ends'] = function (t) {
/*
* If stream ends while paused with data in the queue,
* stream should still emit end after all data is written
* on resume.
*/
var ts = through(function (data) {
this.queue(data)
}, function () {
this.queue(null)
})
var ended = false, actual = []
ts.on('data', actual.push.bind(actual))
ts.on('end', function () {
ended = true
})
ts.pause()
ts.write(1)
ts.write(2)
ts.write(3)
ts.end()
t.deepEqual(actual, [], 'no data written yet, still paused')
t.ok(!ended, 'end not emitted yet, still paused')
ts.resume()
t.deepEqual(actual, [1, 2, 3], 'resumed, all data should be delivered')
t.ok(ended, 'end should be emitted once all data was delivered')
t.end();
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists