You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

124 lines
3.0 KiB

'use strict';
const common = require('../common');
const assert = require('assert');
const path = require('path');
const fs = require('fs');
const expectFilePath = common.isWindows ||
common.isLinux ||
common.isOSX;
let watchSeenOne = 0;
let watchSeenTwo = 0;
let watchSeenThree = 0;
const testDir = common.tmpDir;
const filenameOne = 'watch.txt';
const filepathOne = path.join(testDir, filenameOne);
const filenameTwo = 'hasOwnProperty';
const filepathTwo = filenameTwo;
const filepathTwoAbs = path.join(testDir, filenameTwo);
process.on('exit', function() {
assert.ok(watchSeenOne > 0);
assert.ok(watchSeenTwo > 0);
assert.ok(watchSeenThree > 0);
});
common.refreshTmpDir();
fs.writeFileSync(filepathOne, 'hello');
assert.doesNotThrow(
function() {
const watcher = fs.watch(filepathOne);
watcher.on('change', function(event, filename) {
assert.strictEqual('change', event);
if (expectFilePath) {
assert.strictEqual('watch.txt', filename);
}
watcher.close();
++watchSeenOne;
});
}
);
setImmediate(function() {
fs.writeFileSync(filepathOne, 'world');
});
process.chdir(testDir);
fs.writeFileSync(filepathTwoAbs, 'howdy');
assert.doesNotThrow(
function() {
const watcher = fs.watch(filepathTwo, function(event, filename) {
assert.strictEqual('change', event);
if (expectFilePath) {
assert.strictEqual('hasOwnProperty', filename);
}
watcher.close();
++watchSeenTwo;
});
}
);
setImmediate(function() {
fs.writeFileSync(filepathTwoAbs, 'pardner');
});
const filenameThree = 'newfile.txt';
const testsubdir = fs.mkdtempSync(testDir + path.sep);
const filepathThree = path.join(testsubdir, filenameThree);
assert.doesNotThrow(
function() {
const watcher = fs.watch(testsubdir, function(event, filename) {
const renameEv = common.isSunOS ? 'change' : 'rename';
assert.strictEqual(renameEv, event);
if (expectFilePath) {
assert.strictEqual('newfile.txt', filename);
} else {
assert.strictEqual(null, filename);
}
watcher.close();
++watchSeenThree;
});
}
);
setImmediate(function() {
const fd = fs.openSync(filepathThree, 'w');
fs.closeSync(fd);
});
// https://github.com/joyent/node/issues/2293 - non-persistent watcher should
// not block the event loop
fs.watch(__filename, {persistent: false}, function() {
assert(0);
});
// whitebox test to ensure that wrapped FSEvent is safe
// https://github.com/joyent/node/issues/6690
let oldhandle;
assert.throws(function() {
const w = fs.watch(__filename, function(event, filename) { });
oldhandle = w._handle;
w._handle = { close: w._handle.close };
w.close();
}, TypeError);
oldhandle.close(); // clean up
assert.throws(function() {
const w = fs.watchFile(__filename, {persistent: false}, function() {});
oldhandle = w._handle;
w._handle = { stop: w._handle.stop };
w.stop();
}, TypeError);
oldhandle.stop(); // clean up