PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
binary
/
test
var binary = require('../'); var test = require('tap').test; var EventEmitter = require('events').EventEmitter; test('loop', function (t) { t.plan(3 * 2 + 1); var em = new EventEmitter; binary.stream(em) .loop(function (end, vars) { t.strictEqual(vars, this.vars); this .word16lu('a') .word8u('b') .word8s('c') .tap(function (vars_) { t.strictEqual(vars, vars_); if (vars.c < 0) end(); }) ; }) .tap(function (vars) { t.same(vars, { a : 1337, b : 55, c : -5 }); }) ; setTimeout(function () { em.emit('data', new Buffer([ 2, 10, 88 ])); }, 10); setTimeout(function () { em.emit('data', new Buffer([ 100, 3, 6, 242, 30 ])); }, 20); setTimeout(function () { em.emit('data', new Buffer([ 60, 60, 199, 44 ])); }, 30); setTimeout(function () { em.emit('data', new Buffer([ 57, 5 ])); }, 80); setTimeout(function () { em.emit('data', new Buffer([ 55, 251 ])); }, 90); });
[-] loop.js
[edit]
[-] peek.js
[edit]
[-] immediate.js
[edit]
[-] posbs.js
[edit]
[-] dots.js
[edit]
[-] negls.js
[edit]
[-] not_enough_buf.js
[edit]
[-] scan.js
[edit]
[+]
..
[-] split.js
[edit]
[-] posls.js
[edit]
[-] loop_scan.js
[edit]
[-] deferred.js
[edit]
[-] negbs.js
[edit]
[-] interval.js
[edit]
[-] skip.js
[edit]
[-] not_enough_parse.js
[edit]
[-] into_stream.js
[edit]
[-] parse.js
[edit]
[-] pipe.js
[edit]
[-] bu.js
[edit]
[-] lu.js
[edit]
[-] scan_buf_null.js
[edit]
[-] nested.js
[edit]
[-] flush.js
[edit]
[-] from_buffer.js
[edit]
[-] eof.js
[edit]
[-] get_buffer.js
[edit]
[-] into_buffer.js
[edit]
[-] scan_buf.js
[edit]