Add mount/unmount lifecycle on `VirtualFileSystem`, a handler registry that fs.js and fs/promises.js consult via `vfsState.handlers`, and a router that maps absolute paths to the VFS that owns them. When a VFS is mounted, the public `fs.*` and `fs/promises` APIs (including streams, `fs.watch`, and `opendir`) dispatch to the provider for paths under the mount point, and fall through to the real filesystem otherwise. Includes per-method dispatch tests, error-path coverage, multi-mount routing tests, and router unit tests. Ref: https://github.com/nodejs/node/pull/63115 Signed-off-by: Matteo Collina <hello@matteocollina.com> PR-URL: https://github.com/nodejs/node/pull/63537 Refs: https://github.com/nodejs/node/pull/63115 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it>
34 lines
871 B
JavaScript
34 lines
871 B
JavaScript
// Flags: --experimental-vfs
|
|
'use strict';
|
|
|
|
// fs.mkdtempSync dispatches to VFS and returns a mount-rooted path, including
|
|
// the buffer-encoding variant.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const vfs = require('node:vfs');
|
|
|
|
const mountPoint = path.resolve('/tmp/vfs-mkdtempSync-' + process.pid);
|
|
const myVfs = vfs.create();
|
|
myVfs.mkdirSync('/src', { recursive: true });
|
|
myVfs.mount(mountPoint);
|
|
|
|
const prefix = path.join(mountPoint, 'src/tmp-');
|
|
|
|
// String result
|
|
{
|
|
const dir = fs.mkdtempSync(prefix);
|
|
assert.ok(dir.startsWith(prefix));
|
|
assert.strictEqual(dir.length, prefix.length + 6);
|
|
assert.strictEqual(fs.statSync(dir).isDirectory(), true);
|
|
}
|
|
|
|
// Buffer result
|
|
{
|
|
const dir = fs.mkdtempSync(prefix, { encoding: 'buffer' });
|
|
assert.ok(Buffer.isBuffer(dir));
|
|
}
|
|
|
|
myVfs.unmount();
|