HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/node_modules/ndjson/test.js
var test = require('tape')
var ndj = require('./')
var os = require('os')
var concat = require('concat-stream')

test('.parse', function(t) {
  var parser = ndj.parse()
  parser.on('data', function(obj) {
    t.equal(obj.hello, 'world')
    t.end()
  })

  parser.write('{"hello": "world"}\n')
})

test('.parse twice', function(t) {
  var parser = ndj.parse()
  parser.once('data', function(obj) {
    t.equal(obj.hello, 'world')
    parser.once('data', function(obj) {
      t.equal(obj.hola, 'mundo')
      t.end()
    })
  })

  parser.write('{"hello": "world"}\n{"hola": "mundo"}\n')
})

test('.parse - strict:true error', function (t) {
  var parser = ndj.parse({strict: true})
  try {
    parser.write('{"no":"json"\n')
  } catch(e) {
    t.pass('error thrown')
    t.end()
  }
})

test('.parse - strict:true error event', function (t) {
  var parser = ndj.parse({strict: true})
  parser.on('error', function (err) {
    t.pass('error event called')
    t.end()
  })
  try {
    parser.write('{"no":"json"\n')
  } catch(e) {
    t.fail('should not throw')
  }
})

test('.parse - strict:false error', function (t) {
  var parser = ndj.parse({strict: false})
  parser.once('data', function (data) {
    t.ok(data.json, 'parse second one')
    t.end()
  })
  try {
    parser.write('{"json":false\n{"json":true}\n')
  } catch(e) {
    t.fail('should not call an error')
  }
})

test('.serialize', function(t) {
  var serializer = ndj.serialize()
  serializer.pipe(concat(function(data) {
    t.equal(data, '{"hello":"world"}' + os.EOL)
    t.end()
  }))
  serializer.write({hello: 'world'})
  serializer.end()
})

test('.serialize circular', function(t) {
  var serializer = ndj.serialize()
  serializer.pipe(concat(function(data) {
    t.equal(data, '{"obj":"[Circular ~]"}' + os.EOL)
    t.end()
  }))
  var obj = {}
  obj.obj = obj
  serializer.write(obj)
  serializer.end()
})