mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 02:07:20 -04:00
42 lines
921 B
JavaScript
42 lines
921 B
JavaScript
|
|
||
|
var fs = require ('fs')
|
||
|
, join = require('path').join
|
||
|
, file = join(__dirname, 'fixtures','all_npm.json')
|
||
|
, JSONStream = require('../')
|
||
|
, it = require('it-is').style('colour')
|
||
|
|
||
|
function randomObj () {
|
||
|
return (
|
||
|
Math.random () < 0.4
|
||
|
? {hello: 'eonuhckmqjk',
|
||
|
whatever: 236515,
|
||
|
lies: true,
|
||
|
nothing: [null],
|
||
|
// stuff: [Math.random(),Math.random(),Math.random()]
|
||
|
}
|
||
|
: ['AOREC', 'reoubaor', {ouec: 62642}, [[[], {}, 53]]]
|
||
|
)
|
||
|
}
|
||
|
|
||
|
var expected = []
|
||
|
, stringify = JSONStream.stringify()
|
||
|
, es = require('event-stream')
|
||
|
, stringified = ''
|
||
|
, called = 0
|
||
|
, count = 10
|
||
|
, ended = false
|
||
|
|
||
|
while (count --)
|
||
|
expected.push(randomObj())
|
||
|
|
||
|
es.connect(
|
||
|
es.readArray(expected),
|
||
|
stringify,
|
||
|
JSONStream.parse([true]),
|
||
|
es.writeArray(function (err, lines) {
|
||
|
|
||
|
it(lines).has(expected)
|
||
|
console.error('PASSED')
|
||
|
})
|
||
|
)
|