From 6e05faa3d0de2b8540187de261dd848c7a5ca0cf Mon Sep 17 00:00:00 2001 From: isaacs Date: Thu, 24 Jan 2013 10:12:19 -0800 Subject: [PATCH] test: Add transform objectMode test --- test/simple/test-stream2-transform.js | 81 +++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/test/simple/test-stream2-transform.js b/test/simple/test-stream2-transform.js index 0aa620026a..1c154c6897 100644 --- a/test/simple/test-stream2-transform.js +++ b/test/simple/test-stream2-transform.js @@ -44,6 +44,7 @@ function run() { fn({ same: assert.deepEqual, equal: assert.equal, + ok: assert, end: function () { count--; run(); @@ -331,3 +332,83 @@ test('passthrough facaded', function(t) { }, 10); }, 10); }); + +test('object transform (json parse)', function(t) { + console.error('json parse stream'); + var jp = new Transform({ objectMode: true }); + jp._transform = function(data, output, cb) { + try { + output(JSON.parse(data)); + cb(); + } catch (er) { + cb(er); + } + }; + + // anything except null/undefined is fine. + // those are "magic" in the stream API, because they signal EOF. + var objects = [ + { foo: 'bar' }, + 100, + "string", + { nested: { things: [ { foo: 'bar' }, 100, "string" ] } } + ]; + + var ended = false; + jp.on('end', function() { + ended = true; + }); + + objects.forEach(function(obj) { + jp.write(JSON.stringify(obj)); + var res = jp.read(); + t.same(res, obj); + }); + + jp.end(); + + process.nextTick(function() { + t.ok(ended); + t.end(); + }) +}); + +test('object transform (json stringify)', function(t) { + console.error('json parse stream'); + var js = new Transform({ objectMode: true }); + js._transform = function(data, output, cb) { + try { + output(JSON.stringify(data)); + cb(); + } catch (er) { + cb(er); + } + }; + + // anything except null/undefined is fine. + // those are "magic" in the stream API, because they signal EOF. + var objects = [ + { foo: 'bar' }, + 100, + "string", + { nested: { things: [ { foo: 'bar' }, 100, "string" ] } } + ]; + + var ended = false; + js.on('end', function() { + ended = true; + }); + + objects.forEach(function(obj) { + js.write(obj); + var res = js.read(); + t.equal(res, JSON.stringify(obj)); + }); + + js.end(); + + process.nextTick(function() { + t.ok(ended); + t.end(); + }) +});