node/test/sequential/test-fs-watch-recursive.js
Roman Reiss f29762f4dd test: enable linting for tests
Enable linting for the test directory. A number of changes was made so
all tests conform the current rules used by lib and src directories. The
only exception for tests is that unreachable (dead) code is allowed.

test-fs-non-number-arguments-throw had to be excluded from the changes
because of a weird issue on Windows CI.

PR-URL: https://github.com/nodejs/io.js/pull/1721
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-05-19 21:21:27 +02:00

49 lines
1.2 KiB
JavaScript

'use strict';
var common = require('../common');
var assert = require('assert');
var path = require('path');
var fs = require('fs');
if (process.platform === 'darwin') {
var watchSeenOne = 0;
var testDir = common.tmpDir;
var filenameOne = 'watch.txt';
var testsubdirName = 'testsubdir';
var testsubdir = path.join(testDir, testsubdirName);
var relativePathOne = path.join('testsubdir', filenameOne);
var filepathOne = path.join(testsubdir, filenameOne);
process.on('exit', function() {
assert.ok(watchSeenOne > 0);
});
function cleanup() {
try { fs.unlinkSync(filepathOne); } catch (e) { }
try { fs.rmdirSync(testsubdir); } catch (e) { }
};
try { fs.mkdirSync(testsubdir, 0o700); } catch (e) {}
assert.doesNotThrow(function() {
var watcher = fs.watch(testDir, {recursive: true});
watcher.on('change', function(event, filename) {
assert.ok('change' === event || 'rename' === event);
// Ignore stale events generated by mkdir
if (filename === testsubdirName)
return;
assert.equal(relativePathOne, filename);
watcher.close();
cleanup();
++watchSeenOne;
});
});
setTimeout(function() {
fs.writeFileSync(filepathOne, 'world');
}, 10);
}