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>
75 lines
2.2 KiB
JavaScript
75 lines
2.2 KiB
JavaScript
// Flags: --experimental-vfs
|
|
'use strict';
|
|
|
|
// fs.readFile, fs.readdir, fs.realpath, fs.access, and fs.exists callbacks
|
|
// dispatch through VFS.
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
const vfs = require('node:vfs');
|
|
|
|
const baseMountPoint = path.resolve('/tmp/vfs-readFile-cb-' + process.pid);
|
|
let counter = 0;
|
|
function mounted() {
|
|
const mountPoint = baseMountPoint + '-' + (counter++);
|
|
const myVfs = vfs.create();
|
|
myVfs.mkdirSync('/src', { recursive: true });
|
|
myVfs.writeFileSync('/src/hello.txt', 'hello world');
|
|
myVfs.mount(mountPoint);
|
|
return { myVfs, mountPoint };
|
|
}
|
|
|
|
// readFile (cb)
|
|
{
|
|
const { myVfs, mountPoint } = mounted();
|
|
fs.readFile(path.join(mountPoint, 'src/hello.txt'), 'utf8',
|
|
common.mustSucceed((data) => {
|
|
assert.strictEqual(data, 'hello world');
|
|
myVfs.unmount();
|
|
}));
|
|
}
|
|
|
|
// readdir (cb)
|
|
{
|
|
const { myVfs, mountPoint } = mounted();
|
|
fs.readdir(path.join(mountPoint, 'src'),
|
|
common.mustSucceed((entries) => {
|
|
assert.ok(entries.includes('hello.txt'));
|
|
myVfs.unmount();
|
|
}));
|
|
}
|
|
|
|
// realpath (cb)
|
|
{
|
|
const { myVfs, mountPoint } = mounted();
|
|
fs.realpath(path.join(mountPoint, 'src/hello.txt'),
|
|
common.mustSucceed((rp) => {
|
|
assert.strictEqual(rp, path.join(mountPoint, 'src/hello.txt'));
|
|
myVfs.unmount();
|
|
}));
|
|
}
|
|
|
|
// access (cb)
|
|
{
|
|
const { myVfs, mountPoint } = mounted();
|
|
fs.access(path.join(mountPoint, 'src/hello.txt'),
|
|
common.mustSucceed(() => {
|
|
myVfs.unmount();
|
|
}));
|
|
}
|
|
|
|
// exists (cb) - signature is (exists) not (err, exists), use mustCall
|
|
{
|
|
const { myVfs, mountPoint } = mounted();
|
|
fs.exists(path.join(mountPoint, 'src/hello.txt'),
|
|
common.mustCall((ok) => {
|
|
assert.strictEqual(ok, true);
|
|
fs.exists(path.join(mountPoint, 'missing'),
|
|
common.mustCall((ok2) => {
|
|
assert.strictEqual(ok2, false);
|
|
myVfs.unmount();
|
|
}));
|
|
}));
|
|
}
|