mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 21:35:34 +00:00

The tap skipping output is so prevalent yet obscure in nature that we ought to move it into it's own function in test/common.js PR-URL: https://github.com/nodejs/node/pull/6697 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com>
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
if (!(process.platform === 'darwin' || 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');
|
|
});
|