node/test/parallel/test-fs-watch-recursive.js
Santiago Gimeno dee0e3a333 test: use common platform helpers everywhere
Use the common.isWindows, common.isFreeBSD and common.isSunOS where
possible.
Add common.isOSX and common.isLinux.
Fix `test-fs-read-file-sync-hostname` as in its current form was not
being run anywhere.

PR-URL: https://github.com/nodejs/node/pull/7845
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: James M Snell <jasnell@gmail.com>
2016-07-27 08:25:26 +02:00

44 lines
1.0 KiB
JavaScript

'use strict';
const common = require('../common');
if (!(common.isOSX || common.isWindows)) {
common.skip('recursive option is darwin/windows specific');
return;
}
const assert = require('assert');
const path = require('path');
const fs = require('fs');
const testDir = common.tmpDir;
const filenameOne = 'watch.txt';
const testsubdirName = 'testsubdir';
const testsubdir = path.join(testDir, testsubdirName);
const relativePathOne = path.join('testsubdir', filenameOne);
const filepathOne = path.join(testsubdir, filenameOne);
common.refreshTmpDir();
fs.mkdirSync(testsubdir, 0o700);
const watcher = fs.watch(testDir, {recursive: true});
var watcherClosed = false;
watcher.on('change', function(event, filename) {
assert.ok('change' === event || 'rename' === event);
// Ignore stale events generated by mkdir and other tests
if (filename !== relativePathOne)
return;
watcher.close();
watcherClosed = true;
});
fs.writeFileSync(filepathOne, 'world');
process.on('exit', function() {
assert(watcherClosed, 'watcher Object was not closed');
});