@polderlabs/bizar 3.23.1 → 4.2.0
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/README.md +83 -16
- package/bizar-dash/.bizar/activity.log +3 -0
- package/bizar-dash/.bizar/graph/.graphify_analysis.json +1540 -0
- package/bizar-dash/.bizar/graph/.graphify_labels.json +1 -0
- package/bizar-dash/.bizar/graph/GRAPH_REPORT.md +404 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/0661b816358db84dfdb7f10443db8a61152fd20b3fee950caf8fbf32920a1790.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/16da06d774142a6e5d74829ad982531286a6193ef798de8f593db029e123ec32.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/27e5697c01254c69c64c5a33896669073b40afb5ba88375102ae77fa5404136d.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/532997898027254aa4c0932243dc71d2f55888181232b65974961934997dc85b.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/84e3451a64c7f99f0cd6a88b0748d7426780486f53ab4935b7476b28c08f8293.json +1 -0
- package/bizar-dash/.bizar/graph/cache/ast/v0.8.46/88e5ea5f3e78fa69353fe9e6a8d1a05391d54605e25600cb125531eb5a6432ff.json +1 -0
- package/bizar-dash/.bizar/graph/cache/stat-index.json +1 -0
- package/bizar-dash/.bizar/graph/graph.html +307 -0
- package/bizar-dash/.bizar/graph/graph.json +40267 -0
- package/bizar-dash/.bizar/graph/manifest.json +762 -0
- package/bizar-dash/.graphifyignore +40 -0
- package/bizar-dash/.obsidian/README.md +14 -0
- package/bizar-dash/.obsidian/daily/2026-06-25.md +9 -0
- package/bizar-dash/.obsidian/vault.json +7 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/SKILL.md +103 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/assets/template.html +338 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/example.html +81 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/open-design.json +172 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/references/checklist.md +44 -0
- package/bizar-dash/.od-skills/web-prototype-e1429c1737/references/layouts.md +247 -0
- package/bizar-dash/CHANGELOG.md +474 -0
- package/bizar-dash/DESIGN.md +136 -0
- package/bizar-dash/dist/assets/main-B3RgW6FS.js +331 -0
- package/bizar-dash/dist/assets/main-B3RgW6FS.js.map +1 -0
- package/bizar-dash/dist/assets/main-DlJ8wgLR.css +1 -0
- package/bizar-dash/dist/assets/mobile-CsZQAswA.css +1 -0
- package/bizar-dash/dist/assets/mobile-DbxIw8BG.js +2 -0
- package/bizar-dash/dist/assets/mobile-DbxIw8BG.js.map +1 -0
- package/bizar-dash/dist/assets/mobile-Dvq2d53Y.js +354 -0
- package/bizar-dash/dist/assets/mobile-Dvq2d53Y.js.map +1 -0
- package/bizar-dash/dist/index.html +40 -0
- package/bizar-dash/dist/mobile.html +22 -0
- package/bizar-dash/plans/debug-plan/comments.json +1 -0
- package/bizar-dash/plans/debug-plan/meta.json +10 -0
- package/bizar-dash/plans/debug-plan/plan.json +174 -0
- package/bizar-dash/scripts/smoke-bg-retry.mjs +246 -0
- package/bizar-dash/src/cli/dashboard-ports.mjs +488 -0
- package/bizar-dash/src/cli.mjs +522 -0
- package/bizar-dash/src/server/activity-log.mjs +174 -0
- package/bizar-dash/src/server/agents-store.mjs +465 -0
- package/bizar-dash/src/server/api.mjs +138 -0
- package/bizar-dash/src/server/artifact-template.html +810 -0
- package/bizar-dash/src/server/artifacts-store.mjs +733 -0
- package/bizar-dash/src/server/auth.mjs +381 -0
- package/bizar-dash/src/server/background-store.mjs +447 -0
- package/bizar-dash/src/server/bg-poller.mjs +305 -0
- package/bizar-dash/src/server/bg-retry.mjs +574 -0
- package/bizar-dash/src/server/browser.mjs +40 -0
- package/bizar-dash/src/server/diagnostics-store.mjs +148 -0
- package/bizar-dash/src/server/dialog-poller.mjs +105 -0
- package/bizar-dash/src/server/dialog-store.mjs +177 -0
- package/bizar-dash/src/server/glyphs/mdx-compiler.mjs +583 -0
- package/bizar-dash/src/server/lib/path-safe.mjs +283 -0
- package/bizar-dash/src/server/memory-git.mjs +329 -0
- package/bizar-dash/src/server/memory-lightrag.mjs +767 -0
- package/bizar-dash/src/server/memory-schema.mjs +145 -0
- package/bizar-dash/src/server/memory-secrets.mjs +84 -0
- package/bizar-dash/src/server/memory-store.mjs +471 -0
- package/bizar-dash/src/server/mod-security.mjs +398 -0
- package/bizar-dash/src/server/mods-loader.mjs +1067 -0
- package/bizar-dash/src/server/notifications-store.mjs +243 -0
- package/bizar-dash/src/server/obsidian-store.mjs +318 -0
- package/bizar-dash/src/server/opencode-runner.mjs +279 -0
- package/bizar-dash/src/server/pair-store.mjs +138 -0
- package/bizar-dash/src/server/projects-store.mjs +364 -0
- package/bizar-dash/src/server/providers-store.mjs +789 -0
- package/bizar-dash/src/server/routes/_shared.mjs +415 -0
- package/bizar-dash/src/server/routes/activity.mjs +110 -0
- package/bizar-dash/src/server/routes/agents.mjs +134 -0
- package/bizar-dash/src/server/routes/artifacts.mjs +279 -0
- package/bizar-dash/src/server/routes/auth.mjs +69 -0
- package/bizar-dash/src/server/routes/background.mjs +165 -0
- package/bizar-dash/src/server/routes/chat.mjs +485 -0
- package/bizar-dash/src/server/routes/config.mjs +129 -0
- package/bizar-dash/src/server/routes/diagnostics.mjs +50 -0
- package/bizar-dash/src/server/routes/dialogs.mjs +86 -0
- package/bizar-dash/src/server/routes/fs.mjs +429 -0
- package/bizar-dash/src/server/routes/history.mjs +78 -0
- package/bizar-dash/src/server/routes/memory.mjs +658 -0
- package/bizar-dash/src/server/routes/misc.mjs +89 -0
- package/bizar-dash/src/server/routes/mods.mjs +359 -0
- package/bizar-dash/src/server/routes/notifications.mjs +54 -0
- package/bizar-dash/src/server/routes/obsidian.mjs +239 -0
- package/bizar-dash/src/server/routes/opencode-sessions.mjs +55 -0
- package/bizar-dash/src/server/routes/overview.mjs +91 -0
- package/bizar-dash/src/server/routes/pair.mjs +67 -0
- package/bizar-dash/src/server/routes/projects.mjs +175 -0
- package/bizar-dash/src/server/routes/providers.mjs +47 -0
- package/bizar-dash/src/server/routes/schedules.mjs +104 -0
- package/bizar-dash/src/server/routes/settings.mjs +51 -0
- package/bizar-dash/src/server/routes/skills.mjs +76 -0
- package/bizar-dash/src/server/routes/tasks.mjs +468 -0
- package/bizar-dash/src/server/routes/themes.mjs +51 -0
- package/bizar-dash/src/server/routes-v2/auth.mjs +59 -0
- package/bizar-dash/src/server/routes-v2/events.mjs +107 -0
- package/bizar-dash/src/server/routes-v2/health.mjs +21 -0
- package/bizar-dash/src/server/routes-v2/index.mjs +90 -0
- package/bizar-dash/src/server/routes-v2/sessions.mjs +111 -0
- package/bizar-dash/src/server/schedules-runner.mjs +369 -0
- package/bizar-dash/src/server/schedules-store.mjs +268 -0
- package/bizar-dash/src/server/search-store.mjs +220 -0
- package/bizar-dash/src/server/serve-info.mjs +684 -0
- package/bizar-dash/src/server/server.mjs +796 -0
- package/bizar-dash/src/server/settings-store.mjs +45 -0
- package/bizar-dash/src/server/skills-store.mjs +300 -0
- package/bizar-dash/src/server/state.mjs +437 -0
- package/bizar-dash/src/server/tailscale-store.mjs +113 -0
- package/bizar-dash/src/server/task-delegator.mjs +824 -0
- package/bizar-dash/src/server/tasks-store.mjs +508 -0
- package/bizar-dash/src/server/tui.mjs +923 -0
- package/bizar-dash/src/server/update-store.mjs +168 -0
- package/bizar-dash/src/server/v2-auth-file.mjs +99 -0
- package/bizar-dash/src/server/v2-event-bus.mjs +128 -0
- package/bizar-dash/src/server/watcher.mjs +81 -0
- package/bizar-dash/src/server/yaml.mjs +238 -0
- package/bizar-dash/src/web/App.tsx +718 -0
- package/bizar-dash/src/web/MobileApp.tsx +408 -0
- package/bizar-dash/src/web/components/ArtifactCreateDialog.tsx +95 -0
- package/bizar-dash/src/web/components/ArtifactListDialog.tsx +55 -0
- package/bizar-dash/src/web/components/ArtifactViewer.tsx +143 -0
- package/bizar-dash/src/web/components/AuditDialog.tsx +79 -0
- package/bizar-dash/src/web/components/BgStatusBadge.tsx +32 -0
- package/bizar-dash/src/web/components/Button.tsx +56 -0
- package/bizar-dash/src/web/components/CanvasContextMenu.tsx +68 -0
- package/bizar-dash/src/web/components/Card.tsx +40 -0
- package/bizar-dash/src/web/components/CollapsibleSection.tsx +72 -0
- package/bizar-dash/src/web/components/CommandDialog.tsx +66 -0
- package/bizar-dash/src/web/components/EmptyState.tsx +30 -0
- package/bizar-dash/src/web/components/FileBrowser.tsx +633 -0
- package/bizar-dash/src/web/components/HelpDialog.tsx +55 -0
- package/bizar-dash/src/web/components/KillConfirmDialog.tsx +88 -0
- package/bizar-dash/src/web/components/Modal.tsx +215 -0
- package/bizar-dash/src/web/components/Notifications.tsx +241 -0
- package/bizar-dash/src/web/components/SearchModal.tsx +224 -0
- package/bizar-dash/src/web/components/Sidebar.tsx +66 -0
- package/bizar-dash/src/web/components/Spinner.tsx +19 -0
- package/bizar-dash/src/web/components/StatusBadge.tsx +25 -0
- package/bizar-dash/src/web/components/Tag.tsx +28 -0
- package/bizar-dash/src/web/components/Toast.tsx +150 -0
- package/bizar-dash/src/web/components/Topbar.tsx +368 -0
- package/bizar-dash/src/web/components/VisualPlanDialog.tsx +58 -0
- package/bizar-dash/src/web/components/chat/AgentChip.tsx +68 -0
- package/bizar-dash/src/web/components/chat/ChatBubble.tsx +60 -0
- package/bizar-dash/src/web/components/chat/ChatThread.tsx +88 -0
- package/bizar-dash/src/web/components/chat/ChatTopBar.tsx +50 -0
- package/bizar-dash/src/web/components/chat/Composer.tsx +164 -0
- package/bizar-dash/src/web/components/chat/ConfirmModal.tsx +54 -0
- package/bizar-dash/src/web/components/chat/EmptyState.tsx +21 -0
- package/bizar-dash/src/web/components/chat/FirstRunGreeting.tsx +18 -0
- package/bizar-dash/src/web/components/chat/FloatingComposer.tsx +32 -0
- package/bizar-dash/src/web/components/chat/InfoPanel.tsx +119 -0
- package/bizar-dash/src/web/components/chat/LoadingSkeleton.tsx +19 -0
- package/bizar-dash/src/web/components/chat/MessageBubble.tsx +60 -0
- package/bizar-dash/src/web/components/chat/SessionList.tsx +153 -0
- package/bizar-dash/src/web/components/chat/StreamingIndicator.tsx +9 -0
- package/bizar-dash/src/web/components/chat/SuggestionCards.tsx +55 -0
- package/bizar-dash/src/web/components/chat/WelcomeScreen.tsx +36 -0
- package/bizar-dash/src/web/components/chat/index.ts +20 -0
- package/bizar-dash/src/web/components/chat/useAutoGrowTextarea.ts +18 -0
- package/bizar-dash/src/web/components/chat/useChat.ts +219 -0
- package/bizar-dash/src/web/components/chat/useSlashCommands.ts +47 -0
- package/bizar-dash/src/web/index.html +37 -0
- package/bizar-dash/src/web/lib/api.ts +193 -0
- package/bizar-dash/src/web/lib/markdown.tsx +59 -0
- package/bizar-dash/src/web/lib/types.ts +668 -0
- package/bizar-dash/src/web/lib/utils.ts +114 -0
- package/bizar-dash/src/web/lib/ws.ts +176 -0
- package/bizar-dash/src/web/main.tsx +34 -0
- package/bizar-dash/src/web/mobile/MobileApp.tsx +278 -0
- package/bizar-dash/src/web/mobile/MobileBottomNav.tsx +38 -0
- package/bizar-dash/src/web/mobile/MobileTopbar.tsx +115 -0
- package/bizar-dash/src/web/mobile/components/MobileBottomSheet.tsx +182 -0
- package/bizar-dash/src/web/mobile/components/MobileListItem.tsx +64 -0
- package/bizar-dash/src/web/mobile/components/MobileModal.tsx +123 -0
- package/bizar-dash/src/web/mobile/views/MobileActivity.tsx +273 -0
- package/bizar-dash/src/web/mobile/views/MobileAgents.tsx +374 -0
- package/bizar-dash/src/web/mobile/views/MobileArtifactCanvas.tsx +439 -0
- package/bizar-dash/src/web/mobile/views/MobileArtifacts.tsx +143 -0
- package/bizar-dash/src/web/mobile/views/MobileChat.tsx +180 -0
- package/bizar-dash/src/web/mobile/views/MobileConfig.tsx +175 -0
- package/bizar-dash/src/web/mobile/views/MobileHistory.tsx +191 -0
- package/bizar-dash/src/web/mobile/views/MobileMods.tsx +149 -0
- package/bizar-dash/src/web/mobile/views/MobileMore.tsx +121 -0
- package/bizar-dash/src/web/mobile/views/MobileNotifications.tsx +137 -0
- package/bizar-dash/src/web/mobile/views/MobilePlans.tsx +26 -0
- package/bizar-dash/src/web/mobile/views/MobileSchedules.tsx +685 -0
- package/bizar-dash/src/web/mobile/views/MobileSearchModal.tsx +172 -0
- package/bizar-dash/src/web/mobile/views/MobileSettings.tsx +388 -0
- package/bizar-dash/src/web/mobile/views/MobileSkills.tsx +153 -0
- package/bizar-dash/src/web/mobile/views/MobileTasks.tsx +564 -0
- package/bizar-dash/src/web/mobile.html +20 -0
- package/bizar-dash/src/web/mobile.tsx +13 -0
- package/bizar-dash/src/web/styles/chat.css +198 -0
- package/bizar-dash/src/web/styles/glyphs.css +960 -0
- package/bizar-dash/src/web/styles/main.css +8855 -0
- package/bizar-dash/src/web/styles/mobile-chat.css +5 -0
- package/bizar-dash/src/web/styles/mobile.css +1960 -0
- package/bizar-dash/src/web/views/Activity.tsx +1203 -0
- package/bizar-dash/src/web/views/Agents.tsx +701 -0
- package/bizar-dash/src/web/views/Artifacts.tsx +1480 -0
- package/bizar-dash/src/web/views/BackgroundAgents.tsx +450 -0
- package/bizar-dash/src/web/views/Chat.tsx +190 -0
- package/bizar-dash/src/web/views/Config.tsx +2063 -0
- package/bizar-dash/src/web/views/History.tsx +335 -0
- package/bizar-dash/src/web/views/ModView.tsx +207 -0
- package/bizar-dash/src/web/views/Mods.tsx +693 -0
- package/bizar-dash/src/web/views/Overview.tsx +812 -0
- package/bizar-dash/src/web/views/Providers.tsx +302 -0
- package/bizar-dash/src/web/views/Schedules.tsx +802 -0
- package/bizar-dash/src/web/views/Settings.tsx +1787 -0
- package/bizar-dash/src/web/views/Skills.tsx +431 -0
- package/bizar-dash/src/web/views/Tasks.tsx +1523 -0
- package/bizar-dash/src/web/views/glyphs/GlyphRenderer.tsx +613 -0
- package/bizar-dash/src/web/views/glyphs/components.tsx +1098 -0
- package/bizar-dash/templates/mod/FORMAT.md +76 -0
- package/bizar-dash/templates/mod/hello-mod/README.md +19 -0
- package/bizar-dash/templates/mod/hello-mod/agents/greeter.md +8 -0
- package/bizar-dash/templates/mod/hello-mod/commands/hello.md +6 -0
- package/bizar-dash/templates/mod/hello-mod/mod.json +20 -0
- package/bizar-dash/templates/mod/hello-mod/routes/ping.mjs +9 -0
- package/bizar-dash/templates/mod/hello-mod/views/HelloView.tsx +10 -0
- package/bizar-dash/tests/dashboard-ports.test.mjs +138 -0
- package/bizar-dash/tests/graphify-mod-spawn.node.test.mjs +90 -0
- package/bizar-dash/tests/memory-cli.test.mjs +542 -0
- package/bizar-dash/tests/memory-config.test.mjs +422 -0
- package/bizar-dash/tests/memory-git.test.mjs +246 -0
- package/bizar-dash/tests/memory-lightrag.test.mjs +153 -0
- package/bizar-dash/tests/memory-protocol-drift.test.mjs +45 -0
- package/bizar-dash/tests/memory-schema.test.mjs +198 -0
- package/bizar-dash/tests/memory-secrets.test.mjs +121 -0
- package/bizar-dash/tests/memory-store.test.mjs +390 -0
- package/bizar-dash/tests/memory-sync.test.mjs +141 -0
- package/bizar-dash/tests/mod-instructions.node.test.mjs +188 -0
- package/bizar-dash/tests/mod-security.test.mjs +273 -0
- package/bizar-dash/tests/mod-upgrade.node.test.mjs +357 -0
- package/bizar-dash/tests/no-agent-browser.node.test.mjs +98 -0
- package/bizar-dash/tests/obsidian-back-compat.test.mjs +199 -0
- package/bizar-dash/tests/opencode-runner.test.mjs +172 -0
- package/bizar-dash/tests/path-safe.test.mjs +108 -0
- package/bizar-dash/tests/providers-store-backup-keys.node.test.mjs +333 -0
- package/bizar-dash/tests/smoke-v2.mjs +212 -0
- package/bizar-dash/tests/strip-thinking.test.mjs +175 -0
- package/bizar-dash/tests/submit-feedback.test.mjs +353 -0
- package/bizar-dash/tests/tmux-wrap.test.mjs +145 -0
- package/bizar-dash/tests/yaml.test.mjs +128 -0
- package/bizar-dash/tsconfig.json +23 -0
- package/bizar-dash/vite.config.ts +27 -0
- package/cli/atomic.mjs +73 -0
- package/cli/banner.mjs +1 -1
- package/cli/bin.mjs +44 -47
- package/cli/bootstrap.mjs +1 -1
- package/cli/copy.mjs +25 -16
- package/cli/dev-link.mjs +17 -1
- package/cli/doctor.mjs +4 -4
- package/cli/doctor.test.mjs +2 -2
- package/cli/init.mjs +135 -1
- package/cli/install.mjs +31 -39
- package/cli/memory-constants.mjs +59 -0
- package/cli/memory.mjs +1436 -0
- package/cli/service.mjs +5 -6
- package/cli/utils.mjs +6 -3
- package/config/AGENTS.md +7 -7
- package/config/agents/_shared/AGENT_BASELINE.md +59 -61
- package/config/opencode.json +13 -38
- package/config/skills/memory-protocol/SKILL.md +105 -0
- package/config/skills/obsidian/SKILL.md +270 -65
- package/install.sh +59 -19
- package/package.json +49 -14
- package/packages/sdk/LICENSE +21 -0
- package/packages/sdk/README.md +80 -0
- package/packages/sdk/src/client.ts +183 -0
- package/packages/sdk/src/errors.ts +120 -0
- package/packages/sdk/src/events.ts +153 -0
- package/packages/sdk/src/index.ts +63 -0
- package/packages/sdk/src/types.ts +176 -0
- package/packages/sdk/src/version.ts +4 -0
- package/packages/sdk/tests/client.test.ts +217 -0
- package/packages/sdk/tests/errors.test.ts +108 -0
- package/packages/sdk/tests/events.test.ts +139 -0
- package/packages/sdk/tests/fixtures/fetch-mock.ts +152 -0
- package/packages/sdk/tests/fixtures/sse-mock.ts +30 -0
- package/packages/sdk/tsconfig.json +25 -0
- package/packages/sdk/vitest.config.ts +9 -0
- package/plugins/bizar/LICENSE +21 -0
- package/plugins/bizar/README.md +448 -0
- package/plugins/bizar/dist/index.js +29901 -0
- package/plugins/bizar/index.ts +1491 -0
- package/plugins/bizar/scripts/check-forbidden-imports.sh +33 -0
- package/plugins/bizar/src/background-state.ts +551 -0
- package/plugins/bizar/src/background.ts +1250 -0
- package/plugins/bizar/src/commands-impl.ts +464 -0
- package/plugins/bizar/src/commands.ts +1168 -0
- package/plugins/bizar/src/dashboard-client.ts +233 -0
- package/plugins/bizar/src/event-stream.ts +606 -0
- package/plugins/bizar/src/fingerprint.ts +120 -0
- package/plugins/bizar/src/handoff.ts +79 -0
- package/plugins/bizar/src/http-client.ts +467 -0
- package/plugins/bizar/src/key-rotation.ts +218 -0
- package/plugins/bizar/src/logger.ts +144 -0
- package/plugins/bizar/src/loop.ts +176 -0
- package/plugins/bizar/src/opencode-runner.ts +390 -0
- package/plugins/bizar/src/options.ts +421 -0
- package/plugins/bizar/src/plan-fs.ts +323 -0
- package/plugins/bizar/src/reasoning-clean.ts +454 -0
- package/plugins/bizar/src/report.ts +178 -0
- package/plugins/bizar/src/research-prompt.ts +35 -0
- package/plugins/bizar/src/serve-info.ts +228 -0
- package/plugins/bizar/src/serve.ts +496 -0
- package/plugins/bizar/src/settings.ts +349 -0
- package/plugins/bizar/src/state.ts +298 -0
- package/plugins/bizar/src/tools/bg-collect.ts +104 -0
- package/plugins/bizar/src/tools/bg-get-comments.ts +239 -0
- package/plugins/bizar/src/tools/bg-kill.ts +87 -0
- package/plugins/bizar/src/tools/bg-spawn.ts +401 -0
- package/plugins/bizar/src/tools/bg-status.ts +99 -0
- package/plugins/bizar/src/tools/open-kb.ts +191 -0
- package/plugins/bizar/src/tools/plan-action.ts +767 -0
- package/plugins/bizar/src/tools/read-glyph-feedback.ts +170 -0
- package/plugins/bizar/src/tools/wait-for-feedback.ts +402 -0
- package/plugins/bizar/tests/attach-handler-bug.test.ts +169 -0
- package/plugins/bizar/tests/background-state.test.ts +277 -0
- package/plugins/bizar/tests/background.test.ts +402 -0
- package/plugins/bizar/tests/block.test.ts +195 -0
- package/plugins/bizar/tests/canonical-key-order.test.ts +75 -0
- package/plugins/bizar/tests/commands-impl.test.ts +442 -0
- package/plugins/bizar/tests/commands.test.ts +584 -0
- package/plugins/bizar/tests/config.test.ts +122 -0
- package/plugins/bizar/tests/dashboard-client.test.ts +159 -0
- package/plugins/bizar/tests/dispose.test.ts +336 -0
- package/plugins/bizar/tests/event-stream.test.ts +409 -0
- package/plugins/bizar/tests/event.test.ts +262 -0
- package/plugins/bizar/tests/fingerprint.test.ts +162 -0
- package/plugins/bizar/tests/http-client.test.ts +404 -0
- package/plugins/bizar/tests/init-helpers.test.ts +203 -0
- package/plugins/bizar/tests/integration/slash-command.test.ts +348 -0
- package/plugins/bizar/tests/integration/tool-routing.test.ts +314 -0
- package/plugins/bizar/tests/key-rotation.test.ts +396 -0
- package/plugins/bizar/tests/loop.test.ts +397 -0
- package/plugins/bizar/tests/options.test.ts +276 -0
- package/plugins/bizar/tests/reasoning-clean.test.ts +422 -0
- package/plugins/bizar/tests/serve.test.ts +339 -0
- package/plugins/bizar/tests/settings.test.ts +351 -0
- package/plugins/bizar/tests/stall-think.test.ts +750 -0
- package/plugins/bizar/tests/state.test.ts +276 -0
- package/plugins/bizar/tests/tools/bg-collect.test.ts +337 -0
- package/plugins/bizar/tests/tools/bg-get-comments.test.ts +485 -0
- package/plugins/bizar/tests/tools/bg-kill.test.ts +235 -0
- package/plugins/bizar/tests/tools/bg-spawn-delegation.test.ts +147 -0
- package/plugins/bizar/tests/tools/bg-spawn.test.ts +311 -0
- package/plugins/bizar/tests/tools/bg-status.test.ts +217 -0
- package/plugins/bizar/tests/tools/opencode-runner.test.ts +115 -0
- package/plugins/bizar/tests/tools/plan-action.test.ts +599 -0
- package/plugins/bizar/tests/tools/read-glyph-feedback.test.ts +253 -0
- package/plugins/bizar/tests/tools/wait-for-feedback.test.ts +390 -0
- package/plugins/bizar/tests/update-deadlock.test.ts +145 -0
- package/plugins/bizar/tsconfig.json +29 -0
|
@@ -0,0 +1,422 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* tests/memory-config.test.mjs
|
|
3
|
+
*
|
|
4
|
+
* Tests for writeLightRAGConfig, patch-mode POST /memory/config,
|
|
5
|
+
* redact behaviour, and LightRAG lifecycle endpoints.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import { test, describe, beforeEach, afterEach } from 'node:test';
|
|
9
|
+
import assert from 'node:assert/strict';
|
|
10
|
+
import { tmpdir } from 'node:os';
|
|
11
|
+
import { join } from 'node:path';
|
|
12
|
+
import { mkdirSync, rmSync, writeFileSync, readFileSync, existsSync } from 'node:fs';
|
|
13
|
+
import http from 'node:http';
|
|
14
|
+
|
|
15
|
+
const httpGet = (port, path) =>
|
|
16
|
+
new Promise((resolve) => {
|
|
17
|
+
const req = http.request({ hostname: 'localhost', port, path, method: 'GET' }, (res) => {
|
|
18
|
+
let body = '';
|
|
19
|
+
res.on('data', (c) => (body += c));
|
|
20
|
+
res.on('end', () => resolve({ status: res.statusCode, body: JSON.parse(body || '{}') }));
|
|
21
|
+
});
|
|
22
|
+
req.end();
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
const httpPost = (port, path, body) =>
|
|
26
|
+
new Promise((resolve) => {
|
|
27
|
+
const data = JSON.stringify(body);
|
|
28
|
+
const req = http.request(
|
|
29
|
+
{ hostname: 'localhost', port, path, method: 'POST', headers: { 'Content-Type': 'application/json', 'Content-Length': Buffer.byteLength(data) } },
|
|
30
|
+
(res) => {
|
|
31
|
+
let respBody = '';
|
|
32
|
+
res.on('data', (c) => (respBody += c));
|
|
33
|
+
res.on('end', () => resolve({ status: res.statusCode, body: JSON.parse(respBody || '{}') }));
|
|
34
|
+
},
|
|
35
|
+
);
|
|
36
|
+
req.write(data);
|
|
37
|
+
req.end();
|
|
38
|
+
});
|
|
39
|
+
|
|
40
|
+
const {
|
|
41
|
+
writeLightRAGConfig,
|
|
42
|
+
resolveLightRAGConfig,
|
|
43
|
+
} = await import('../src/server/memory-lightrag.mjs');
|
|
44
|
+
|
|
45
|
+
// ── Helpers ────────────────────────────────────────────────────────────────────
|
|
46
|
+
|
|
47
|
+
function makeTmp() {
|
|
48
|
+
const root = join(tmpdir(), `bizar-lightrag-cfg-test-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
49
|
+
mkdirSync(root, { recursive: true });
|
|
50
|
+
mkdirSync(join(root, '.bizar'), { recursive: true });
|
|
51
|
+
return root;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
async function buildApp(projectRoot) {
|
|
55
|
+
const { createMemoryRouter } = await import('../src/server/routes/memory.mjs');
|
|
56
|
+
const express = (await import('express')).default;
|
|
57
|
+
const app = express();
|
|
58
|
+
app.use(express.json());
|
|
59
|
+
app.use('/api', createMemoryRouter({ projectRoot }));
|
|
60
|
+
return app;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
async function withApp(projectRoot, fn) {
|
|
64
|
+
const app = await buildApp(projectRoot);
|
|
65
|
+
const server = app.listen(0);
|
|
66
|
+
const port = server.address().port;
|
|
67
|
+
try {
|
|
68
|
+
return await fn(port);
|
|
69
|
+
} finally {
|
|
70
|
+
server.close();
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// ── writeLightRAGConfig — unit tests ─────────────────────────────────────────
|
|
75
|
+
|
|
76
|
+
describe('writeLightRAGConfig', () => {
|
|
77
|
+
let root;
|
|
78
|
+
|
|
79
|
+
beforeEach(() => {
|
|
80
|
+
root = makeTmp();
|
|
81
|
+
});
|
|
82
|
+
|
|
83
|
+
afterEach(() => {
|
|
84
|
+
try { rmSync(root, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
test('deep-merges into existing lightrag block', () => {
|
|
88
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
89
|
+
version: 1,
|
|
90
|
+
lightrag: { enabled: false, port: 8000, llmModel: 'gpt-4o' },
|
|
91
|
+
}));
|
|
92
|
+
|
|
93
|
+
const result = writeLightRAGConfig(root, { enabled: true, port: 9000 });
|
|
94
|
+
assert.equal(result.ok, true);
|
|
95
|
+
|
|
96
|
+
const mem = JSON.parse(readFileSync(join(root, '.bizar', 'memory.json'), 'utf8'));
|
|
97
|
+
assert.equal(mem.lightrag.enabled, true);
|
|
98
|
+
assert.equal(mem.lightrag.port, 9000);
|
|
99
|
+
assert.equal(mem.lightrag.llmModel, 'gpt-4o'); // preserved
|
|
100
|
+
});
|
|
101
|
+
|
|
102
|
+
test('validates llmBinding is in known set', () => {
|
|
103
|
+
const result = writeLightRAGConfig(root, { llmBinding: 'not-a-binding' });
|
|
104
|
+
assert.equal(result.ok, false);
|
|
105
|
+
assert.ok(result.error.includes('llmBinding'));
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
test('validates embeddingBinding is in known set', () => {
|
|
109
|
+
const result = writeLightRAGConfig(root, { embeddingBinding: 'bad-embedding' });
|
|
110
|
+
assert.equal(result.ok, false);
|
|
111
|
+
assert.ok(result.error.includes('embeddingBinding'));
|
|
112
|
+
});
|
|
113
|
+
|
|
114
|
+
test('rejects port out of range (0)', () => {
|
|
115
|
+
const result = writeLightRAGConfig(root, { port: 0 });
|
|
116
|
+
assert.equal(result.ok, false);
|
|
117
|
+
assert.ok(result.error.includes('port'));
|
|
118
|
+
});
|
|
119
|
+
|
|
120
|
+
test('rejects port out of range (66666)', () => {
|
|
121
|
+
const result = writeLightRAGConfig(root, { port: 66666 });
|
|
122
|
+
assert.equal(result.ok, false);
|
|
123
|
+
assert.ok(result.error.includes('port'));
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
test('accepts port 1 and 65535', () => {
|
|
127
|
+
let r = writeLightRAGConfig(root, { port: 1 });
|
|
128
|
+
assert.equal(r.ok, true);
|
|
129
|
+
r = writeLightRAGConfig(root, { port: 65535 });
|
|
130
|
+
assert.equal(r.ok, true);
|
|
131
|
+
});
|
|
132
|
+
|
|
133
|
+
test('canonicalises <empty> to empty string for apiKey', () => {
|
|
134
|
+
const r = writeLightRAGConfig(root, { apiKey: '<empty>' });
|
|
135
|
+
assert.equal(r.ok, true);
|
|
136
|
+
const mem = JSON.parse(readFileSync(join(root, '.bizar', 'memory.json'), 'utf8'));
|
|
137
|
+
assert.equal(mem.lightrag.apiKey, '');
|
|
138
|
+
});
|
|
139
|
+
|
|
140
|
+
test('atomic — old or new file present after concurrent writes', () => {
|
|
141
|
+
writeLightRAGConfig(root, { port: 10000 });
|
|
142
|
+
for (let i = 0; i < 20; i++) {
|
|
143
|
+
writeLightRAGConfig(root, { port: i + 1 });
|
|
144
|
+
}
|
|
145
|
+
const content = readFileSync(join(root, '.bizar', 'memory.json'), 'utf8');
|
|
146
|
+
const parsed = JSON.parse(content);
|
|
147
|
+
assert.equal(parsed.lightrag.port, 20);
|
|
148
|
+
});
|
|
149
|
+
|
|
150
|
+
test('creates .bizar/memory.json if missing', () => {
|
|
151
|
+
const fresh = join(tmpdir(), `bizar-fresh-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
152
|
+
mkdirSync(fresh, { recursive: true });
|
|
153
|
+
try {
|
|
154
|
+
const r = writeLightRAGConfig(fresh, { port: 5000 });
|
|
155
|
+
assert.equal(r.ok, true);
|
|
156
|
+
assert.ok(existsSync(join(fresh, '.bizar', 'memory.json')));
|
|
157
|
+
const mem = JSON.parse(readFileSync(join(fresh, '.bizar', 'memory.json'), 'utf8'));
|
|
158
|
+
assert.equal(mem.lightrag.port, 5000);
|
|
159
|
+
} finally {
|
|
160
|
+
rmSync(fresh, { recursive: true, force: true });
|
|
161
|
+
}
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
test('preserves non-lightrag fields when merging', () => {
|
|
165
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
166
|
+
version: 1,
|
|
167
|
+
projectId: 'test-proj',
|
|
168
|
+
memoryRepo: { mode: 'local-only' },
|
|
169
|
+
lightrag: { port: 7000 },
|
|
170
|
+
}));
|
|
171
|
+
const r = writeLightRAGConfig(root, { llmModel: 'claude-3' });
|
|
172
|
+
assert.equal(r.ok, true);
|
|
173
|
+
const mem = JSON.parse(readFileSync(join(root, '.bizar', 'memory.json'), 'utf8'));
|
|
174
|
+
assert.equal(mem.projectId, 'test-proj');
|
|
175
|
+
assert.equal(mem.lightrag.llmModel, 'claude-3');
|
|
176
|
+
assert.equal(mem.lightrag.port, 7000);
|
|
177
|
+
});
|
|
178
|
+
});
|
|
179
|
+
|
|
180
|
+
// ── resolveLightRAGConfig — apiKey defaults ───────────────────────────────────
|
|
181
|
+
|
|
182
|
+
describe('resolveLightRAGConfig apiKey defaults', () => {
|
|
183
|
+
let root;
|
|
184
|
+
|
|
185
|
+
beforeEach(() => {
|
|
186
|
+
root = makeTmp();
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
afterEach(() => {
|
|
190
|
+
try { rmSync(root, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
191
|
+
});
|
|
192
|
+
|
|
193
|
+
test('defaults apiKey to "env" when not set', () => {
|
|
194
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
195
|
+
lightrag: { port: 9621 },
|
|
196
|
+
}));
|
|
197
|
+
const cfg = resolveLightRAGConfig(root);
|
|
198
|
+
assert.equal(cfg.apiKey, 'env');
|
|
199
|
+
assert.equal(cfg.apiKeySource, 'env');
|
|
200
|
+
});
|
|
201
|
+
|
|
202
|
+
test('reads existing apiKeySource', () => {
|
|
203
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
204
|
+
lightrag: { port: 9621, apiKey: 'sk-123', apiKeySource: 'file' },
|
|
205
|
+
}));
|
|
206
|
+
const cfg = resolveLightRAGConfig(root);
|
|
207
|
+
assert.equal(cfg.apiKey, 'sk-123');
|
|
208
|
+
assert.equal(cfg.apiKeySource, 'file');
|
|
209
|
+
});
|
|
210
|
+
});
|
|
211
|
+
|
|
212
|
+
// ── HTTP route integration tests ─────────────────────────────────────────────
|
|
213
|
+
|
|
214
|
+
describe('POST /api/memory/config patch mode', () => {
|
|
215
|
+
let root;
|
|
216
|
+
|
|
217
|
+
beforeEach(() => {
|
|
218
|
+
root = makeTmp();
|
|
219
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
220
|
+
version: 1,
|
|
221
|
+
lightrag: { port: 9621, llmModel: 'original-model' },
|
|
222
|
+
}));
|
|
223
|
+
});
|
|
224
|
+
|
|
225
|
+
afterEach(() => {
|
|
226
|
+
try { rmSync(root, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
227
|
+
});
|
|
228
|
+
|
|
229
|
+
test('returns merged config with redacted apiKey', async () => {
|
|
230
|
+
writeLightRAGConfig(root, { apiKey: 'sk-secret123', apiKeySource: 'file' });
|
|
231
|
+
|
|
232
|
+
await withApp(root, async (port) => {
|
|
233
|
+
const res = await httpPost(port, '/api/memory/config', {
|
|
234
|
+
patch: true,
|
|
235
|
+
lightrag: { port: 5000 },
|
|
236
|
+
});
|
|
237
|
+
assert.equal(res.status, 200);
|
|
238
|
+
assert.equal(res.body.ok, true);
|
|
239
|
+
assert.equal(res.body.config.lightrag.port, 5000);
|
|
240
|
+
assert.equal(res.body.config.lightrag.llmModel, 'original-model');
|
|
241
|
+
// apiKey must be redacted
|
|
242
|
+
assert.equal(res.body.config.lightrag.apiKey, '***');
|
|
243
|
+
});
|
|
244
|
+
});
|
|
245
|
+
|
|
246
|
+
test('rejects patch without lightrag field', async () => {
|
|
247
|
+
await withApp(root, async (port) => {
|
|
248
|
+
const res = await httpPost(port, '/api/memory/config', { patch: true, foo: 'bar' });
|
|
249
|
+
assert.equal(res.status, 400);
|
|
250
|
+
});
|
|
251
|
+
});
|
|
252
|
+
|
|
253
|
+
test('rejects unknown top-level fields in patch', async () => {
|
|
254
|
+
await withApp(root, async (port) => {
|
|
255
|
+
const res = await httpPost(port, '/api/memory/config', { patch: true, lightrag: { port: 1 }, mode: 'managed' });
|
|
256
|
+
assert.equal(res.status, 400);
|
|
257
|
+
});
|
|
258
|
+
});
|
|
259
|
+
|
|
260
|
+
test('validates port range through patch', async () => {
|
|
261
|
+
await withApp(root, async (port) => {
|
|
262
|
+
const res = await httpPost(port, '/api/memory/config', { patch: true, lightrag: { port: 99999 } });
|
|
263
|
+
assert.equal(res.status, 400);
|
|
264
|
+
assert.ok(res.body.message.includes('port'));
|
|
265
|
+
});
|
|
266
|
+
});
|
|
267
|
+
|
|
268
|
+
test('validates llmBinding through patch', async () => {
|
|
269
|
+
await withApp(root, async (port) => {
|
|
270
|
+
const res = await httpPost(port, '/api/memory/config', { patch: true, lightrag: { llmBinding: 'invalid' } });
|
|
271
|
+
assert.equal(res.status, 400);
|
|
272
|
+
assert.ok(res.body.message.includes('llmBinding'));
|
|
273
|
+
});
|
|
274
|
+
});
|
|
275
|
+
});
|
|
276
|
+
|
|
277
|
+
describe('GET /api/memory/config — redaction', () => {
|
|
278
|
+
let root;
|
|
279
|
+
|
|
280
|
+
beforeEach(() => {
|
|
281
|
+
root = makeTmp();
|
|
282
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
283
|
+
version: 1,
|
|
284
|
+
lightrag: { port: 9621, apiKey: 'sk-abc123', apiKeySource: 'file' },
|
|
285
|
+
}));
|
|
286
|
+
});
|
|
287
|
+
|
|
288
|
+
afterEach(() => {
|
|
289
|
+
try { rmSync(root, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
290
|
+
});
|
|
291
|
+
|
|
292
|
+
test('GET /memory/config redacts apiKey to ***', async () => {
|
|
293
|
+
await withApp(root, async (port) => {
|
|
294
|
+
const res = await httpGet(port, '/api/memory/config');
|
|
295
|
+
assert.equal(res.status, 200);
|
|
296
|
+
assert.equal(res.body.config.lightrag.apiKey, '***');
|
|
297
|
+
assert.equal(res.body.config.lightrag.apiKeySource, 'file');
|
|
298
|
+
});
|
|
299
|
+
});
|
|
300
|
+
});
|
|
301
|
+
|
|
302
|
+
describe('GET /api/memory/lightrag/status', () => {
|
|
303
|
+
let root;
|
|
304
|
+
|
|
305
|
+
beforeEach(() => {
|
|
306
|
+
root = makeTmp();
|
|
307
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
308
|
+
version: 1,
|
|
309
|
+
lightrag: { port: 9621, llmBinding: 'ollama', embeddingBinding: 'ollama', llmModel: 'test-model', embeddingModel: 'test-embed' },
|
|
310
|
+
}));
|
|
311
|
+
mkdirSync(join(root, '.bizar', 'lightrag'), { recursive: true });
|
|
312
|
+
});
|
|
313
|
+
|
|
314
|
+
afterEach(() => {
|
|
315
|
+
try { rmSync(root, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
316
|
+
});
|
|
317
|
+
|
|
318
|
+
test('returns running:false when server not running', async () => {
|
|
319
|
+
await withApp(root, async (port) => {
|
|
320
|
+
const res = await httpGet(port, '/api/memory/lightrag/status');
|
|
321
|
+
assert.equal(res.status, 200);
|
|
322
|
+
assert.equal(res.body.running, false);
|
|
323
|
+
assert.equal(res.body.pid, null);
|
|
324
|
+
assert.equal(res.body.port, 9621);
|
|
325
|
+
assert.equal(res.body.llmBinding, 'ollama');
|
|
326
|
+
assert.equal(res.body.embeddingBinding, 'ollama');
|
|
327
|
+
});
|
|
328
|
+
});
|
|
329
|
+
});
|
|
330
|
+
|
|
331
|
+
describe('POST /api/memory/lightrag/start', () => {
|
|
332
|
+
let root;
|
|
333
|
+
|
|
334
|
+
beforeEach(() => {
|
|
335
|
+
root = makeTmp();
|
|
336
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
337
|
+
version: 1,
|
|
338
|
+
lightrag: { port: 9621 },
|
|
339
|
+
}));
|
|
340
|
+
mkdirSync(join(root, '.bizar', 'lightrag'), { recursive: true });
|
|
341
|
+
});
|
|
342
|
+
|
|
343
|
+
afterEach(() => {
|
|
344
|
+
try { rmSync(root, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
345
|
+
});
|
|
346
|
+
|
|
347
|
+
test('returns ok:false with error when lightrag-server not installed (or ok:true if it is)', async () => {
|
|
348
|
+
await withApp(root, async (port) => {
|
|
349
|
+
const res = await httpPost(port, '/api/memory/lightrag/start', {});
|
|
350
|
+
assert.equal(res.status, 200);
|
|
351
|
+
assert.equal(typeof res.body.ok, 'boolean');
|
|
352
|
+
if (!res.body.ok) {
|
|
353
|
+
assert.ok(res.body.error != null);
|
|
354
|
+
}
|
|
355
|
+
});
|
|
356
|
+
});
|
|
357
|
+
});
|
|
358
|
+
|
|
359
|
+
describe('POST /api/memory/lightrag/stop', () => {
|
|
360
|
+
let root;
|
|
361
|
+
|
|
362
|
+
beforeEach(() => {
|
|
363
|
+
root = makeTmp();
|
|
364
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
365
|
+
version: 1,
|
|
366
|
+
lightrag: { port: 9621 },
|
|
367
|
+
}));
|
|
368
|
+
mkdirSync(join(root, '.bizar', 'lightrag'), { recursive: true });
|
|
369
|
+
});
|
|
370
|
+
|
|
371
|
+
afterEach(() => {
|
|
372
|
+
try { rmSync(root, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
373
|
+
});
|
|
374
|
+
|
|
375
|
+
test('returns ok:true when nothing is running', async () => {
|
|
376
|
+
await withApp(root, async (port) => {
|
|
377
|
+
const res = await httpPost(port, '/api/memory/lightrag/stop', {});
|
|
378
|
+
assert.equal(res.status, 200);
|
|
379
|
+
assert.equal(res.body.ok, true);
|
|
380
|
+
});
|
|
381
|
+
});
|
|
382
|
+
});
|
|
383
|
+
|
|
384
|
+
describe('GET /api/memory/lightrag/log', () => {
|
|
385
|
+
let root;
|
|
386
|
+
|
|
387
|
+
beforeEach(() => {
|
|
388
|
+
root = makeTmp();
|
|
389
|
+
writeFileSync(join(root, '.bizar', 'memory.json'), JSON.stringify({
|
|
390
|
+
version: 1,
|
|
391
|
+
lightrag: { port: 9621 },
|
|
392
|
+
}));
|
|
393
|
+
mkdirSync(join(root, '.bizar', 'lightrag'), { recursive: true });
|
|
394
|
+
// Write a log file with 60 lines
|
|
395
|
+
const lines = Array.from({ length: 60 }, (_, i) => `log line ${i + 1}`).join('\n');
|
|
396
|
+
writeFileSync(join(root, '.bizar', 'lightrag', 'lightrag.log'), lines);
|
|
397
|
+
});
|
|
398
|
+
|
|
399
|
+
afterEach(() => {
|
|
400
|
+
try { rmSync(root, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
401
|
+
});
|
|
402
|
+
|
|
403
|
+
test('returns last 200 lines', async () => {
|
|
404
|
+
await withApp(root, async (port) => {
|
|
405
|
+
const res = await httpGet(port, '/api/memory/lightrag/log');
|
|
406
|
+
assert.equal(res.status, 200);
|
|
407
|
+
assert.ok(Array.isArray(res.body.lines));
|
|
408
|
+
assert.ok(res.body.lines.length <= 200);
|
|
409
|
+
});
|
|
410
|
+
});
|
|
411
|
+
|
|
412
|
+
test('returns empty lines when no log file', async () => {
|
|
413
|
+
rmSync(join(root, '.bizar', 'lightrag', 'lightrag.log'), { force: true });
|
|
414
|
+
|
|
415
|
+
await withApp(root, async (port) => {
|
|
416
|
+
const res = await httpGet(port, '/api/memory/lightrag/log');
|
|
417
|
+
assert.equal(res.status, 200);
|
|
418
|
+
assert.ok(Array.isArray(res.body.lines));
|
|
419
|
+
assert.equal(res.body.lines.length, 0);
|
|
420
|
+
});
|
|
421
|
+
});
|
|
422
|
+
});
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* tests/memory-git.test.mjs
|
|
3
|
+
*
|
|
4
|
+
* Tests for the memory-git module.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import { describe, it, beforeEach, afterEach } from 'node:test';
|
|
8
|
+
import assert from 'node:assert';
|
|
9
|
+
import { tmpdir } from 'node:os';
|
|
10
|
+
import { join } from 'node:path';
|
|
11
|
+
import { mkdirSync, rmSync, writeFileSync, existsSync } from 'node:fs';
|
|
12
|
+
import { execSync, execFileSync } from 'node:child_process';
|
|
13
|
+
|
|
14
|
+
const TEST_GIT = await import('../src/server/memory-git.mjs').then((m) => m);
|
|
15
|
+
const GIT_INSTALLED = TEST_GIT.isGitInstalled();
|
|
16
|
+
|
|
17
|
+
describe('memory-git', () => {
|
|
18
|
+
let bareRemote;
|
|
19
|
+
let workingDir;
|
|
20
|
+
|
|
21
|
+
beforeEach(() => {
|
|
22
|
+
// Guard: if git was removed since process start, bail gracefully
|
|
23
|
+
if (!TEST_GIT.isGitInstalled()) {
|
|
24
|
+
bareRemote = null;
|
|
25
|
+
workingDir = null;
|
|
26
|
+
return;
|
|
27
|
+
}
|
|
28
|
+
// Create a bare remote repo
|
|
29
|
+
bareRemote = join(tmpdir(), `bizar-git-test-remote-${Date.now()}-${Math.random().toString(36).slice(2)}.git`);
|
|
30
|
+
mkdirSync(bareRemote, { recursive: true });
|
|
31
|
+
try { execSync('git', ['init', '--bare'], { cwd: bareRemote, encoding: 'utf8' }); } catch { bareRemote = null; return; }
|
|
32
|
+
|
|
33
|
+
// Create a working clone
|
|
34
|
+
workingDir = join(tmpdir(), `bizar-git-test-work-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
35
|
+
mkdirSync(workingDir, { recursive: true });
|
|
36
|
+
try {
|
|
37
|
+
execSync('git', ['clone', bareRemote, workingDir], { encoding: 'utf8' });
|
|
38
|
+
execSync('git', ['config', 'user.email', 'test@bizar.ai'], { cwd: workingDir, encoding: 'utf8' });
|
|
39
|
+
execSync('git', ['config', 'user.name', 'Bizar Test'], { cwd: workingDir, encoding: 'utf8' });
|
|
40
|
+
} catch { workingDir = null; }
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
afterEach(() => {
|
|
44
|
+
try { if (bareRemote) rmSync(bareRemote, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
45
|
+
try { if (workingDir) rmSync(workingDir, { recursive: true, force: true }); } catch { /* ignore */ }
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
it('isGitInstalled returns true when git is available', () => {
|
|
49
|
+
assert.strictEqual(TEST_GIT.isGitInstalled(), GIT_INSTALLED);
|
|
50
|
+
if (!GIT_INSTALLED) assert.fail('git not installed — this test should not run');
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
(GIT_INSTALLED ? it : it.skip)('clone creates a working repo', () => {
|
|
54
|
+
if (!workingDir || !bareRemote) return;
|
|
55
|
+
const cloneTarget = join(tmpdir(), `clone-test-${Date.now()}`);
|
|
56
|
+
mkdirSync(cloneTarget, { recursive: true });
|
|
57
|
+
const result = TEST_GIT.clone(bareRemote, cloneTarget, { branch: 'main', depth: 1 });
|
|
58
|
+
try {
|
|
59
|
+
assert.strictEqual(result.ok, true);
|
|
60
|
+
assert.ok(existsSync(join(cloneTarget, '.git')));
|
|
61
|
+
} finally {
|
|
62
|
+
rmSync(cloneTarget, { recursive: true, force: true });
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
(GIT_INSTALLED ? it : it.skip)('addFile + commit + push work', () => {
|
|
67
|
+
if (!workingDir) return;
|
|
68
|
+
writeFileSync(join(workingDir, 'test.txt'), 'hello world', 'utf8');
|
|
69
|
+
TEST_GIT.addFile(workingDir, 'test.txt');
|
|
70
|
+
const commitResult = TEST_GIT.commit(workingDir, 'Add test.txt');
|
|
71
|
+
assert.strictEqual(commitResult.ok, true);
|
|
72
|
+
const pushResult = TEST_GIT.push(workingDir, { remote: 'origin', branch: 'main' });
|
|
73
|
+
assert.strictEqual(pushResult.ok, true);
|
|
74
|
+
const status = TEST_GIT.status(workingDir);
|
|
75
|
+
assert.strictEqual(status.clean, true);
|
|
76
|
+
});
|
|
77
|
+
|
|
78
|
+
(GIT_INSTALLED ? it : it.skip)('status reports dirty after changes', () => {
|
|
79
|
+
if (!workingDir) return;
|
|
80
|
+
writeFileSync(join(workingDir, 'dirty.txt'), 'dirty content', 'utf8');
|
|
81
|
+
const status = TEST_GIT.status(workingDir);
|
|
82
|
+
assert.strictEqual(status.clean, false);
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
(GIT_INSTALLED ? it : it.skip)('status reports clean after push', () => {
|
|
86
|
+
if (!workingDir) return;
|
|
87
|
+
writeFileSync(join(workingDir, 'clean.txt'), 'clean', 'utf8');
|
|
88
|
+
TEST_GIT.addFile(workingDir, 'clean.txt');
|
|
89
|
+
TEST_GIT.commit(workingDir, 'Add clean');
|
|
90
|
+
TEST_GIT.push(workingDir, { remote: 'origin', branch: 'main' });
|
|
91
|
+
const status = TEST_GIT.status(workingDir);
|
|
92
|
+
assert.strictEqual(status.clean, true);
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
(GIT_INSTALLED ? it : it.skip)('acquireLock + release works', () => {
|
|
96
|
+
if (!workingDir) return;
|
|
97
|
+
const lock = TEST_GIT.acquireLock(workingDir);
|
|
98
|
+
assert.strictEqual(lock.error, undefined);
|
|
99
|
+
assert.ok(typeof lock.release === 'function');
|
|
100
|
+
lock.release();
|
|
101
|
+
assert.ok(!existsSync(join(workingDir, '.sync.lock')));
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
(GIT_INSTALLED ? it : it.skip)('acquireLock returns locked when held', () => {
|
|
105
|
+
if (!workingDir) return;
|
|
106
|
+
const lock1 = TEST_GIT.acquireLock(workingDir);
|
|
107
|
+
assert.strictEqual(lock1.error, undefined);
|
|
108
|
+
const lock2 = TEST_GIT.acquireLock(workingDir);
|
|
109
|
+
assert.strictEqual(lock2.error, 'locked');
|
|
110
|
+
lock1.release();
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
(GIT_INSTALLED ? it : it.skip)('release is idempotent', () => {
|
|
114
|
+
if (!workingDir) return;
|
|
115
|
+
const lock = TEST_GIT.acquireLock(workingDir);
|
|
116
|
+
lock.release();
|
|
117
|
+
lock.release();
|
|
118
|
+
lock.release();
|
|
119
|
+
assert.ok(!existsSync(join(workingDir, '.sync.lock')));
|
|
120
|
+
const lock2 = TEST_GIT.acquireLock(workingDir);
|
|
121
|
+
assert.strictEqual(lock2.error, undefined);
|
|
122
|
+
lock2.release();
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
(GIT_INSTALLED ? it : it.skip)('addAll stages all changes', () => {
|
|
126
|
+
if (!workingDir) return;
|
|
127
|
+
writeFileSync(join(workingDir, 'a.txt'), 'a', 'utf8');
|
|
128
|
+
writeFileSync(join(workingDir, 'b.txt'), 'b', 'utf8');
|
|
129
|
+
const result = TEST_GIT.addAll(workingDir);
|
|
130
|
+
assert.strictEqual(result.ok, true);
|
|
131
|
+
});
|
|
132
|
+
|
|
133
|
+
(GIT_INSTALLED ? it : it.skip)('pull works on up-to-date repo', () => {
|
|
134
|
+
if (!workingDir) return;
|
|
135
|
+
const result = TEST_GIT.pull(workingDir);
|
|
136
|
+
assert.strictEqual(result.ok, true);
|
|
137
|
+
});
|
|
138
|
+
|
|
139
|
+
describe('addRemote', () => {
|
|
140
|
+
(GIT_INSTALLED ? it : it.skip)('registers a new remote on a fresh repo', () => {
|
|
141
|
+
const dir = join(tmpdir(), `bizar-addremote-fresh-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
142
|
+
mkdirSync(dir, { recursive: true });
|
|
143
|
+
try {
|
|
144
|
+
execFileSync('git', ['init', '-b', 'main'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
145
|
+
execFileSync('git', ['config', 'user.email', 't@t'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
146
|
+
execFileSync('git', ['config', 'user.name', 't'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
147
|
+
|
|
148
|
+
const result = TEST_GIT.addRemote(dir, 'origin', 'git@github.com:user/repo.git');
|
|
149
|
+
assert.deepEqual(result, { ok: true, action: 'added' });
|
|
150
|
+
|
|
151
|
+
const url = execFileSync('git', ['remote', 'get-url', 'origin'], { cwd: dir, encoding: 'utf8' }).trim();
|
|
152
|
+
assert.strictEqual(url, 'git@github.com:user/repo.git');
|
|
153
|
+
} finally {
|
|
154
|
+
rmSync(dir, { recursive: true, force: true });
|
|
155
|
+
}
|
|
156
|
+
});
|
|
157
|
+
|
|
158
|
+
(GIT_INSTALLED ? it : it.skip)('is idempotent when same URL is set twice', () => {
|
|
159
|
+
const dir = join(tmpdir(), `bizar-addremote-idempotent-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
160
|
+
mkdirSync(dir, { recursive: true });
|
|
161
|
+
try {
|
|
162
|
+
execFileSync('git', ['init', '-b', 'main'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
163
|
+
execFileSync('git', ['config', 'user.email', 't@t'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
164
|
+
execFileSync('git', ['config', 'user.name', 't'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
165
|
+
|
|
166
|
+
const first = TEST_GIT.addRemote(dir, 'origin', 'git@github.com:user/repo.git');
|
|
167
|
+
assert.deepEqual(first, { ok: true, action: 'added' });
|
|
168
|
+
|
|
169
|
+
const second = TEST_GIT.addRemote(dir, 'origin', 'git@github.com:user/repo.git');
|
|
170
|
+
assert.deepEqual(second, { ok: true, action: 'unchanged' });
|
|
171
|
+
} finally {
|
|
172
|
+
rmSync(dir, { recursive: true, force: true });
|
|
173
|
+
}
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
(GIT_INSTALLED ? it : it.skip)('throws when remote exists with different URL and overwrite is false', () => {
|
|
177
|
+
const dir = join(tmpdir(), `bizar-addremote-noverwrite-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
178
|
+
mkdirSync(dir, { recursive: true });
|
|
179
|
+
try {
|
|
180
|
+
execFileSync('git', ['init', '-b', 'main'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
181
|
+
execFileSync('git', ['config', 'user.email', 't@t'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
182
|
+
execFileSync('git', ['config', 'user.name', 't'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
183
|
+
|
|
184
|
+
TEST_GIT.addRemote(dir, 'origin', 'git@github.com:user/repo.git');
|
|
185
|
+
assert.throws(
|
|
186
|
+
() => TEST_GIT.addRemote(dir, 'origin', 'git@github.com:other/repo.git'),
|
|
187
|
+
/already exists/,
|
|
188
|
+
);
|
|
189
|
+
} finally {
|
|
190
|
+
rmSync(dir, { recursive: true, force: true });
|
|
191
|
+
}
|
|
192
|
+
});
|
|
193
|
+
|
|
194
|
+
(GIT_INSTALLED ? it : it.skip)('overwrites remote URL when overwrite flag is set', () => {
|
|
195
|
+
const dir = join(tmpdir(), `bizar-addremote-overwrite-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
196
|
+
mkdirSync(dir, { recursive: true });
|
|
197
|
+
try {
|
|
198
|
+
execFileSync('git', ['init', '-b', 'main'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
199
|
+
execFileSync('git', ['config', 'user.email', 't@t'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
200
|
+
execFileSync('git', ['config', 'user.name', 't'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
201
|
+
|
|
202
|
+
TEST_GIT.addRemote(dir, 'origin', 'git@github.com:user/repo.git');
|
|
203
|
+
const result = TEST_GIT.addRemote(dir, 'origin', 'git@github.com:other/repo.git', { overwrite: true });
|
|
204
|
+
assert.deepEqual(result, { ok: true, action: 'updated' });
|
|
205
|
+
|
|
206
|
+
const url = execFileSync('git', ['remote', 'get-url', 'origin'], { cwd: dir, encoding: 'utf8' }).trim();
|
|
207
|
+
assert.strictEqual(url, 'git@github.com:other/repo.git');
|
|
208
|
+
} finally {
|
|
209
|
+
rmSync(dir, { recursive: true, force: true });
|
|
210
|
+
}
|
|
211
|
+
});
|
|
212
|
+
});
|
|
213
|
+
|
|
214
|
+
describe('lsRemote', () => {
|
|
215
|
+
(GIT_INSTALLED ? it : it.skip)('returns empty string for an unreachable remote', () => {
|
|
216
|
+
const dir = join(tmpdir(), `bizar-lsremote-unreachable-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
217
|
+
mkdirSync(dir, { recursive: true });
|
|
218
|
+
try {
|
|
219
|
+
execFileSync('git', ['init', '-b', 'main'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
220
|
+
execFileSync('git', ['config', 'user.email', 't@t'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
221
|
+
execFileSync('git', ['config', 'user.name', 't'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
222
|
+
|
|
223
|
+
TEST_GIT.addRemote(dir, 'origin', 'git@127.0.0.1:1/nope.git');
|
|
224
|
+
const result = TEST_GIT.lsRemote(dir, 'origin', { timeoutMs: 1000 });
|
|
225
|
+
assert.strictEqual(result, '');
|
|
226
|
+
} finally {
|
|
227
|
+
rmSync(dir, { recursive: true, force: true });
|
|
228
|
+
}
|
|
229
|
+
});
|
|
230
|
+
|
|
231
|
+
(GIT_INSTALLED ? it : it.skip)('returns empty string when the remote name does not exist', () => {
|
|
232
|
+
const dir = join(tmpdir(), `bizar-lsremote-nonexistent-${Date.now()}-${Math.random().toString(36).slice(2)}`);
|
|
233
|
+
mkdirSync(dir, { recursive: true });
|
|
234
|
+
try {
|
|
235
|
+
execFileSync('git', ['init', '-b', 'main'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
236
|
+
execFileSync('git', ['config', 'user.email', 't@t'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
237
|
+
execFileSync('git', ['config', 'user.name', 't'], { cwd: dir, encoding: 'utf8', stdio: 'pipe' });
|
|
238
|
+
|
|
239
|
+
const result = TEST_GIT.lsRemote(dir, 'nonexistent', { timeoutMs: 1000 });
|
|
240
|
+
assert.strictEqual(result, '');
|
|
241
|
+
} finally {
|
|
242
|
+
rmSync(dir, { recursive: true, force: true });
|
|
243
|
+
}
|
|
244
|
+
});
|
|
245
|
+
});
|
|
246
|
+
});
|