Sha256: afd7bb8abff83e965e7586e8a879bc3c6c0cf955bf3d6fb78a5a26df307e1d39

Contents?: true

Size: 1.47 KB

Versions: 188

Compression:

Stored size: 1.47 KB

Contents

var test = require('tape')
var through = require('../')

// must emit end before close.

test('buffering', function(assert) {
  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)
  assert.deepEqual(actual, [1, 2, 3])
  ts.pause()
  ts.write(4)
  ts.write(5)
  ts.write(6)
  assert.deepEqual(actual, [1, 2, 3])
  ts.resume()
  assert.deepEqual(actual, [1, 2, 3, 4, 5, 6])
  ts.pause()
  ts.end()
  assert.ok(!ended)
  ts.resume()
  assert.ok(ended)
  assert.end()
})

test('buffering has data in queue, when ends', function (assert) {

  /*
   * 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()
  assert.deepEqual(actual, [], 'no data written yet, still paused')
  assert.ok(!ended, 'end not emitted yet, still paused')
  ts.resume()
  assert.deepEqual(actual, [1, 2, 3], 'resumed, all data should be delivered')
  assert.ok(ended, 'end should be emitted once all data was delivered')
  assert.end();
})

Version data entries

188 entries across 155 versions & 21 rubygems

Version Path
pcp-server-ruby-sdk-0.0.6 node_modules/through/test/buffering.js
pcp-server-ruby-sdk-0.1.0 node_modules/through/test/buffering.js
reed_sdk-1.0.1 node_modules/through/test/buffering.js
reed_sdk-1.0.0 node_modules/through/test/buffering.js
isomorfeus-puppetmaster-0.5.5 node_modules/through/test/buffering.js
isomorfeus-puppetmaster-0.5.4 node_modules/through/test/buffering.js
isomorfeus-puppetmaster-0.5.3 node_modules/through/test/buffering.js
isomorfeus-puppetmaster-0.5.2 node_modules/through/test/buffering.js
isomorfeus-puppetmaster-0.5.1 node_modules/through/test/buffering.js
isomorfeus-puppetmaster-0.5.0 node_modules/through/test/buffering.js
ilog-0.4.1 node_modules/through/test/buffering.js
ilog-0.4.0 node_modules/through/test/buffering.js
ilog-0.3.3 node_modules/through/test/buffering.js
govuk_publishing_components-18.0.0 node_modules/through/test/buffering.js
govuk_publishing_components-17.21.0 node_modules/through/test/buffering.js
govuk_publishing_components-17.20.0 node_modules/through/test/buffering.js
govuk_publishing_components-17.19.1 node_modules/through/test/buffering.js
govuk_publishing_components-17.19.0 node_modules/through/test/buffering.js
govuk_publishing_components-17.18.0 node_modules/through/test/buffering.js
govuk_publishing_components-17.17.0 node_modules/through/test/buffering.js