123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- var from = require('..')
- var spec = require('stream-spec')
- var a = require('assertions')
- function read(stream, callback) {
- var actual = []
- stream.on('data', function (data) {
- actual.push(data)
- })
- stream.once('end', function () {
- callback(null, actual)
- })
- stream.once('error', function (err) {
- callback(err)
- })
- }
- function pause(stream) {
- stream.on('data', function () {
- if(Math.random() > 0.1) return
- stream.pause()
- process.nextTick(function () {
- stream.resume()
- })
- })
- }
- exports['inc'] = function (test) {
- var fs = from(function (i) {
- this.emit('data', i)
- if(i >= 99)
- return this.emit('end')
- return true
- })
- spec(fs).readable().validateOnExit()
- read(fs, function (err, arr) {
- test.equal(arr.length, 100)
- test.done()
- })
- }
- exports['inc - async'] = function (test) {
- var fs = from(function (i, next) {
- this.emit('data', i)
- if(i >= 99)
- return this.emit('end')
- next();
- })
- spec(fs).readable().validateOnExit()
- read(fs, function (err, arr) {
- test.equal(arr.length, 100)
- test.done()
- })
- }
- exports['large stream - from an array'] = function (test) {
- var l = 100000
- , expected = []
- while(l--) expected.push(l * Math.random())
- var fs = from(expected.slice())
- spec(fs).readable().validateOnExit()
- read(fs, function (err, arr) {
- a.deepEqual(arr, expected)
- test.done()
- })
- }
- exports['large stream - callback return true'] = function (test) {
- var fs = from(function (i, next) {
- this.emit('data', i)
- if(i >= 99999)
- return this.emit('end')
- return true;
- })
- spec(fs).readable().validateOnExit()
- read(fs, function (err, arr) {
- test.equal(arr.length, 100000)
- test.done()
- })
- }
- exports['large stream - callback call next()'] = function (test) {
- var fs = from(function (i, next) {
- this.emit('data', i)
- if(i >= 99999)
- return this.emit('end')
- next();
- })
- spec(fs).readable().validateOnExit()
- read(fs, function (err, arr) {
- test.equal(arr.length, 100000)
- test.done()
- })
- }
- exports['simple'] = function (test) {
- var l = 1000
- , expected = []
- while(l--) expected.push(l * Math.random())
- var t = from(expected.slice())
- spec(t)
- .readable()
- .pausable({strict: true})
- .validateOnExit()
- read(t, function (err, actual) {
- if(err) test.error(err) //fail
- a.deepEqual(actual, expected)
- test.done()
- })
- }
- exports['simple pausable'] = function (test) {
- var l = 1000
- , expected = []
- while(l--) expected.push(l * Math.random())
- var t = from(expected.slice())
- spec(t)
- .readable()
- .pausable({strict: true})
- .validateOnExit()
- pause(t)
- read(t, function (err, actual) {
- if(err) test.error(err) //fail
- a.deepEqual(actual, expected)
- test.done()
- })
- }
- exports['simple (not strictly pausable) setTimeout'] = function (test) {
- var l = 10
- , expected = []
- while(l--) expected.push(l * Math.random())
- var _expected = expected.slice()
- var t = from(function (i, n) {
- var self = this
- setTimeout(function () {
- if(_expected.length)
- self.emit('data', _expected.shift())
- else
- if(!self.ended)
- self.emit('end')
- n()
- }, 3)
- })
- /*
- using from in this way will not be strictly pausable.
- it could be extended to buffer outputs, but I think a better
- way would be to use a PauseStream that implements strict pause.
- */
- spec(t)
- .readable()
- .pausable({strict: false })
- .validateOnExit()
- //pause(t)
- var paused = false
- var i = setInterval(function () {
- if(!paused) t.pause()
- else t.resume()
- paused = !paused
- }, 2)
- t.on('end', function () {
- clearInterval(i)
- })
- read(t, function (err, actual) {
- if(err) test.error(err) //fail
- a.deepEqual(actual, expected)
- test.done()
- })
- }
|