mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
5b82800241
* used let and const instead of var * used assert.strictEqual instead assert.equal PR-URL: https://github.com/nodejs/node/pull/10357 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: Julian Duque <julianduquej@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
125 lines
3.0 KiB
JavaScript
125 lines
3.0 KiB
JavaScript
'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
|