MOON
Server: Apache
System: Linux e2e-78-16.ssdcloudindia.net 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
User: imensosw (1005)
PHP: 8.0.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/imensosw/.trash/node_modules/fs-write-stream-atomic/test/toolong.js
var path = require('path')
var test = require('tap').test
var writeStream = require('../index.js')

function repeat (times, string) {
  var output = ''
  for (var ii = 0; ii < times; ++ii) {
    output += string
  }
  return output
}

var target = path.resolve(__dirname, repeat(1000, 'test'))

test('name too long', function (t) {
  t.plan(2)
  var stream = writeStream(target)
  var hadError = false
  stream.on('error', function (er) {
    if (!hadError) {
      t.is(er.code, 'ENAMETOOLONG', target.length + ' character name results in ENAMETOOLONG')
      hadError = true
    }
  })
  stream.on('close', function () {
    t.ok(hadError, 'got error before close')
  })
  stream.end()
})