|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +const common = require('../common'); |
| 4 | +const { setTimeout } = require('timers/promises'); |
| 5 | + |
| 6 | +if (common.isIBMi) |
| 7 | + common.skip('IBMi does not support `fs.watch()`'); |
| 8 | + |
| 9 | +// fs-watch on folders have limited capability in AIX. |
| 10 | +// The testcase makes use of folder watching, and causes |
| 11 | +// hang. This behavior is documented. Skip this for AIX. |
| 12 | + |
| 13 | +if (common.isAIX) |
| 14 | + common.skip('folder watch capability is limited in AIX.'); |
| 15 | + |
| 16 | +const assert = require('assert'); |
| 17 | +const path = require('path'); |
| 18 | +const fs = require('fs'); |
| 19 | + |
| 20 | +const tmpdir = require('../common/tmpdir'); |
| 21 | +const testDir = tmpdir.path; |
| 22 | +tmpdir.refresh(); |
| 23 | + |
| 24 | +(async () => { |
| 25 | + // Assert recursive watch does not leak handles |
| 26 | + const rootDirectory = fs.mkdtempSync(testDir + path.sep); |
| 27 | + const testDirectory = path.join(rootDirectory, 'test-7'); |
| 28 | + const filePath = path.join(testDirectory, 'only-file.txt'); |
| 29 | + fs.mkdirSync(testDirectory); |
| 30 | + |
| 31 | + let watcherClosed = false; |
| 32 | + const watcher = fs.watch(testDirectory, { recursive: true }); |
| 33 | + watcher.on('change', common.mustCallAtLeast(async (event, filename) => { |
| 34 | + await setTimeout(common.platformTimeout(100)); |
| 35 | + if (filename === path.basename(filePath)) { |
| 36 | + watcher.close(); |
| 37 | + watcherClosed = true; |
| 38 | + } |
| 39 | + await setTimeout(common.platformTimeout(100)); |
| 40 | + assert(!process._getActiveHandles().some((handle) => handle.constructor.name === 'StatWatcher')); |
| 41 | + })); |
| 42 | + |
| 43 | + process.on('exit', function() { |
| 44 | + assert(watcherClosed, 'watcher Object was not closed'); |
| 45 | + }); |
| 46 | + await setTimeout(common.platformTimeout(100)); |
| 47 | + fs.writeFileSync(filePath, 'content'); |
| 48 | +})().then(common.mustCall()); |
| 49 | + |
| 50 | +(async () => { |
| 51 | + // Handle non-boolean values for options.recursive |
| 52 | + |
| 53 | + if (!common.isWindows && !common.isOSX) { |
| 54 | + assert.throws(() => { |
| 55 | + const testsubdir = fs.mkdtempSync(testDir + path.sep); |
| 56 | + fs.watch(testsubdir, { recursive: '1' }); |
| 57 | + }, { |
| 58 | + code: 'ERR_INVALID_ARG_TYPE', |
| 59 | + }); |
| 60 | + } |
| 61 | +})().then(common.mustCall()); |
0 commit comments