Files
memind/user-space.test.mjs
T
John 2e14873f2d Initial commit: Memind H5 portal with MindSpace, Plaza, and agent jobs.
Track application source and tests; exclude local env, user workspaces, and runtime data via .gitignore.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-15 15:04:43 -07:00

63 lines
2.3 KiB
JavaScript

import assert from 'node:assert/strict';
import fs from 'node:fs';
import os from 'node:os';
import path from 'node:path';
import test from 'node:test';
import {
ensureUserZoneDirs,
mirrorAssetToZone,
resolveUserWorkspaceRoot,
syncUserZonesFromAssets,
UPLOAD_ZONE_CODES,
} from './user-space.mjs';
const USER_ID = 'a6fb1e97-2b0f-447b-b138-4561d8e5c53e';
test('user workspace is MindSpace/<userId> with zone subdirs', () => {
const h5Root = fs.mkdtempSync(path.join(os.tmpdir(), 'h5-'));
const workspace = resolveUserWorkspaceRoot(h5Root, { id: USER_ID, username: 'john' });
assert.ok(workspace.endsWith(`${path.sep}MindSpace${path.sep}${USER_ID}`));
ensureUserZoneDirs(workspace);
for (const code of UPLOAD_ZONE_CODES) {
assert.ok(fs.existsSync(path.join(workspace, code)));
}
});
test('mirrorAssetToZone copies upload into oa/', () => {
const h5Root = fs.mkdtempSync(path.join(os.tmpdir(), 'h5-'));
const workspace = resolveUserWorkspaceRoot(h5Root, { id: USER_ID, username: 'john' });
const source = path.join(h5Root, 'source.csv');
fs.writeFileSync(source, 'a,b\n1,2\n');
const dest = mirrorAssetToZone({
workspaceRoot: workspace,
categoryCode: 'oa',
filename: 'export.csv',
sourcePath: source,
});
assert.equal(dest, path.join(workspace, 'oa', 'export.csv'));
assert.equal(fs.readFileSync(dest, 'utf8'), 'a,b\n1,2\n');
});
test('syncUserZonesFromAssets backfills from canonical storage', async () => {
const h5Root = fs.mkdtempSync(path.join(os.tmpdir(), 'h5-'));
const storageRoot = path.join(h5Root, 'data', 'mindspace');
const userId = USER_ID;
const storageKey = path.posix.join('users', userId, 'assets', 'a1', 'versions', 'v1');
const sourcePath = path.join(storageRoot, storageKey);
fs.mkdirSync(path.dirname(sourcePath), { recursive: true });
fs.writeFileSync(sourcePath, 'col\nval\n');
const workspace = resolveUserWorkspaceRoot(h5Root, { id: userId, username: 'john' });
const pool = {
async query() {
return [
[{ original_filename: '2025-12-06T13-34_export.csv', category_code: 'oa', storage_key: storageKey }],
];
},
};
const result = await syncUserZonesFromAssets(pool, storageRoot, userId, workspace);
assert.equal(result.mirrored, 1);
assert.ok(
fs.existsSync(path.join(workspace, 'oa', '2025-12-06T13-34_export.csv')),
);
});