@vellumai/assistant 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +4 -0
- package/ARCHITECTURE.md +68 -15
- package/Dockerfile +2 -2
- package/bun.lock +6 -2
- package/docker-entrypoint.sh +32 -1
- package/docs/architecture/integrations.md +1 -1
- package/docs/architecture/memory.md +21 -24
- package/openapi.yaml +538 -3
- package/package.json +5 -1
- package/src/__tests__/anthropic-provider.test.ts +160 -95
- package/src/__tests__/app-dir-path-guard.test.ts +1 -0
- package/src/__tests__/app-executors.test.ts +47 -1
- package/src/__tests__/app-source-watcher.test.ts +159 -0
- package/src/__tests__/checker.test.ts +38 -6
- package/src/__tests__/config-schema.test.ts +5 -0
- package/src/__tests__/conversation-agent-loop-overflow.test.ts +4 -6
- package/src/__tests__/conversation-agent-loop.test.ts +4 -51
- package/src/__tests__/conversation-history-web-search.test.ts +1 -1
- package/src/__tests__/conversation-runtime-assembly.test.ts +653 -832
- package/src/__tests__/conversation-runtime-workspace.test.ts +1 -93
- package/src/__tests__/conversation-tool-setup-app-refresh.test.ts +17 -4
- package/src/__tests__/conversation-wipe.test.ts +2 -6
- package/src/__tests__/conversation-workspace-cache-state.test.ts +6 -12
- package/src/__tests__/conversation-workspace-injection.test.ts +25 -26
- package/src/__tests__/conversation-workspace-tool-tracking.test.ts +1 -1
- package/src/__tests__/copy-composer-tc-templates.test.ts +335 -0
- package/src/__tests__/date-context.test.ts +76 -210
- package/src/__tests__/db-schedule-syntax-migration.test.ts +16 -1
- package/src/__tests__/file-list-tool.test.ts +219 -0
- package/src/__tests__/first-greeting.test.ts +1 -1
- package/src/__tests__/heartbeat-service.test.ts +180 -3
- package/src/__tests__/identity-routes.test.ts +328 -0
- package/src/__tests__/injection-block.test.ts +24 -0
- package/src/__tests__/install-skill-routing.test.ts +7 -6
- package/src/__tests__/jobs-store-qdrant-breaker.test.ts +15 -14
- package/src/__tests__/list-messages-tool-merge.test.ts +300 -0
- package/src/__tests__/llm-context-normalization.test.ts +18 -18
- package/src/__tests__/llm-context-route-provider.test.ts +101 -0
- package/src/__tests__/llm-request-log-turn-query.test.ts +162 -0
- package/src/__tests__/log-export-workspace.test.ts +72 -105
- package/src/__tests__/mcp-abort-signal.test.ts +5 -0
- package/src/__tests__/mcp-client-auth.test.ts +5 -0
- package/src/__tests__/memory-recall-log-store.test.ts +132 -0
- package/src/__tests__/migration-export-streaming.test.ts +304 -0
- package/src/__tests__/migration-import-commit-http.test.ts +11 -10
- package/src/__tests__/mock-fetch.ts +87 -0
- package/src/__tests__/notification-decision-recipient-context.test.ts +282 -0
- package/src/__tests__/onboarding-template-contract.test.ts +62 -14
- package/src/__tests__/parser.test.ts +32 -0
- package/src/__tests__/permission-checker-host-gate.test.ts +452 -0
- package/src/__tests__/permission-controls-v2-flag.test.ts +55 -0
- package/src/__tests__/permission-mode-sse.test.ts +418 -0
- package/src/__tests__/permission-mode-store.test.ts +277 -0
- package/src/__tests__/permission-mode.test.ts +101 -0
- package/src/__tests__/platform-bash-auto-approve.test.ts +359 -0
- package/src/__tests__/profiler-routes.test.ts +502 -0
- package/src/__tests__/profiler-run-store.test.ts +441 -0
- package/src/__tests__/proxy-approval-callback.test.ts +4 -75
- package/src/__tests__/registry.test.ts +1 -1
- package/src/__tests__/sandbox-host-parity.test.ts +5 -4
- package/src/__tests__/scheduler-reuse-conversation.test.ts +368 -0
- package/src/__tests__/scrub-corrupted-image-attachments.test.ts +278 -0
- package/src/__tests__/search-skills-unified.test.ts +4 -3
- package/src/__tests__/send-endpoint-busy.test.ts +42 -3
- package/src/__tests__/set-permission-mode.test.ts +274 -0
- package/src/__tests__/skill-load-feature-flag.test.ts +12 -0
- package/src/__tests__/skill-memory.test.ts +2 -783
- package/src/__tests__/strip-memory-injections.test.ts +187 -0
- package/src/__tests__/subagent-detail.test.ts +84 -0
- package/src/__tests__/subagent-disposal.test.ts +308 -0
- package/src/__tests__/subagent-manager-notify.test.ts +19 -10
- package/src/__tests__/subagent-notify-parent.test.ts +390 -0
- package/src/__tests__/subagent-role-registry.test.ts +108 -0
- package/src/__tests__/subagent-tool-filtering.test.ts +71 -0
- package/src/__tests__/subagent-tools.test.ts +464 -4
- package/src/__tests__/system-prompt-ask-mode.test.ts +139 -0
- package/src/__tests__/task-memory-cleanup.test.ts +12 -12
- package/src/__tests__/terminal-tools.test.ts +17 -27
- package/src/__tests__/test-preload.ts +4 -0
- package/src/__tests__/tool-executor.test.ts +4 -26
- package/src/__tests__/tool-side-effects-slack-dm.test.ts +1 -0
- package/src/__tests__/top-level-renderer.test.ts +10 -13
- package/src/__tests__/trusted-contact-lifecycle-notifications.test.ts +116 -2
- package/src/__tests__/workspace-migration-028-recover-conversations-from-disk-view.test.ts +387 -0
- package/src/agent/loop.ts +6 -0
- package/src/approvals/guardian-request-resolvers.ts +24 -0
- package/src/avatar/traits-png-sync.ts +3 -3
- package/src/cli/__tests__/run-assistant-command.ts +29 -0
- package/src/cli/commands/__tests__/email-download.test.ts +245 -0
- package/src/cli/commands/__tests__/email-list.test.ts +192 -0
- package/src/cli/commands/__tests__/email-register.test.ts +186 -0
- package/src/cli/commands/__tests__/email-send.test.ts +291 -0
- package/src/cli/commands/__tests__/email-status.test.ts +181 -0
- package/src/cli/commands/__tests__/email-unregister.test.ts +139 -0
- package/src/cli/commands/__tests__/routes.test.ts +562 -0
- package/src/cli/commands/conversations.ts +1 -8
- package/src/cli/commands/email.ts +584 -835
- package/src/cli/commands/memory.ts +1 -34
- package/src/cli/commands/notifications.ts +7 -2
- package/src/cli/commands/oauth/connect.ts +14 -5
- package/src/cli/commands/routes.ts +396 -0
- package/src/cli/commands/skills.ts +130 -20
- package/src/cli/program.ts +2 -0
- package/src/cli.ts +1 -120
- package/src/config/bundled-skills/app-builder/SKILL.md +4 -1
- package/src/config/bundled-skills/gmail/SKILL.md +2 -2
- package/src/config/bundled-skills/messaging/SKILL.md +7 -0
- package/src/config/bundled-skills/schedule/SKILL.md +22 -2
- package/src/config/bundled-skills/schedule/TOOLS.json +8 -0
- package/src/config/bundled-skills/settings/tools/avatar-get.ts +3 -13
- package/src/config/bundled-skills/settings/tools/avatar-remove.ts +2 -4
- package/src/config/bundled-skills/settings/tools/avatar-update.ts +5 -2
- package/src/config/bundled-skills/slack/SKILL.md +2 -0
- package/src/config/bundled-skills/subagent/SKILL.md +43 -3
- package/src/config/bundled-skills/subagent/TOOLS.json +29 -4
- package/src/config/env-registry.ts +63 -0
- package/src/config/feature-flag-registry.json +17 -1
- package/src/config/schema.ts +8 -0
- package/src/config/schemas/filing.ts +51 -0
- package/src/config/schemas/heartbeat.ts +15 -12
- package/src/config/schemas/memory-lifecycle.ts +12 -0
- package/src/config/schemas/security.ts +14 -0
- package/src/daemon/app-source-watcher.ts +93 -0
- package/src/daemon/config-watcher.ts +79 -1
- package/src/daemon/conversation-agent-loop-handlers.ts +20 -0
- package/src/daemon/conversation-agent-loop.ts +158 -65
- package/src/daemon/conversation-history.ts +4 -19
- package/src/daemon/conversation-lifecycle.ts +8 -14
- package/src/daemon/conversation-process.ts +13 -7
- package/src/daemon/conversation-runtime-assembly.ts +300 -306
- package/src/daemon/conversation-tool-setup.ts +44 -14
- package/src/daemon/conversation-workspace.ts +1 -2
- package/src/daemon/conversation.ts +18 -0
- package/src/daemon/date-context.ts +26 -53
- package/src/daemon/first-greeting.ts +1 -1
- package/src/daemon/handlers/conversations.ts +4 -7
- package/src/daemon/handlers/shared.test.ts +143 -0
- package/src/daemon/handlers/shared.ts +63 -5
- package/src/daemon/handlers/skills.ts +11 -18
- package/src/daemon/lifecycle.ts +199 -157
- package/src/daemon/message-types/conversations.ts +25 -6
- package/src/daemon/message-types/messages.ts +9 -1
- package/src/daemon/message-types/schedules.ts +1 -0
- package/src/daemon/message-types/settings.ts +6 -0
- package/src/daemon/profiler-run-store.ts +557 -0
- package/src/daemon/server.ts +89 -9
- package/src/daemon/shutdown-handlers.ts +5 -0
- package/src/daemon/tool-side-effects.ts +23 -3
- package/src/export/transcript-formatter.ts +148 -0
- package/src/filing/filing-service.ts +228 -0
- package/src/heartbeat/heartbeat-service.ts +96 -7
- package/src/mcp/client.ts +6 -0
- package/src/mcp/mcp-oauth-provider.ts +149 -27
- package/src/memory/admin.ts +33 -32
- package/src/memory/app-store.ts +69 -0
- package/src/memory/conversation-bootstrap.ts +1 -1
- package/src/memory/conversation-crud.ts +136 -107
- package/src/memory/conversation-group-migration.ts +1 -1
- package/src/memory/conversation-queries.ts +58 -12
- package/src/memory/conversation-title-service.ts +1 -0
- package/src/memory/db-init.ts +182 -376
- package/src/memory/graph/bootstrap.ts +75 -66
- package/src/memory/graph/capability-seed.ts +167 -15
- package/src/memory/graph/consolidation.ts +38 -4
- package/src/memory/graph/conversation-graph-memory.ts +133 -104
- package/src/memory/graph/extraction-job.ts +9 -4
- package/src/memory/graph/extraction.ts +66 -23
- package/src/memory/graph/graph-memory-state-store.ts +37 -0
- package/src/memory/graph/graph-search.ts +29 -15
- package/src/memory/graph/injection.ts +38 -8
- package/src/memory/graph/inspect.ts +12 -3
- package/src/memory/graph/retriever.ts +365 -262
- package/src/memory/graph/store.test.ts +48 -0
- package/src/memory/graph/store.ts +150 -11
- package/src/memory/graph/tool-handlers.ts +84 -209
- package/src/memory/graph/tools.ts +8 -52
- package/src/memory/graph/types.ts +24 -0
- package/src/memory/job-handlers/cleanup.ts +44 -1
- package/src/memory/jobs-store.ts +70 -60
- package/src/memory/jobs-worker.ts +44 -28
- package/src/memory/llm-request-log-store.ts +96 -12
- package/src/memory/memory-recall-log-store.ts +49 -5
- package/src/memory/migrations/203-drop-memory-items-tables.ts +33 -1
- package/src/memory/migrations/206-memory-graph-node-edits.ts +19 -0
- package/src/memory/migrations/206-scrub-corrupted-image-attachments.ts +131 -0
- package/src/memory/migrations/207-conversation-graph-memory-state.ts +20 -0
- package/src/memory/migrations/208-conversations-last-message-at.ts +35 -0
- package/src/memory/migrations/209-strip-thinking-from-consolidated.ts +85 -0
- package/src/memory/migrations/210-schedule-reuse-conversation.ts +13 -0
- package/src/memory/migrations/211-memory-recall-logs-query-context.ts +21 -0
- package/src/memory/migrations/212-llm-request-logs-created-at-index.ts +19 -0
- package/src/memory/migrations/index.ts +8 -0
- package/src/memory/migrations/registry.ts +8 -0
- package/src/memory/schema/conversations.ts +14 -0
- package/src/memory/schema/infrastructure.ts +8 -1
- package/src/memory/schema/memory-core.ts +0 -51
- package/src/memory/schema/memory-graph.ts +15 -0
- package/src/memory/task-memory-cleanup.ts +30 -11
- package/src/notifications/copy-composer.ts +86 -0
- package/src/notifications/decision-engine.ts +35 -0
- package/src/permissions/checker.ts +12 -1
- package/src/permissions/permission-mode-store.ts +180 -0
- package/src/permissions/permission-mode.ts +31 -0
- package/src/permissions/workspace-policy.ts +9 -0
- package/src/prompts/system-prompt.ts +59 -7
- package/src/prompts/templates/BOOTSTRAP-REFERENCE.md +100 -0
- package/src/prompts/templates/BOOTSTRAP.md +70 -165
- package/src/prompts/templates/HEARTBEAT.md +3 -1
- package/src/prompts/templates/SOUL.md +25 -4
- package/src/prompts/templates/UPDATES.md +8 -0
- package/src/providers/anthropic/client.ts +107 -219
- package/src/runtime/auth/route-policy.ts +23 -0
- package/src/runtime/http-server.ts +32 -2
- package/src/runtime/http-types.ts +12 -1
- package/src/runtime/migrations/vbundle-builder.ts +389 -3
- package/src/runtime/migrations/vbundle-importer.ts +8 -6
- package/src/runtime/routes/__tests__/user-route-dispatcher.test.ts +378 -0
- package/src/runtime/routes/app-management-routes.ts +1 -11
- package/src/runtime/routes/approval-strategies/guardian-callback-strategy.ts +26 -0
- package/src/runtime/routes/archive-utils.ts +29 -0
- package/src/runtime/routes/avatar-routes.ts +2 -9
- package/src/runtime/routes/btw-routes.ts +14 -1
- package/src/runtime/routes/conversation-analysis-routes.ts +173 -0
- package/src/runtime/routes/conversation-management-routes.ts +1 -14
- package/src/runtime/routes/conversation-query-routes.ts +49 -3
- package/src/runtime/routes/conversation-routes.ts +264 -44
- package/src/runtime/routes/heartbeat-routes.ts +4 -10
- package/src/runtime/routes/identity-routes.ts +53 -18
- package/src/runtime/routes/llm-context-normalization.ts +14 -10
- package/src/runtime/routes/log-export-routes.ts +23 -275
- package/src/runtime/routes/memory-item-routes.test.ts +168 -233
- package/src/runtime/routes/migration-routes.ts +18 -7
- package/src/runtime/routes/profiler-routes.ts +350 -0
- package/src/runtime/routes/schedule-routes.ts +27 -12
- package/src/runtime/routes/settings-routes.ts +95 -8
- package/src/runtime/routes/subagents-routes.ts +28 -7
- package/src/runtime/routes/user-route-dispatcher.ts +223 -0
- package/src/runtime/routes/user-routes.ts +41 -0
- package/src/runtime/routes/workspace-routes.ts +0 -1
- package/src/schedule/schedule-store.ts +30 -0
- package/src/schedule/scheduler.ts +45 -18
- package/src/skills/catalog-install.ts +10 -2
- package/src/skills/managed-store.ts +2 -2
- package/src/skills/skill-memory.ts +1 -293
- package/src/subagent/index.ts +13 -3
- package/src/subagent/manager.ts +308 -29
- package/src/subagent/types.ts +68 -0
- package/src/tasks/task-runner.ts +4 -4
- package/src/tools/apps/executors.ts +29 -4
- package/src/tools/filesystem/list.ts +93 -0
- package/src/tools/permission-checker.ts +78 -0
- package/src/tools/registry.ts +4 -0
- package/src/tools/schedule/create.ts +3 -0
- package/src/tools/schedule/list.ts +1 -0
- package/src/tools/schedule/update.ts +6 -0
- package/src/tools/shared/filesystem/errors.ts +5 -0
- package/src/tools/shared/filesystem/file-ops-service.ts +90 -2
- package/src/tools/shared/filesystem/types.ts +17 -0
- package/src/tools/shared/shell-output.ts +31 -2
- package/src/tools/subagent/abort.ts +12 -2
- package/src/tools/subagent/message.ts +9 -2
- package/src/tools/subagent/notify-parent.ts +79 -0
- package/src/tools/subagent/read.ts +29 -8
- package/src/tools/subagent/resolve.ts +21 -0
- package/src/tools/subagent/spawn.ts +2 -0
- package/src/tools/subagent/status.ts +11 -1
- package/src/tools/system/avatar-generator.ts +3 -3
- package/src/tools/system/register.ts +23 -0
- package/src/tools/system/set-permission-mode.ts +103 -0
- package/src/tools/terminal/parser.ts +30 -5
- package/src/tools/terminal/safe-env.ts +16 -1
- package/src/tools/tool-manifest.ts +6 -0
- package/src/tools/types.ts +2 -0
- package/src/util/logger.ts +1 -1
- package/src/util/platform.ts +50 -17
- package/src/workspace/migrations/023-move-config-files-to-workspace.ts +2 -2
- package/src/workspace/migrations/024-move-runtime-files-to-workspace.ts +2 -2
- package/src/workspace/migrations/028-recover-conversations-from-disk-view.ts +270 -0
- package/src/workspace/migrations/029-seed-pkb.ts +84 -0
- package/src/workspace/migrations/registry.ts +4 -0
- package/src/workspace/top-level-renderer.ts +5 -9
- package/src/__tests__/cli-memory.test.ts +0 -377
- package/src/__tests__/clipboard.test.ts +0 -88
- package/src/cli/cli-memory.ts +0 -179
- package/src/util/clipboard.ts +0 -34
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Integration tests for the streaming vbundle export builder.
|
|
3
|
+
*
|
|
4
|
+
* Tests cover:
|
|
5
|
+
* - Format parity: streaming builder produces archives identical to sync builder
|
|
6
|
+
* - SHA-256 integrity: manifest checksums match actual file content
|
|
7
|
+
* - Temp file lifecycle: cleanup removes the temp file
|
|
8
|
+
* - Cleanup idempotency: calling cleanup twice doesn't throw
|
|
9
|
+
* - Round-trip: streamExportVBundle -> validateVBundle succeeds
|
|
10
|
+
*/
|
|
11
|
+
import { createHash } from "node:crypto";
|
|
12
|
+
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
13
|
+
import { join } from "node:path";
|
|
14
|
+
import { gunzipSync } from "node:zlib";
|
|
15
|
+
import { beforeAll, describe, expect, mock, test } from "bun:test";
|
|
16
|
+
|
|
17
|
+
const testDir = process.env.VELLUM_WORKSPACE_DIR!;
|
|
18
|
+
const testDbDir = join(testDir, "data", "db");
|
|
19
|
+
const testDbPath = join(testDbDir, "assistant.db");
|
|
20
|
+
const testConfigPath = join(testDir, "config.json");
|
|
21
|
+
|
|
22
|
+
mock.module("../util/logger.js", () => ({
|
|
23
|
+
getLogger: () =>
|
|
24
|
+
new Proxy({} as Record<string, unknown>, {
|
|
25
|
+
get: () => () => {},
|
|
26
|
+
}),
|
|
27
|
+
}));
|
|
28
|
+
|
|
29
|
+
mock.module("../permissions/trust-store.js", () => ({
|
|
30
|
+
getAllRules: () => [],
|
|
31
|
+
isStarterBundleAccepted: () => false,
|
|
32
|
+
clearCache: () => {},
|
|
33
|
+
}));
|
|
34
|
+
|
|
35
|
+
mock.module("../config/loader.js", () => ({
|
|
36
|
+
getConfig: () => ({
|
|
37
|
+
ui: {},
|
|
38
|
+
model: "test",
|
|
39
|
+
provider: "test",
|
|
40
|
+
memory: { enabled: false },
|
|
41
|
+
rateLimit: { maxRequestsPerMinute: 0 },
|
|
42
|
+
secretDetection: { enabled: false },
|
|
43
|
+
}),
|
|
44
|
+
}));
|
|
45
|
+
|
|
46
|
+
mock.module("../config/env.js", () => ({
|
|
47
|
+
isHttpAuthDisabled: () => true,
|
|
48
|
+
hasUngatedHttpAuthDisabled: () => false,
|
|
49
|
+
getGatewayInternalBaseUrl: () => "http://127.0.0.1:7830",
|
|
50
|
+
getGatewayPort: () => 7830,
|
|
51
|
+
getRuntimeHttpPort: () => 7821,
|
|
52
|
+
getRuntimeHttpHost: () => "127.0.0.1",
|
|
53
|
+
getRuntimeGatewayOriginSecret: () => undefined,
|
|
54
|
+
getIngressPublicBaseUrl: () => undefined,
|
|
55
|
+
setIngressPublicBaseUrl: () => {},
|
|
56
|
+
}));
|
|
57
|
+
|
|
58
|
+
import {
|
|
59
|
+
buildExportVBundle,
|
|
60
|
+
streamExportVBundle,
|
|
61
|
+
} from "../runtime/migrations/vbundle-builder.js";
|
|
62
|
+
import { validateVBundle } from "../runtime/migrations/vbundle-validator.js";
|
|
63
|
+
|
|
64
|
+
// Test fixture data: a minimal SQLite header to simulate a real database file
|
|
65
|
+
const SQLITE_HEADER = new Uint8Array([
|
|
66
|
+
0x53, 0x51, 0x4c, 0x69, 0x74, 0x65, 0x20, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74,
|
|
67
|
+
0x20, 0x33, 0x00,
|
|
68
|
+
]);
|
|
69
|
+
const TEST_CONFIG = { provider: "anthropic", model: "test-model" };
|
|
70
|
+
|
|
71
|
+
// Generate a synthetic large file (~10 MB of repeated data)
|
|
72
|
+
const LARGE_FILE_SIZE = 10 * 1024 * 1024; // 10 MB
|
|
73
|
+
const LARGE_FILE_NAME = "large-test-data.txt";
|
|
74
|
+
|
|
75
|
+
function generateLargeFileContent(): Buffer {
|
|
76
|
+
const line =
|
|
77
|
+
"This is a line of repeated test data for streaming export verification.\n";
|
|
78
|
+
const lineBuffer = Buffer.from(line);
|
|
79
|
+
const buf = Buffer.alloc(LARGE_FILE_SIZE);
|
|
80
|
+
for (let offset = 0; offset < LARGE_FILE_SIZE; offset += lineBuffer.length) {
|
|
81
|
+
const remaining = LARGE_FILE_SIZE - offset;
|
|
82
|
+
lineBuffer.copy(buf, offset, 0, Math.min(lineBuffer.length, remaining));
|
|
83
|
+
}
|
|
84
|
+
return buf;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
beforeAll(() => {
|
|
88
|
+
// Write test fixture files so the export reads real data
|
|
89
|
+
mkdirSync(testDbDir, { recursive: true });
|
|
90
|
+
writeFileSync(testDbPath, SQLITE_HEADER);
|
|
91
|
+
writeFileSync(testConfigPath, JSON.stringify(TEST_CONFIG, null, 2));
|
|
92
|
+
writeFileSync(join(testDir, LARGE_FILE_NAME), generateLargeFileContent());
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
// ---------------------------------------------------------------------------
|
|
96
|
+
// Tar parsing helper (mirrors vbundle-validator's internal parser)
|
|
97
|
+
// ---------------------------------------------------------------------------
|
|
98
|
+
|
|
99
|
+
interface TarEntry {
|
|
100
|
+
name: string;
|
|
101
|
+
data: Uint8Array;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
function parseTarEntries(gzippedData: Uint8Array): TarEntry[] {
|
|
105
|
+
const tarData = gunzipSync(gzippedData);
|
|
106
|
+
const entries: TarEntry[] = [];
|
|
107
|
+
let offset = 0;
|
|
108
|
+
const BLOCK_SIZE = 512;
|
|
109
|
+
|
|
110
|
+
while (offset + BLOCK_SIZE <= tarData.length) {
|
|
111
|
+
const header = tarData.subarray(offset, offset + BLOCK_SIZE);
|
|
112
|
+
if (header.every((b) => b === 0)) break;
|
|
113
|
+
|
|
114
|
+
let end = 0;
|
|
115
|
+
while (end < 100 && header[end] !== 0) end++;
|
|
116
|
+
const name = new TextDecoder().decode(header.subarray(0, end));
|
|
117
|
+
|
|
118
|
+
let sizeEnd = 124;
|
|
119
|
+
while (sizeEnd < 136 && header[sizeEnd] !== 0) sizeEnd++;
|
|
120
|
+
const sizeStr = new TextDecoder().decode(header.subarray(124, sizeEnd));
|
|
121
|
+
const size = parseInt(sizeStr, 8) || 0;
|
|
122
|
+
|
|
123
|
+
const dataStart = offset + BLOCK_SIZE;
|
|
124
|
+
const data = tarData.subarray(dataStart, dataStart + size);
|
|
125
|
+
const dataBlocks = Math.ceil(size / BLOCK_SIZE);
|
|
126
|
+
|
|
127
|
+
if (header[156] === "0".charCodeAt(0) || header[156] === 0) {
|
|
128
|
+
entries.push({ name, data: new Uint8Array(data) });
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
offset = dataStart + dataBlocks * BLOCK_SIZE;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
return entries;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
function sha256Hex(data: Uint8Array): string {
|
|
138
|
+
return createHash("sha256").update(data).digest("hex");
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
// ---------------------------------------------------------------------------
|
|
142
|
+
// Streaming export tests
|
|
143
|
+
// ---------------------------------------------------------------------------
|
|
144
|
+
|
|
145
|
+
describe("streamExportVBundle", () => {
|
|
146
|
+
test("returns a temp file that exists on disk", async () => {
|
|
147
|
+
const result = await streamExportVBundle({
|
|
148
|
+
workspaceDir: testDir,
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
try {
|
|
152
|
+
expect(existsSync(result.tempPath)).toBe(true);
|
|
153
|
+
expect(result.size).toBeGreaterThan(0);
|
|
154
|
+
} finally {
|
|
155
|
+
await result.cleanup();
|
|
156
|
+
}
|
|
157
|
+
});
|
|
158
|
+
|
|
159
|
+
test("manifest contains correct SHA-256 checksums for all files", async () => {
|
|
160
|
+
const result = await streamExportVBundle({
|
|
161
|
+
workspaceDir: testDir,
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
try {
|
|
165
|
+
const archiveData = new Uint8Array(readFileSync(result.tempPath));
|
|
166
|
+
const entries = parseTarEntries(archiveData);
|
|
167
|
+
|
|
168
|
+
for (const fileEntry of result.manifest.files) {
|
|
169
|
+
const tarEntry = entries.find((e) => e.name === fileEntry.path);
|
|
170
|
+
expect(tarEntry).toBeDefined();
|
|
171
|
+
expect(sha256Hex(tarEntry!.data)).toBe(fileEntry.sha256);
|
|
172
|
+
}
|
|
173
|
+
} finally {
|
|
174
|
+
await result.cleanup();
|
|
175
|
+
}
|
|
176
|
+
});
|
|
177
|
+
|
|
178
|
+
test("decompressed archive produces same files as buildExportVBundle", async () => {
|
|
179
|
+
const streamResult = await streamExportVBundle({
|
|
180
|
+
workspaceDir: testDir,
|
|
181
|
+
});
|
|
182
|
+
|
|
183
|
+
try {
|
|
184
|
+
const syncResult = buildExportVBundle({
|
|
185
|
+
workspaceDir: testDir,
|
|
186
|
+
});
|
|
187
|
+
|
|
188
|
+
const streamArchiveData = new Uint8Array(
|
|
189
|
+
readFileSync(streamResult.tempPath),
|
|
190
|
+
);
|
|
191
|
+
const streamEntries = parseTarEntries(streamArchiveData);
|
|
192
|
+
const syncEntries = parseTarEntries(syncResult.archive);
|
|
193
|
+
|
|
194
|
+
// Filter out manifest.json — compare only data files
|
|
195
|
+
const streamFileEntries = streamEntries
|
|
196
|
+
.filter((e) => e.name !== "manifest.json")
|
|
197
|
+
.sort((a, b) => a.name.localeCompare(b.name));
|
|
198
|
+
const syncFileEntries = syncEntries
|
|
199
|
+
.filter((e) => e.name !== "manifest.json")
|
|
200
|
+
.sort((a, b) => a.name.localeCompare(b.name));
|
|
201
|
+
|
|
202
|
+
// Same set of files
|
|
203
|
+
expect(streamFileEntries.map((e) => e.name)).toEqual(
|
|
204
|
+
syncFileEntries.map((e) => e.name),
|
|
205
|
+
);
|
|
206
|
+
|
|
207
|
+
// Same content (verified via checksums)
|
|
208
|
+
for (let i = 0; i < streamFileEntries.length; i++) {
|
|
209
|
+
expect(sha256Hex(streamFileEntries[i].data)).toBe(
|
|
210
|
+
sha256Hex(syncFileEntries[i].data),
|
|
211
|
+
);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
// Same manifest file entries (excluding timing fields)
|
|
215
|
+
const streamManifestFiles = streamResult.manifest.files
|
|
216
|
+
.slice()
|
|
217
|
+
.sort((a, b) => a.path.localeCompare(b.path));
|
|
218
|
+
const syncManifestFiles = syncResult.manifest.files
|
|
219
|
+
.slice()
|
|
220
|
+
.sort((a, b) => a.path.localeCompare(b.path));
|
|
221
|
+
|
|
222
|
+
expect(streamManifestFiles.map((f) => f.path)).toEqual(
|
|
223
|
+
syncManifestFiles.map((f) => f.path),
|
|
224
|
+
);
|
|
225
|
+
expect(streamManifestFiles.map((f) => f.sha256)).toEqual(
|
|
226
|
+
syncManifestFiles.map((f) => f.sha256),
|
|
227
|
+
);
|
|
228
|
+
expect(streamManifestFiles.map((f) => f.size)).toEqual(
|
|
229
|
+
syncManifestFiles.map((f) => f.size),
|
|
230
|
+
);
|
|
231
|
+
} finally {
|
|
232
|
+
await streamResult.cleanup();
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
|
|
236
|
+
test("cleanup removes the temp file", async () => {
|
|
237
|
+
const result = await streamExportVBundle({
|
|
238
|
+
workspaceDir: testDir,
|
|
239
|
+
});
|
|
240
|
+
|
|
241
|
+
expect(existsSync(result.tempPath)).toBe(true);
|
|
242
|
+
await result.cleanup();
|
|
243
|
+
expect(existsSync(result.tempPath)).toBe(false);
|
|
244
|
+
});
|
|
245
|
+
});
|
|
246
|
+
|
|
247
|
+
// ---------------------------------------------------------------------------
|
|
248
|
+
// Round-trip test
|
|
249
|
+
// ---------------------------------------------------------------------------
|
|
250
|
+
|
|
251
|
+
describe("streamExportVBundle round-trip", () => {
|
|
252
|
+
test("streaming archive passes validateVBundle with matching manifest", async () => {
|
|
253
|
+
const result = await streamExportVBundle({
|
|
254
|
+
workspaceDir: testDir,
|
|
255
|
+
});
|
|
256
|
+
|
|
257
|
+
try {
|
|
258
|
+
const archiveData = new Uint8Array(readFileSync(result.tempPath));
|
|
259
|
+
const validationResult = validateVBundle(archiveData);
|
|
260
|
+
|
|
261
|
+
expect(validationResult.is_valid).toBe(true);
|
|
262
|
+
expect(validationResult.errors).toHaveLength(0);
|
|
263
|
+
expect(validationResult.manifest).toBeDefined();
|
|
264
|
+
|
|
265
|
+
// Verify manifest fields match
|
|
266
|
+
expect(validationResult.manifest!.schema_version).toBe(
|
|
267
|
+
result.manifest.schema_version,
|
|
268
|
+
);
|
|
269
|
+
expect(validationResult.manifest!.manifest_sha256).toBe(
|
|
270
|
+
result.manifest.manifest_sha256,
|
|
271
|
+
);
|
|
272
|
+
|
|
273
|
+
// Verify file entries match
|
|
274
|
+
const validatedFiles = validationResult
|
|
275
|
+
.manifest!.files.slice()
|
|
276
|
+
.sort((a, b) => a.path.localeCompare(b.path));
|
|
277
|
+
const resultFiles = result.manifest.files
|
|
278
|
+
.slice()
|
|
279
|
+
.sort((a, b) => a.path.localeCompare(b.path));
|
|
280
|
+
|
|
281
|
+
expect(validatedFiles).toEqual(resultFiles);
|
|
282
|
+
} finally {
|
|
283
|
+
await result.cleanup();
|
|
284
|
+
}
|
|
285
|
+
});
|
|
286
|
+
});
|
|
287
|
+
|
|
288
|
+
// ---------------------------------------------------------------------------
|
|
289
|
+
// Cleanup idempotency test
|
|
290
|
+
// ---------------------------------------------------------------------------
|
|
291
|
+
|
|
292
|
+
describe("streamExportVBundle cleanup", () => {
|
|
293
|
+
test("calling cleanup twice does not throw", async () => {
|
|
294
|
+
const result = await streamExportVBundle({
|
|
295
|
+
workspaceDir: testDir,
|
|
296
|
+
});
|
|
297
|
+
|
|
298
|
+
await result.cleanup();
|
|
299
|
+
// Second call should not throw
|
|
300
|
+
await result.cleanup();
|
|
301
|
+
|
|
302
|
+
expect(existsSync(result.tempPath)).toBe(false);
|
|
303
|
+
});
|
|
304
|
+
});
|
|
@@ -355,10 +355,10 @@ describe("handleMigrationImport", () => {
|
|
|
355
355
|
expect(writtenData).toEqual(newDbData);
|
|
356
356
|
});
|
|
357
357
|
|
|
358
|
-
test("workspace is cleared before restore —
|
|
359
|
-
//
|
|
360
|
-
//
|
|
361
|
-
//
|
|
358
|
+
test("workspace is cleared before restore — preserved dirs are overwritten", async () => {
|
|
359
|
+
// New-format bundles (workspace/ prefix) trigger workspace clearing, but
|
|
360
|
+
// data/db/ is preserved during clearing to avoid destroying the database
|
|
361
|
+
// if the import fails partway. The DB file is overwritten (with backup).
|
|
362
362
|
const newDbData = new Uint8Array([0x01, 0x02, 0x03]);
|
|
363
363
|
const vbundle = createValidVBundle([
|
|
364
364
|
{ path: "workspace/data/db/assistant.db", data: newDbData },
|
|
@@ -373,17 +373,18 @@ describe("handleMigrationImport", () => {
|
|
|
373
373
|
const body = (await res.json()) as ImportCommitResponse;
|
|
374
374
|
|
|
375
375
|
expect(body.success).toBe(true);
|
|
376
|
-
expect(body.summary.backups_created).toBe(
|
|
376
|
+
expect(body.summary.backups_created).toBe(1);
|
|
377
377
|
|
|
378
378
|
const dbFile = body.files.find(
|
|
379
379
|
(f) => f.path === "workspace/data/db/assistant.db",
|
|
380
380
|
);
|
|
381
381
|
expect(dbFile).toBeDefined();
|
|
382
|
-
expect(dbFile!.action).toBe("
|
|
382
|
+
expect(dbFile!.action).toBe("overwritten");
|
|
383
383
|
});
|
|
384
384
|
|
|
385
|
-
test("
|
|
386
|
-
//
|
|
385
|
+
test("workspace clear: preserved dirs overwritten, cleared dirs created", async () => {
|
|
386
|
+
// data/db/ is preserved during workspace clearing → DB is "overwritten".
|
|
387
|
+
// config.json lives at the workspace root which IS cleared → "created".
|
|
387
388
|
const newDbData = new Uint8Array([0xaa, 0xbb]);
|
|
388
389
|
const newConfigData = new TextEncoder().encode('{"provider":"openai"}');
|
|
389
390
|
const vbundle = createValidVBundle([
|
|
@@ -408,8 +409,8 @@ describe("handleMigrationImport", () => {
|
|
|
408
409
|
(f) => f.path === "workspace/config.json",
|
|
409
410
|
);
|
|
410
411
|
|
|
411
|
-
//
|
|
412
|
-
expect(dbFile!.action).toBe("
|
|
412
|
+
// data/db/ preserved during clearing → overwritten; config.json cleared → created
|
|
413
|
+
expect(dbFile!.action).toBe("overwritten");
|
|
413
414
|
expect(configFile!.action).toBe("created");
|
|
414
415
|
});
|
|
415
416
|
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Global test utility for mocking `globalThis.fetch`.
|
|
3
|
+
*
|
|
4
|
+
* Usage:
|
|
5
|
+
* mockFetch("/some/path", { method: "POST" }, { body: { ok: true }, status: 200 });
|
|
6
|
+
*
|
|
7
|
+
* Entries are consumed in order — the first match wins and is removed, so
|
|
8
|
+
* register multiple responses for the same path to simulate sequences.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
interface MockedResponse {
|
|
12
|
+
body?: unknown;
|
|
13
|
+
status: number;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
interface MockFetchEntry {
|
|
17
|
+
path: string;
|
|
18
|
+
init: Partial<RequestInit>;
|
|
19
|
+
response: MockedResponse | Response;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const entries: MockFetchEntry[] = [];
|
|
23
|
+
const calls: { path: string; init: RequestInit }[] = [];
|
|
24
|
+
let originalFetch: typeof globalThis.fetch | undefined;
|
|
25
|
+
|
|
26
|
+
export function mockFetch(
|
|
27
|
+
path: string,
|
|
28
|
+
init: Partial<RequestInit>,
|
|
29
|
+
response: MockedResponse | Response,
|
|
30
|
+
): void {
|
|
31
|
+
if (!originalFetch) {
|
|
32
|
+
originalFetch = globalThis.fetch;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
entries.push({ path, init, response });
|
|
36
|
+
|
|
37
|
+
globalThis.fetch = (async (
|
|
38
|
+
input: RequestInfo | URL,
|
|
39
|
+
actualInit?: RequestInit,
|
|
40
|
+
) => {
|
|
41
|
+
const url = String(input);
|
|
42
|
+
calls.push({ path: url, init: actualInit ?? {} });
|
|
43
|
+
|
|
44
|
+
const idx = entries.findIndex((e) => {
|
|
45
|
+
if (!url.includes(e.path)) return false;
|
|
46
|
+
for (const [key, val] of Object.entries(e.init)) {
|
|
47
|
+
if (
|
|
48
|
+
(actualInit as Record<string, unknown> | undefined)?.[key] !== val
|
|
49
|
+
) {
|
|
50
|
+
return false;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
return true;
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
if (idx === -1) {
|
|
57
|
+
return new Response(JSON.stringify({ detail: "No mock matched" }), {
|
|
58
|
+
status: 500,
|
|
59
|
+
});
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const entry = entries[idx];
|
|
63
|
+
entries.splice(idx, 1);
|
|
64
|
+
|
|
65
|
+
if (entry.response instanceof Response) {
|
|
66
|
+
return entry.response;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return new Response(JSON.stringify(entry.response.body ?? null), {
|
|
70
|
+
status: entry.response.status,
|
|
71
|
+
headers: { "Content-Type": "application/json" },
|
|
72
|
+
});
|
|
73
|
+
}) as unknown as typeof globalThis.fetch;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export function getMockFetchCalls(): { path: string; init: RequestInit }[] {
|
|
77
|
+
return calls;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export function resetMockFetch(): void {
|
|
81
|
+
if (originalFetch) {
|
|
82
|
+
globalThis.fetch = originalFetch;
|
|
83
|
+
originalFetch = undefined;
|
|
84
|
+
}
|
|
85
|
+
entries.length = 0;
|
|
86
|
+
calls.length = 0;
|
|
87
|
+
}
|