From 4a35ba4966cbf7c807fa7fbbf3c420e97c5e2542 Mon Sep 17 00:00:00 2001 From: charlierudolph Date: Tue, 29 Sep 2015 22:03:27 -0700 Subject: [PATCH] fs: include filename in watch errors This commit adds the relevant filename to fs.watch() errors. Refs: https://github.com/nodejs/node-v0.x-archive/pull/25542 PR-URL: https://github.com/nodejs/node/pull/2748 Reviewed-By: Colin Ihrig --- lib/fs.js | 8 ++++++-- test/sequential/test-fs-watch.js | 17 +++++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/lib/fs.js b/lib/fs.js index 76f53db..fef4f7b 100644 --- a/lib/fs.js +++ b/lib/fs.js @@ -1219,7 +1219,9 @@ function FSWatcher() { this._handle.onchange = function(status, event, filename) { if (status < 0) { self._handle.close(); - self.emit('error', errnoException(status, 'watch')); + const error = errnoException(status, `watch ${filename}`); + error.filename = filename; + self.emit('error', error); } else { self.emit('change', event, filename); } @@ -1234,7 +1236,9 @@ FSWatcher.prototype.start = function(filename, persistent, recursive) { recursive); if (err) { this._handle.close(); - throw errnoException(err, 'watch'); + const error = errnoException(err, `watch ${filename}`); + error.filename = filename; + throw error; } }; diff --git a/test/sequential/test-fs-watch.js b/test/sequential/test-fs-watch.js index 10f4baf..385cf47 100644 --- a/test/sequential/test-fs-watch.js +++ b/test/sequential/test-fs-watch.js @@ -126,3 +126,20 @@ assert.throws(function() { w.stop(); }, TypeError); oldhandle.stop(); // clean up + +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; +}); + +var 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'); -- 2.7.4