mirror of https://github.com/lukechilds/node.git
Browse Source
Move ENOENT related tests out of general fs.watch() test file and into its own file. This may help diagnose https://github.com/nodejs/node/issues/3541. PR-URL: https://github.com/nodejs/node/pull/3548 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu>v4.x
committed by
James M Snell
2 changed files with 21 additions and 17 deletions
@ -0,0 +1,21 @@ |
|||||
|
'use strict'; |
||||
|
const common = require('../common'); |
||||
|
const assert = require('assert'); |
||||
|
const fs = require('fs'); |
||||
|
|
||||
|
assert.throws(function() { |
||||
|
fs.watch('non-existent-file'); |
||||
|
}, function(err) { |
||||
|
assert(err); |
||||
|
assert(/non-existent-file/.test(err)); |
||||
|
assert.equal(err.filename, 'non-existent-file'); |
||||
|
return true; |
||||
|
}); |
||||
|
|
||||
|
const watcher = fs.watch(__filename); |
||||
|
watcher.on('error', common.mustCall(function(err) { |
||||
|
assert(err); |
||||
|
assert(/non-existent-file/.test(err)); |
||||
|
assert.equal(err.filename, 'non-existent-file'); |
||||
|
})); |
||||
|
watcher._handle.onchange(-1, 'ENOENT', 'non-existent-file'); |
Loading…
Reference in new issue