@logictan/dsh-config-manager 0.1.60
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/LICENSE +21 -0
- package/README.md +105 -0
- package/cordis.patch.yml +21 -0
- package/lib/adapters/agent-instructions.d.ts +13 -0
- package/lib/adapters/agent-instructions.js +46 -0
- package/lib/adapters/agent-presets.d.ts +13 -0
- package/lib/adapters/agent-presets.js +14 -0
- package/lib/adapters/credentials.d.ts +37 -0
- package/lib/adapters/credentials.js +122 -0
- package/lib/adapters/file-collection.d.ts +15 -0
- package/lib/adapters/file-collection.js +127 -0
- package/lib/adapters/index.d.ts +57 -0
- package/lib/adapters/index.js +55 -0
- package/lib/adapters/link-report.d.ts +16 -0
- package/lib/adapters/link-report.js +47 -0
- package/lib/adapters/mcp.d.ts +28 -0
- package/lib/adapters/mcp.js +178 -0
- package/lib/adapters/plugin-files.d.ts +18 -0
- package/lib/adapters/plugin-files.js +142 -0
- package/lib/adapters/plugins.d.ts +41 -0
- package/lib/adapters/plugins.js +603 -0
- package/lib/adapters/pnpm-workspace.d.ts +26 -0
- package/lib/adapters/pnpm-workspace.js +147 -0
- package/lib/adapters/prompts.d.ts +30 -0
- package/lib/adapters/prompts.js +231 -0
- package/lib/adapters/providers.d.ts +34 -0
- package/lib/adapters/providers.js +155 -0
- package/lib/adapters/self.d.ts +17 -0
- package/lib/adapters/self.js +71 -0
- package/lib/adapters/sessions.d.ts +14 -0
- package/lib/adapters/sessions.js +15 -0
- package/lib/adapters/settings.d.ts +28 -0
- package/lib/adapters/settings.js +165 -0
- package/lib/adapters/skills.d.ts +13 -0
- package/lib/adapters/skills.js +14 -0
- package/lib/adapters/test-helpers.d.ts +125 -0
- package/lib/adapters/test-helpers.js +236 -0
- package/lib/adapters/ui.d.ts +27 -0
- package/lib/adapters/ui.js +89 -0
- package/lib/adapters/workspaces.d.ts +13 -0
- package/lib/adapters/workspaces.js +106 -0
- package/lib/client.d.ts +1026 -0
- package/lib/client.js +10047 -0
- package/lib/core/analyzer.d.ts +99 -0
- package/lib/core/analyzer.js +934 -0
- package/lib/core/backup.d.ts +138 -0
- package/lib/core/backup.js +513 -0
- package/lib/core/boot-rescue.d.ts +146 -0
- package/lib/core/boot-rescue.js +618 -0
- package/lib/core/cache-cleaner.d.ts +31 -0
- package/lib/core/cache-cleaner.js +95 -0
- package/lib/core/config-lifecycle.d.ts +180 -0
- package/lib/core/config-lifecycle.js +481 -0
- package/lib/core/config-snapshot.d.ts +135 -0
- package/lib/core/config-snapshot.js +424 -0
- package/lib/core/config-state.d.ts +70 -0
- package/lib/core/config-state.js +177 -0
- package/lib/core/consult-source.d.ts +58 -0
- package/lib/core/consult-source.js +260 -0
- package/lib/core/crash-report.d.ts +84 -0
- package/lib/core/crash-report.js +317 -0
- package/lib/core/exporter.d.ts +68 -0
- package/lib/core/exporter.js +375 -0
- package/lib/core/ghost-sweep.d.ts +19 -0
- package/lib/core/ghost-sweep.js +52 -0
- package/lib/core/importer.d.ts +60 -0
- package/lib/core/importer.js +29 -0
- package/lib/core/index.d.ts +14 -0
- package/lib/core/index.js +14 -0
- package/lib/core/journal.d.ts +197 -0
- package/lib/core/journal.js +418 -0
- package/lib/core/local-plugin-host.d.ts +35 -0
- package/lib/core/local-plugin-host.js +120 -0
- package/lib/core/local-plugin-pack.d.ts +135 -0
- package/lib/core/local-plugin-pack.js +278 -0
- package/lib/core/messages.d.ts +310 -0
- package/lib/core/messages.js +621 -0
- package/lib/core/migration-consult.d.ts +117 -0
- package/lib/core/migration-consult.js +363 -0
- package/lib/core/migration-history.d.ts +153 -0
- package/lib/core/migration-history.js +411 -0
- package/lib/core/model-tools.d.ts +50 -0
- package/lib/core/model-tools.js +148 -0
- package/lib/core/msg-types.d.ts +8 -0
- package/lib/core/msg-types.js +6 -0
- package/lib/core/phase3-child-crash.d.ts +1 -0
- package/lib/core/phase3-child-crash.js +87 -0
- package/lib/core/phase3-host.d.ts +138 -0
- package/lib/core/phase3-host.js +359 -0
- package/lib/core/phase3-prod-child.d.ts +1 -0
- package/lib/core/phase3-prod-child.js +35 -0
- package/lib/core/phase4-crash-child.d.ts +1 -0
- package/lib/core/phase4-crash-child.js +103 -0
- package/lib/core/plugin-cli.d.ts +150 -0
- package/lib/core/plugin-cli.js +497 -0
- package/lib/core/reconcile.d.ts +120 -0
- package/lib/core/reconcile.js +389 -0
- package/lib/core/recovery-orchestrator.d.ts +94 -0
- package/lib/core/recovery-orchestrator.js +327 -0
- package/lib/core/restore.d.ts +162 -0
- package/lib/core/restore.js +703 -0
- package/lib/core/rollback.d.ts +12 -0
- package/lib/core/rollback.js +145 -0
- package/lib/core/run-registry.d.ts +85 -0
- package/lib/core/run-registry.js +157 -0
- package/lib/core/startup-barrier.d.ts +53 -0
- package/lib/core/startup-barrier.js +77 -0
- package/lib/core/types.d.ts +515 -0
- package/lib/core/types.js +27 -0
- package/lib/core/undo.d.ts +73 -0
- package/lib/core/undo.js +87 -0
- package/lib/core/validator.d.ts +18 -0
- package/lib/core/validator.js +77 -0
- package/lib/core/verify-recovery.d.ts +21 -0
- package/lib/core/verify-recovery.js +256 -0
- package/lib/core/watcher.d.ts +101 -0
- package/lib/core/watcher.js +219 -0
- package/lib/index.d.ts +238 -0
- package/lib/index.js +2764 -0
- package/lib/migrations/index.d.ts +29 -0
- package/lib/migrations/index.js +56 -0
- package/lib/migrations/v1-to-v2.d.ts +9 -0
- package/lib/migrations/v1-to-v2.js +10 -0
- package/lib/profiles/index.d.ts +4 -0
- package/lib/profiles/index.js +5 -0
- package/lib/profiles/profile-manager.d.ts +106 -0
- package/lib/profiles/profile-manager.js +543 -0
- package/lib/schema/config.d.ts +28 -0
- package/lib/schema/config.js +165 -0
- package/lib/schema/index.d.ts +24 -0
- package/lib/schema/index.js +26 -0
- package/lib/schema/manifest.d.ts +28 -0
- package/lib/schema/manifest.js +109 -0
- package/lib/schema/tombstones.d.ts +46 -0
- package/lib/schema/tombstones.js +64 -0
- package/lib/schema/types.d.ts +232 -0
- package/lib/schema/types.js +8 -0
- package/lib/schema/versions.d.ts +27 -0
- package/lib/schema/versions.js +50 -0
- package/lib/security/encryption.d.ts +85 -0
- package/lib/security/encryption.js +279 -0
- package/lib/security/index.d.ts +16 -0
- package/lib/security/index.js +17 -0
- package/lib/security/integrity.d.ts +30 -0
- package/lib/security/integrity.js +78 -0
- package/lib/security/redaction.d.ts +26 -0
- package/lib/security/redaction.js +95 -0
- package/lib/security/secret-scanner.d.ts +86 -0
- package/lib/security/secret-scanner.js +404 -0
- package/lib/security/vault.d.ts +59 -0
- package/lib/security/vault.js +151 -0
- package/lib/security/zip-security.d.ts +27 -0
- package/lib/security/zip-security.js +154 -0
- package/lib/sync/autosync-config.d.ts +39 -0
- package/lib/sync/autosync-config.js +151 -0
- package/lib/sync/autosync-scheduler.d.ts +139 -0
- package/lib/sync/autosync-scheduler.js +564 -0
- package/lib/sync/fs.d.ts +18 -0
- package/lib/sync/fs.js +49 -0
- package/lib/sync/git/git-transport.d.ts +100 -0
- package/lib/sync/git/git-transport.js +437 -0
- package/lib/sync/github-auth.d.ts +131 -0
- package/lib/sync/github-auth.js +264 -0
- package/lib/sync/layout.d.ts +43 -0
- package/lib/sync/layout.js +203 -0
- package/lib/sync/snapshot-json.d.ts +9 -0
- package/lib/sync/snapshot-json.js +107 -0
- package/lib/sync/sync-config.d.ts +81 -0
- package/lib/sync/sync-config.js +281 -0
- package/lib/sync/sync-engine.d.ts +269 -0
- package/lib/sync/sync-engine.js +591 -0
- package/lib/sync/sync-history.d.ts +42 -0
- package/lib/sync/sync-history.js +78 -0
- package/lib/sync/sync-selection.d.ts +29 -0
- package/lib/sync/sync-selection.js +127 -0
- package/lib/sync/sync-session.d.ts +40 -0
- package/lib/sync/sync-session.js +54 -0
- package/lib/sync/sync-state.d.ts +37 -0
- package/lib/sync/sync-state.js +108 -0
- package/lib/sync/transport.d.ts +75 -0
- package/lib/sync/transport.js +55 -0
- package/lib/sync/ui-prefs.d.ts +34 -0
- package/lib/sync/ui-prefs.js +109 -0
- package/lib/sync/webdav/webdav-transport.d.ts +77 -0
- package/lib/sync/webdav/webdav-transport.js +451 -0
- package/lib/ui/errors.d.ts +19 -0
- package/lib/ui/errors.js +81 -0
- package/lib/ui/export-flow.d.ts +82 -0
- package/lib/ui/export-flow.js +98 -0
- package/lib/ui/i18n.d.ts +289 -0
- package/lib/ui/i18n.js +581 -0
- package/lib/ui/migration-consult-view.d.ts +91 -0
- package/lib/ui/migration-consult-view.js +115 -0
- package/lib/ui/progress.d.ts +38 -0
- package/lib/ui/progress.js +87 -0
- package/lib/ui/report.d.ts +23 -0
- package/lib/ui/report.js +153 -0
- package/lib/ui/test-helpers.d.ts +69 -0
- package/lib/ui/test-helpers.js +154 -0
- package/lib/ui/types.d.ts +257 -0
- package/lib/ui/types.js +21 -0
- package/lib/utils/atomic-write.d.ts +88 -0
- package/lib/utils/atomic-write.js +399 -0
- package/lib/utils/env-lock.d.ts +393 -0
- package/lib/utils/env-lock.js +930 -0
- package/lib/utils/hashing.d.ts +17 -0
- package/lib/utils/hashing.js +41 -0
- package/lib/utils/json.d.ts +24 -0
- package/lib/utils/json.js +76 -0
- package/lib/utils/logger.d.ts +39 -0
- package/lib/utils/logger.js +82 -0
- package/lib/utils/paths.d.ts +42 -0
- package/lib/utils/paths.js +189 -0
- package/lib/utils/proxy.d.ts +69 -0
- package/lib/utils/proxy.js +455 -0
- package/lib/utils/recursive-walk.d.ts +24 -0
- package/lib/utils/recursive-walk.js +134 -0
- package/lib/utils/zip.d.ts +54 -0
- package/lib/utils/zip.js +285 -0
- package/package.json +188 -0
- package/src/adapters/agent-instructions.ts +48 -0
- package/src/adapters/agent-presets.ts +14 -0
- package/src/adapters/credentials.test.ts +90 -0
- package/src/adapters/credentials.ts +143 -0
- package/src/adapters/file-collection.ts +137 -0
- package/src/adapters/files.test.ts +353 -0
- package/src/adapters/index.ts +94 -0
- package/src/adapters/link-report.test.ts +65 -0
- package/src/adapters/link-report.ts +61 -0
- package/src/adapters/mcp.test.ts +96 -0
- package/src/adapters/mcp.ts +185 -0
- package/src/adapters/plugin-files.ts +146 -0
- package/src/adapters/plugins.test.ts +326 -0
- package/src/adapters/plugins.ts +615 -0
- package/src/adapters/pnpm-workspace.test.ts +87 -0
- package/src/adapters/pnpm-workspace.ts +150 -0
- package/src/adapters/prompts.test.ts +110 -0
- package/src/adapters/prompts.ts +230 -0
- package/src/adapters/providers.test.ts +126 -0
- package/src/adapters/providers.ts +173 -0
- package/src/adapters/roundtrip.test.ts +190 -0
- package/src/adapters/self.test.ts +92 -0
- package/src/adapters/self.ts +75 -0
- package/src/adapters/sessions.ts +15 -0
- package/src/adapters/settings.test.ts +100 -0
- package/src/adapters/settings.ts +187 -0
- package/src/adapters/skills.ts +14 -0
- package/src/adapters/test-helpers.ts +248 -0
- package/src/adapters/ui.test.ts +57 -0
- package/src/adapters/ui.ts +108 -0
- package/src/adapters/workspaces.test.ts +106 -0
- package/src/adapters/workspaces.ts +109 -0
- package/src/client/ConfigManagerSection.tsx +90 -0
- package/src/client/api.ts +66 -0
- package/src/client/client-types.ts +18 -0
- package/src/client/common/ErrorBanner.tsx +73 -0
- package/src/client/common/Icon.tsx +129 -0
- package/src/client/common/Modal.tsx +173 -0
- package/src/client/common/ToastViewport.tsx +73 -0
- package/src/client/common/toast-store.test.ts +192 -0
- package/src/client/common/toast-store.ts +181 -0
- package/src/client/common/toast-types.ts +7 -0
- package/src/client/common/ui.tsx +342 -0
- package/src/client/config-manager.module.css +2971 -0
- package/src/client/css-modules.d.ts +8 -0
- package/src/client/index.ts +65 -0
- package/src/client/locales.ts +56 -0
- package/src/client/lucide-icons.d.ts +38 -0
- package/src/client/run-store.test.ts +223 -0
- package/src/client/run-store.ts +372 -0
- package/src/client/sync/SyncConfirmView.tsx +379 -0
- package/src/client/sync/SyncHistoryView.test.ts +40 -0
- package/src/client/sync/SyncHistoryView.tsx +220 -0
- package/src/client/sync/SyncSettingsView.tsx +1535 -0
- package/src/client/sync/history-model.test.ts +194 -0
- package/src/client/sync/history-model.ts +195 -0
- package/src/client/sync/sync-api.test.ts +585 -0
- package/src/client/sync/sync-api.ts +543 -0
- package/src/client/sync/sync-locales.ts +416 -0
- package/src/client/sync/sync-push-preview.test.ts +52 -0
- package/src/client/sync/sync-view-v2.test.ts +213 -0
- package/src/client/sync/sync-view.test.ts +487 -0
- package/src/client/sync/sync-view.ts +759 -0
- package/src/core/analyzer.ts +1068 -0
- package/src/core/backup.ts +605 -0
- package/src/core/boot-rescue.test.ts +847 -0
- package/src/core/boot-rescue.ts +737 -0
- package/src/core/cache-cleaner.test.ts +169 -0
- package/src/core/cache-cleaner.ts +121 -0
- package/src/core/config-lifecycle.test.ts +727 -0
- package/src/core/config-lifecycle.ts +573 -0
- package/src/core/config-snapshot.test.ts +369 -0
- package/src/core/config-snapshot.ts +522 -0
- package/src/core/config-state.test.ts +381 -0
- package/src/core/config-state.ts +207 -0
- package/src/core/consult-source.test.ts +199 -0
- package/src/core/consult-source.ts +293 -0
- package/src/core/crash-report.test.ts +380 -0
- package/src/core/crash-report.ts +369 -0
- package/src/core/exporter.ts +417 -0
- package/src/core/ghost-sweep.test.ts +94 -0
- package/src/core/ghost-sweep.ts +67 -0
- package/src/core/importer.ts +83 -0
- package/src/core/index.ts +56 -0
- package/src/core/journal.test.ts +257 -0
- package/src/core/journal.ts +518 -0
- package/src/core/local-plugin-host.ts +152 -0
- package/src/core/local-plugin-pack.test.ts +359 -0
- package/src/core/local-plugin-pack.ts +363 -0
- package/src/core/messages.test.ts +54 -0
- package/src/core/messages.ts +664 -0
- package/src/core/migration-consult.test.ts +315 -0
- package/src/core/migration-consult.ts +494 -0
- package/src/core/migration-history.test.ts +319 -0
- package/src/core/migration-history.ts +484 -0
- package/src/core/model-tools.test.ts +190 -0
- package/src/core/model-tools.ts +208 -0
- package/src/core/msg-types.ts +10 -0
- package/src/core/phase3-child-crash.ts +95 -0
- package/src/core/phase3-host.ts +411 -0
- package/src/core/phase3-p1.test.ts +212 -0
- package/src/core/phase3-p2b-fingerprint.test.ts +189 -0
- package/src/core/phase3-prod-child.ts +36 -0
- package/src/core/phase3-production-integration.test.ts +286 -0
- package/src/core/phase4-crash-child.ts +101 -0
- package/src/core/phase4-crash-injection.test.ts +166 -0
- package/src/core/plugin-cli.fs.test.ts +184 -0
- package/src/core/plugin-cli.test.ts +137 -0
- package/src/core/plugin-cli.ts +563 -0
- package/src/core/reconcile.test.ts +392 -0
- package/src/core/reconcile.ts +498 -0
- package/src/core/recovery-orchestrator.test.ts +145 -0
- package/src/core/recovery-orchestrator.ts +366 -0
- package/src/core/restore-manage.test.ts +94 -0
- package/src/core/restore.ts +849 -0
- package/src/core/rollback.ts +151 -0
- package/src/core/run-progress.test.ts +237 -0
- package/src/core/run-registry.test.ts +232 -0
- package/src/core/run-registry.ts +209 -0
- package/src/core/smoke.test.ts +842 -0
- package/src/core/startup-barrier.ts +99 -0
- package/src/core/types.ts +542 -0
- package/src/core/undo.ts +116 -0
- package/src/core/validator.ts +84 -0
- package/src/core/verify-recovery.ts +265 -0
- package/src/core/watcher.test.ts +326 -0
- package/src/core/watcher.ts +263 -0
- package/src/index.facade.test.ts +265 -0
- package/src/index.sync.test.ts +217 -0
- package/src/index.ts +2975 -0
- package/src/migrations/index.ts +71 -0
- package/src/migrations/v1-to-v2.ts +17 -0
- package/src/profiles/index.ts +8 -0
- package/src/profiles/profile-manager.test.ts +282 -0
- package/src/profiles/profile-manager.ts +630 -0
- package/src/schema/config.ts +165 -0
- package/src/schema/index.ts +71 -0
- package/src/schema/manifest-schema.test.ts +519 -0
- package/src/schema/manifest.ts +124 -0
- package/src/schema/tombstones.test.ts +131 -0
- package/src/schema/tombstones.ts +89 -0
- package/src/schema/types.ts +245 -0
- package/src/schema/versions.ts +55 -0
- package/src/security/encryption.ts +335 -0
- package/src/security/index.ts +16 -0
- package/src/security/integrity.ts +102 -0
- package/src/security/redaction.ts +101 -0
- package/src/security/secret-scanner.ts +445 -0
- package/src/security/security.test.ts +1215 -0
- package/src/security/vault.test.ts +164 -0
- package/src/security/vault.ts +198 -0
- package/src/security/zip-security.ts +180 -0
- package/src/sync/autosync-config.test.ts +147 -0
- package/src/sync/autosync-config.ts +179 -0
- package/src/sync/autosync-scheduler.test.ts +490 -0
- package/src/sync/autosync-scheduler.ts +646 -0
- package/src/sync/fs.ts +48 -0
- package/src/sync/git/git-transport.test.ts +673 -0
- package/src/sync/git/git-transport.ts +491 -0
- package/src/sync/github-auth.test.ts +280 -0
- package/src/sync/github-auth.ts +356 -0
- package/src/sync/layout.test.ts +270 -0
- package/src/sync/layout.ts +222 -0
- package/src/sync/snapshot-json.test.ts +119 -0
- package/src/sync/snapshot-json.ts +128 -0
- package/src/sync/sync-config.test.ts +310 -0
- package/src/sync/sync-config.ts +299 -0
- package/src/sync/sync-engine.test.ts +1074 -0
- package/src/sync/sync-engine.ts +754 -0
- package/src/sync/sync-history.test.ts +116 -0
- package/src/sync/sync-history.ts +120 -0
- package/src/sync/sync-selection.test.ts +186 -0
- package/src/sync/sync-selection.ts +143 -0
- package/src/sync/sync-session.test.ts +143 -0
- package/src/sync/sync-session.ts +77 -0
- package/src/sync/sync-state.test.ts +164 -0
- package/src/sync/sync-state.ts +131 -0
- package/src/sync/transport.test.ts +111 -0
- package/src/sync/transport.ts +118 -0
- package/src/sync/ui-prefs.test.ts +152 -0
- package/src/sync/ui-prefs.ts +135 -0
- package/src/sync/webdav/webdav-transport.test.ts +871 -0
- package/src/sync/webdav/webdav-transport.ts +535 -0
- package/src/ui/errors.test.ts +47 -0
- package/src/ui/errors.ts +100 -0
- package/src/ui/export-flow.test.ts +87 -0
- package/src/ui/export-flow.ts +156 -0
- package/src/ui/i18n.ts +590 -0
- package/src/ui/migration-consult-view.test.ts +151 -0
- package/src/ui/migration-consult-view.ts +178 -0
- package/src/ui/progress.test.ts +47 -0
- package/src/ui/progress.ts +102 -0
- package/src/ui/report.test.ts +101 -0
- package/src/ui/report.ts +146 -0
- package/src/ui/test-helpers.ts +184 -0
- package/src/ui/types.ts +325 -0
- package/src/utils/atomic-write.test.ts +312 -0
- package/src/utils/atomic-write.ts +422 -0
- package/src/utils/env-lock.test.ts +999 -0
- package/src/utils/env-lock.ts +1086 -0
- package/src/utils/hashing.ts +53 -0
- package/src/utils/json.ts +77 -0
- package/src/utils/logger.ts +114 -0
- package/src/utils/paths.ts +176 -0
- package/src/utils/proxy.test.ts +465 -0
- package/src/utils/proxy.ts +493 -0
- package/src/utils/recursive-walk.test.ts +148 -0
- package/src/utils/recursive-walk.ts +145 -0
- package/src/utils/zip.ts +332 -0
|
@@ -0,0 +1,585 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* m-sync-ui:SyncApi(/api/dsh-config-manager/sync/*)请求契约测试。
|
|
3
|
+
* 用全局 fetch mock 验证 status/push/pull 的路径/方法/请求体与响应解析(含 4xx 错误映射)。
|
|
4
|
+
*/
|
|
5
|
+
import test from 'node:test';
|
|
6
|
+
import assert from 'node:assert/strict';
|
|
7
|
+
|
|
8
|
+
import { ConfigManagerApiError } from '../api.ts';
|
|
9
|
+
import { SYNC_API, SYNC_WEBDAV_CREDENTIAL_REF, SyncApi } from './sync-api.ts';
|
|
10
|
+
|
|
11
|
+
interface FetchCall {
|
|
12
|
+
url: string;
|
|
13
|
+
init?: RequestInit;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
function installFetchMock(handler: (call: FetchCall) => Response): void {
|
|
17
|
+
const original = globalThis.fetch;
|
|
18
|
+
globalThis.fetch = (async (input: RequestInfo | URL, init?: RequestInit): Promise<Response> => {
|
|
19
|
+
return handler({ url: String(input), init });
|
|
20
|
+
}) as typeof fetch;
|
|
21
|
+
test.after(() => {
|
|
22
|
+
globalThis.fetch = original;
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function jsonResponse(status: number, body: unknown): Response {
|
|
27
|
+
return new Response(JSON.stringify(body), {
|
|
28
|
+
status,
|
|
29
|
+
headers: { 'content-type': 'application/json' },
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
test('S-01 api.status():GET 到 /sync/status,解析配置/凭据/上次同步', async () => {
|
|
34
|
+
const body = {
|
|
35
|
+
ok: true, configured: true, repoUrl: 'https://github.com/u/r.git',
|
|
36
|
+
credentialConfigured: true, credentialWritable: true,
|
|
37
|
+
lastSyncAt: '2026-08-16T10:30:00.000Z', sectionCount: 3,
|
|
38
|
+
transport: { type: 'git', ref: 'main' },
|
|
39
|
+
};
|
|
40
|
+
let called: FetchCall | null = null;
|
|
41
|
+
installFetchMock((call) => {
|
|
42
|
+
called = call;
|
|
43
|
+
return jsonResponse(200, body);
|
|
44
|
+
});
|
|
45
|
+
// 经读取函数解除闭包赋值导致的 CFA 窄化(called 在回调内赋值,外部保持 null 窄化)
|
|
46
|
+
const lastCall = (): FetchCall | null => called;
|
|
47
|
+
|
|
48
|
+
const api = new SyncApi();
|
|
49
|
+
const result = await api.status();
|
|
50
|
+
assert.equal(result.configured, true);
|
|
51
|
+
assert.equal(result.repoUrl, 'https://github.com/u/r.git');
|
|
52
|
+
assert.equal(result.credentialConfigured, true);
|
|
53
|
+
assert.equal(lastCall()?.url, SYNC_API.status);
|
|
54
|
+
assert.equal(lastCall()?.init?.method, undefined, 'GET 不设 method');
|
|
55
|
+
});
|
|
56
|
+
|
|
57
|
+
test('S-02 api.push():POST /sync/push,请求体携带 repoUrl/token', async () => {
|
|
58
|
+
const calls: FetchCall[] = [];
|
|
59
|
+
installFetchMock((call) => {
|
|
60
|
+
calls.push(call);
|
|
61
|
+
return jsonResponse(200, { ok: true, snapshotId: 'sync-1', sections: ['settings'], warnings: [] });
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
const api = new SyncApi();
|
|
65
|
+
const result = await api.push({ repoUrl: 'https://github.com/u/r.git', token: 'ghp_secret' });
|
|
66
|
+
assert.equal(result.ok, true);
|
|
67
|
+
assert.equal(result.snapshotId, 'sync-1');
|
|
68
|
+
assert.equal(calls.length, 1);
|
|
69
|
+
assert.equal(calls[0]?.url, SYNC_API.push);
|
|
70
|
+
assert.equal(calls[0]?.init?.method, 'POST');
|
|
71
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
72
|
+
assert.equal(sent['repoUrl'], 'https://github.com/u/r.git');
|
|
73
|
+
assert.equal(sent['token'], 'ghp_secret');
|
|
74
|
+
assert.equal(sent['gitBin'], undefined);
|
|
75
|
+
});
|
|
76
|
+
|
|
77
|
+
test('S-03 api.pull():POST /sync/pull,strategy 缺省透传 merge,响应含差异摘要', async () => {
|
|
78
|
+
const calls: FetchCall[] = [];
|
|
79
|
+
installFetchMock((call) => {
|
|
80
|
+
calls.push(call);
|
|
81
|
+
return jsonResponse(200, {
|
|
82
|
+
ok: true, snapshotId: 'sync-9',
|
|
83
|
+
changes: [{ id: 'a', adapter: 'settings', kind: 'Conflict', description: '冲突', severity: 'warning' }],
|
|
84
|
+
needsReview: true,
|
|
85
|
+
});
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
const api = new SyncApi();
|
|
89
|
+
const result = await api.pull({ repoUrl: 'https://github.com/u/r.git', strategy: 'merge' });
|
|
90
|
+
assert.equal(result.changes.length, 1);
|
|
91
|
+
assert.equal(result.changes[0]?.kind, 'Conflict');
|
|
92
|
+
assert.equal(result.needsReview, true);
|
|
93
|
+
assert.equal(calls[0]?.url, SYNC_API.pull);
|
|
94
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
95
|
+
assert.equal(sent['strategy'], 'merge');
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
test('S-04 错误映射:4xx 携带 error → ConfigManagerApiError', async () => {
|
|
99
|
+
installFetchMock(() => jsonResponse(400, { error: 'repoUrl is required' }));
|
|
100
|
+
const api = new SyncApi();
|
|
101
|
+
await assert.rejects(api.push({ repoUrl: '' }), (err: unknown) => {
|
|
102
|
+
assert.ok(err instanceof ConfigManagerApiError);
|
|
103
|
+
assert.match(err.message, /repoUrl is required/);
|
|
104
|
+
return true;
|
|
105
|
+
});
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
test('S-05 服务未挂载:404(非 JSON 体)→ ConfigManagerApiError 提示插件未加载', async () => {
|
|
109
|
+
// 路由不存在时宿主返回 404 但无 JSON error → readJson 兜底为「插件未挂载」提示
|
|
110
|
+
installFetchMock(() => new Response('Not Found', { status: 404 }));
|
|
111
|
+
const api = new SyncApi();
|
|
112
|
+
await assert.rejects(api.status(), (err: unknown) => {
|
|
113
|
+
assert.ok(err instanceof ConfigManagerApiError);
|
|
114
|
+
assert.match(err.message, /未挂载/);
|
|
115
|
+
return true;
|
|
116
|
+
});
|
|
117
|
+
});
|
|
118
|
+
|
|
119
|
+
/* ------------------------------------------------ GitHub OAuth device flow 契约 */
|
|
120
|
+
|
|
121
|
+
test('S-06 api.githubStart():POST /sync/github/start,解析 flowId/userCode/授权页', async () => {
|
|
122
|
+
const body = {
|
|
123
|
+
flowId: 'flow-1', userCode: 'ABCD-EFGH',
|
|
124
|
+
verificationUri: 'https://github.com/login/device', expiresIn: 900, interval: 5,
|
|
125
|
+
};
|
|
126
|
+
const calls: FetchCall[] = [];
|
|
127
|
+
installFetchMock((call) => {
|
|
128
|
+
calls.push(call);
|
|
129
|
+
return jsonResponse(200, body);
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
const api = new SyncApi();
|
|
133
|
+
const result = await api.githubStart();
|
|
134
|
+
assert.equal(result.flowId, 'flow-1');
|
|
135
|
+
assert.equal(result.userCode, 'ABCD-EFGH');
|
|
136
|
+
assert.equal(result.verificationUri, 'https://github.com/login/device');
|
|
137
|
+
assert.equal(calls[0]?.url, SYNC_API.githubStart);
|
|
138
|
+
assert.equal(calls[0]?.init?.method, 'POST');
|
|
139
|
+
});
|
|
140
|
+
|
|
141
|
+
test('S-07 api.githubPoll():POST /sync/github/poll 携带 flowId;pending 透传 pollDelayMs', async () => {
|
|
142
|
+
const calls: FetchCall[] = [];
|
|
143
|
+
installFetchMock((call) => {
|
|
144
|
+
calls.push(call);
|
|
145
|
+
return jsonResponse(200, { status: 'pending', pollDelayMs: 5000 });
|
|
146
|
+
});
|
|
147
|
+
|
|
148
|
+
const api = new SyncApi();
|
|
149
|
+
const result = await api.githubPoll('flow-1');
|
|
150
|
+
assert.equal(result.status, 'pending');
|
|
151
|
+
assert.equal(result.pollDelayMs, 5000);
|
|
152
|
+
assert.equal(calls[0]?.url, SYNC_API.githubPoll);
|
|
153
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
154
|
+
assert.equal(sent['flowId'], 'flow-1');
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
test('S-08 api.githubPoll() 成功 → 响应只含状态,token 永不回传', async () => {
|
|
158
|
+
installFetchMock(() => jsonResponse(200, { status: 'success', credentialConfigured: true }));
|
|
159
|
+
const api = new SyncApi();
|
|
160
|
+
const result = await api.githubPoll('flow-1');
|
|
161
|
+
assert.equal(result.status, 'success');
|
|
162
|
+
assert.equal(result.credentialConfigured, true);
|
|
163
|
+
assert.equal('accessToken' in result, false, '响应契约不得携带 access token 字段');
|
|
164
|
+
assert.equal('token' in result, false);
|
|
165
|
+
});
|
|
166
|
+
|
|
167
|
+
test('S-09 api.githubCancel():POST /sync/github/cancel 携带 flowId', async () => {
|
|
168
|
+
const calls: FetchCall[] = [];
|
|
169
|
+
installFetchMock((call) => {
|
|
170
|
+
calls.push(call);
|
|
171
|
+
return jsonResponse(200, { ok: true });
|
|
172
|
+
});
|
|
173
|
+
const api = new SyncApi();
|
|
174
|
+
const result = await api.githubCancel('flow-1');
|
|
175
|
+
assert.equal(result.ok, true);
|
|
176
|
+
assert.equal(calls[0]?.url, SYNC_API.githubCancel);
|
|
177
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
178
|
+
assert.equal(sent['flowId'], 'flow-1');
|
|
179
|
+
});
|
|
180
|
+
|
|
181
|
+
/* ------------------------------------------------ 一键同步(方案 A)端点契约 */
|
|
182
|
+
|
|
183
|
+
test('S-10 api.snapshotsList():POST /sync/snapshots-list,解析倒序快照列表 + currentSnapshotId', async () => {
|
|
184
|
+
const body = {
|
|
185
|
+
ok: true,
|
|
186
|
+
snapshots: [
|
|
187
|
+
{ id: 'sync-2', createdAt: '2026-08-17T10:00:00.000Z', sectionCount: 3, platform: 'darwin', dshVersion: '1.0.0' },
|
|
188
|
+
{ id: 'sync-1', createdAt: '2026-08-16T10:00:00.000Z', sectionCount: 2, platform: 'darwin', dshVersion: '1.0.0' },
|
|
189
|
+
],
|
|
190
|
+
currentSnapshotId: 'sync-1',
|
|
191
|
+
};
|
|
192
|
+
const calls: FetchCall[] = [];
|
|
193
|
+
installFetchMock((call) => {
|
|
194
|
+
calls.push(call);
|
|
195
|
+
return jsonResponse(200, body);
|
|
196
|
+
});
|
|
197
|
+
const api = new SyncApi();
|
|
198
|
+
const result = await api.snapshotsList({ repoUrl: 'https://github.com/u/r.git' });
|
|
199
|
+
assert.equal(result.ok, true);
|
|
200
|
+
assert.equal(result.snapshots.length, 2);
|
|
201
|
+
assert.equal(result.snapshots[0]?.id, 'sync-2');
|
|
202
|
+
assert.equal(result.currentSnapshotId, 'sync-1');
|
|
203
|
+
assert.equal(calls[0]?.url, SYNC_API.snapshotsList);
|
|
204
|
+
assert.equal(calls[0]?.init?.method, 'POST');
|
|
205
|
+
});
|
|
206
|
+
|
|
207
|
+
test('S-11 api.sync():POST /sync/sync,请求体携带 snapshotId;响应含 items/needsReview/compatibility', async () => {
|
|
208
|
+
const body = {
|
|
209
|
+
ok: true,
|
|
210
|
+
syncSessionId: 'sess-1',
|
|
211
|
+
snapshotId: 'sync-3',
|
|
212
|
+
items: [{ itemId: 'settings:a', adapter: 'settings', kind: 'Update', description: '更新', severity: 'info', defaultAdopt: true, adopt: true }],
|
|
213
|
+
needsReview: false,
|
|
214
|
+
compatibility: 'good',
|
|
215
|
+
};
|
|
216
|
+
const calls: FetchCall[] = [];
|
|
217
|
+
installFetchMock((call) => {
|
|
218
|
+
calls.push(call);
|
|
219
|
+
return jsonResponse(200, body);
|
|
220
|
+
});
|
|
221
|
+
const api = new SyncApi();
|
|
222
|
+
const result = await api.sync({ repoUrl: 'https://github.com/u/r.git', snapshotId: 'sync-3' });
|
|
223
|
+
assert.equal(result.syncSessionId, 'sess-1');
|
|
224
|
+
assert.equal(result.items.length, 1);
|
|
225
|
+
assert.equal(result.compatibility, 'good');
|
|
226
|
+
assert.equal(calls[0]?.url, SYNC_API.sync);
|
|
227
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
228
|
+
assert.equal(sent['snapshotId'], 'sync-3');
|
|
229
|
+
});
|
|
230
|
+
|
|
231
|
+
test('S-12 api.applyItems():POST /sync/apply-items,携带 adoptions(含 Conflict resolution)', async () => {
|
|
232
|
+
const body = {
|
|
233
|
+
ok: true, applied: ['settings'], skipped: ['plugin:x'], needsRestart: false,
|
|
234
|
+
warnings: [], restoreId: 'rest-1', rolledBack: false, failed: [], result: {},
|
|
235
|
+
};
|
|
236
|
+
const calls: FetchCall[] = [];
|
|
237
|
+
installFetchMock((call) => {
|
|
238
|
+
calls.push(call);
|
|
239
|
+
return jsonResponse(200, body);
|
|
240
|
+
});
|
|
241
|
+
const api = new SyncApi();
|
|
242
|
+
const result = await api.applyItems({
|
|
243
|
+
syncSessionId: 'sess-1',
|
|
244
|
+
adoptions: [
|
|
245
|
+
{ itemId: 'settings:a', adopt: true },
|
|
246
|
+
{ itemId: 'plugin:x', adopt: true, resolution: 'useRemote' },
|
|
247
|
+
],
|
|
248
|
+
});
|
|
249
|
+
assert.equal(result.applied[0], 'settings');
|
|
250
|
+
assert.equal(result.restoreId, 'rest-1');
|
|
251
|
+
assert.equal(calls[0]?.url, SYNC_API.applyItems);
|
|
252
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
253
|
+
assert.equal(sent['syncSessionId'], 'sess-1');
|
|
254
|
+
const adoptions = sent['adoptions'] as Array<Record<string, unknown>>;
|
|
255
|
+
assert.equal(adoptions[1]?.['resolution'], 'useRemote');
|
|
256
|
+
});
|
|
257
|
+
|
|
258
|
+
test('S-13 api.cancel():POST /sync/cancel 携带 syncSessionId', async () => {
|
|
259
|
+
const calls: FetchCall[] = [];
|
|
260
|
+
installFetchMock((call) => {
|
|
261
|
+
calls.push(call);
|
|
262
|
+
return jsonResponse(200, { ok: true });
|
|
263
|
+
});
|
|
264
|
+
const api = new SyncApi();
|
|
265
|
+
const result = await api.cancel('sess-1');
|
|
266
|
+
assert.equal(result.ok, true);
|
|
267
|
+
assert.equal(calls[0]?.url, SYNC_API.cancel);
|
|
268
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
269
|
+
assert.equal(sent['syncSessionId'], 'sess-1');
|
|
270
|
+
});
|
|
271
|
+
|
|
272
|
+
/* ------------------------------------------------ 自动同步端点契约 */
|
|
273
|
+
|
|
274
|
+
test('S-14 api.autosyncStatus():GET /sync/autosync 返回 { git, webdav },按通道取状态', async () => {
|
|
275
|
+
const body = {
|
|
276
|
+
git: {
|
|
277
|
+
enabled: true, interval: '30m', lastRunAt: '2026-08-17T10:00:00.000Z',
|
|
278
|
+
lastRunStatus: 'success', consecutiveFailures: 0, elapsedMs: 60000,
|
|
279
|
+
},
|
|
280
|
+
webdav: { enabled: false, interval: '30m', consecutiveFailures: 0, elapsedMs: -1 },
|
|
281
|
+
};
|
|
282
|
+
let called: FetchCall | null = null;
|
|
283
|
+
installFetchMock((call) => {
|
|
284
|
+
called = call;
|
|
285
|
+
return jsonResponse(200, body);
|
|
286
|
+
});
|
|
287
|
+
const lastCall = (): FetchCall | null => called;
|
|
288
|
+
const api = new SyncApi();
|
|
289
|
+
const result = await api.autosyncStatus('git');
|
|
290
|
+
assert.equal(result.enabled, true);
|
|
291
|
+
assert.equal(result.interval, '30m');
|
|
292
|
+
assert.equal(result.consecutiveFailures, 0);
|
|
293
|
+
assert.equal(result.elapsedMs, 60000);
|
|
294
|
+
assert.equal(lastCall()?.url, SYNC_API.autosync);
|
|
295
|
+
// 全量返回:webdav 通道独立
|
|
296
|
+
const all = await api.autosyncStatusAll();
|
|
297
|
+
assert.equal(all.git.enabled, true);
|
|
298
|
+
assert.equal(all.webdav.enabled, false, 'webdav 通道自动同步独立');
|
|
299
|
+
});
|
|
300
|
+
|
|
301
|
+
test('S-15 api.autosyncUpdate():POST /sync/autosync,请求体携带 transport + enabled/interval', async () => {
|
|
302
|
+
const body = {
|
|
303
|
+
enabled: true, interval: '60m', consecutiveFailures: 0, elapsedMs: -1,
|
|
304
|
+
};
|
|
305
|
+
const calls: FetchCall[] = [];
|
|
306
|
+
installFetchMock((call) => {
|
|
307
|
+
calls.push(call);
|
|
308
|
+
return jsonResponse(200, body);
|
|
309
|
+
});
|
|
310
|
+
const api = new SyncApi();
|
|
311
|
+
const result = await api.autosyncUpdate({ transport: 'webdav', enabled: true, interval: '60m' });
|
|
312
|
+
assert.equal(result.enabled, true);
|
|
313
|
+
assert.equal(result.interval, '60m');
|
|
314
|
+
assert.equal(calls[0]?.url, SYNC_API.autosync);
|
|
315
|
+
assert.equal(calls[0]?.init?.method, 'POST');
|
|
316
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
317
|
+
assert.equal(sent['transport'], 'webdav', '按通道写入 autosync 配置');
|
|
318
|
+
assert.equal(sent['enabled'], true);
|
|
319
|
+
assert.equal(sent['interval'], '60m');
|
|
320
|
+
});
|
|
321
|
+
|
|
322
|
+
test('S-16 api.history():GET /sync/history,解析 { entries }(含 autosync 记录)', async () => {
|
|
323
|
+
const body = {
|
|
324
|
+
entries: [
|
|
325
|
+
{ id: 'sync-1', createdAt: '2026-08-17T10:00:00.000Z', kind: 'apply', sectionCount: 3, reviewCount: 0 },
|
|
326
|
+
{
|
|
327
|
+
id: '2026-08-17T09:00:00.000Z', createdAt: '2026-08-17T09:00:00.000Z', kind: 'autosync',
|
|
328
|
+
autosync: {
|
|
329
|
+
direction: 'both', status: 'skipped', skipReason: 'conflict',
|
|
330
|
+
conflictedSections: ['settings'], failureCountAtRun: 0, createdAt: '2026-08-17T09:00:00.000Z',
|
|
331
|
+
},
|
|
332
|
+
},
|
|
333
|
+
],
|
|
334
|
+
};
|
|
335
|
+
installFetchMock(() => jsonResponse(200, body));
|
|
336
|
+
const api = new SyncApi();
|
|
337
|
+
const result = await api.history();
|
|
338
|
+
assert.equal(result.entries.length, 2);
|
|
339
|
+
assert.equal(result.entries[0]?.kind, 'apply');
|
|
340
|
+
assert.equal(result.entries[1]?.kind, 'autosync');
|
|
341
|
+
assert.deepEqual(result.entries[1]?.autosync?.conflictedSections, ['settings']);
|
|
342
|
+
});
|
|
343
|
+
|
|
344
|
+
/* ------------------------------------------------ WebDAV 通道契约 */
|
|
345
|
+
|
|
346
|
+
test('S-17 WebDAV 密码凭据引用名常量存在', () => {
|
|
347
|
+
assert.equal(SYNC_WEBDAV_CREDENTIAL_REF, 'DSH_CONFIG_MANAGER_SYNC_WEBDAV_PASSWORD');
|
|
348
|
+
});
|
|
349
|
+
|
|
350
|
+
test('S-18 api.status():webdav 通道 → 解析 webdav 配置状态(url/username/usernameConfigured/passwordConfigured,无 secret 值)', async () => {
|
|
351
|
+
const body = {
|
|
352
|
+
ok: true, configured: true, credentialConfigured: false, credentialWritable: true,
|
|
353
|
+
webdav: {
|
|
354
|
+
url: 'https://dav.example.com/dav/config', username: 'alice', usernameConfigured: true, passwordConfigured: true,
|
|
355
|
+
},
|
|
356
|
+
lastSyncAt: '2026-08-16T10:30:00.000Z', sectionCount: 2,
|
|
357
|
+
transport: { type: 'webdav', ref: 'https://dav.example.com/dav/config' },
|
|
358
|
+
};
|
|
359
|
+
let called: FetchCall | null = null;
|
|
360
|
+
installFetchMock((call) => {
|
|
361
|
+
called = call;
|
|
362
|
+
return jsonResponse(200, body);
|
|
363
|
+
});
|
|
364
|
+
const lastCall = (): FetchCall | null => called;
|
|
365
|
+
const api = new SyncApi();
|
|
366
|
+
const result = await api.status();
|
|
367
|
+
assert.equal(result.webdav?.url, 'https://dav.example.com/dav/config');
|
|
368
|
+
assert.equal(result.webdav?.username, 'alice', 'status 可回传 username 值(非敏感,供表单回填)');
|
|
369
|
+
assert.equal(result.webdav?.usernameConfigured, true);
|
|
370
|
+
assert.equal(result.webdav?.passwordConfigured, true);
|
|
371
|
+
assert.equal('password' in (result.webdav ?? {}), false, 'status 契约不得携带 webdav 密码值');
|
|
372
|
+
assert.equal(lastCall()?.url, SYNC_API.status);
|
|
373
|
+
});
|
|
374
|
+
|
|
375
|
+
test('S-19 api.push():transport=webdav → 请求体携带顶层扁平 url/username/password(不携带 git 字段)', async () => {
|
|
376
|
+
const calls: FetchCall[] = [];
|
|
377
|
+
installFetchMock((call) => {
|
|
378
|
+
calls.push(call);
|
|
379
|
+
return jsonResponse(200, { ok: true, snapshotId: 'sync-w1', sections: [], warnings: [] });
|
|
380
|
+
});
|
|
381
|
+
const api = new SyncApi();
|
|
382
|
+
const result = await api.push({
|
|
383
|
+
transport: 'webdav',
|
|
384
|
+
url: 'https://dav.example.com/dav/config', username: 'alice', password: 'secret-pass',
|
|
385
|
+
});
|
|
386
|
+
assert.equal(result.ok, true);
|
|
387
|
+
assert.equal(calls.length, 1);
|
|
388
|
+
assert.equal(calls[0]?.url, SYNC_API.push);
|
|
389
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
390
|
+
assert.equal(sent['transport'], 'webdav');
|
|
391
|
+
assert.equal(sent['url'], 'https://dav.example.com/dav/config', 'webdav url 应处于请求体顶层(flat)');
|
|
392
|
+
assert.equal(sent['username'], 'alice', 'webdav username 应处于请求体顶层(flat)');
|
|
393
|
+
assert.equal(sent['password'], 'secret-pass', 'webdav password 应处于请求体顶层(flat)');
|
|
394
|
+
assert.equal(sent['webdav'], undefined, '不应再嵌套 webdav 对象');
|
|
395
|
+
assert.equal(sent['repoUrl'], undefined, 'webdav 通道不应携带 git repoUrl');
|
|
396
|
+
});
|
|
397
|
+
|
|
398
|
+
test('S-20 api.pull():transport=webdav 请求体透传扁平 webdav 配置', async () => {
|
|
399
|
+
const calls: FetchCall[] = [];
|
|
400
|
+
installFetchMock((call) => {
|
|
401
|
+
calls.push(call);
|
|
402
|
+
return jsonResponse(200, { ok: true, snapshotId: 'sync-w1', changes: [], needsReview: false });
|
|
403
|
+
});
|
|
404
|
+
const api = new SyncApi();
|
|
405
|
+
await api.pull({ transport: 'webdav', url: 'https://dav.example.com/dav/config', username: 'alice', password: 'secret-pass' });
|
|
406
|
+
assert.equal(calls[0]?.url, SYNC_API.pull);
|
|
407
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
408
|
+
assert.equal(sent['transport'], 'webdav');
|
|
409
|
+
assert.equal(sent['url'], 'https://dav.example.com/dav/config');
|
|
410
|
+
assert.equal(sent['webdav'], undefined, '不应再嵌套 webdav 对象');
|
|
411
|
+
});
|
|
412
|
+
|
|
413
|
+
test('S-21 git 通道缺省:不带 transport → 请求体仍只含 git 字段(向后兼容)', async () => {
|
|
414
|
+
const calls: FetchCall[] = [];
|
|
415
|
+
installFetchMock((call) => {
|
|
416
|
+
calls.push(call);
|
|
417
|
+
return jsonResponse(200, { ok: true, snapshotId: 'sync-1', sections: [], warnings: [] });
|
|
418
|
+
});
|
|
419
|
+
const api = new SyncApi();
|
|
420
|
+
await api.push({ repoUrl: 'https://github.com/u/r.git', token: 't' });
|
|
421
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
422
|
+
assert.equal(sent['transport'], undefined, '缺省不声明 transport(Host 视为 git)');
|
|
423
|
+
assert.equal(sent['repoUrl'], 'https://github.com/u/r.git');
|
|
424
|
+
assert.equal(sent['webdav'], undefined);
|
|
425
|
+
});
|
|
426
|
+
|
|
427
|
+
test('S-22 api.push():高级(自定义导出)模式 → 请求体携带 sections;缺省不携带', async () => {
|
|
428
|
+
const calls: FetchCall[] = [];
|
|
429
|
+
installFetchMock((call) => {
|
|
430
|
+
calls.push(call);
|
|
431
|
+
return jsonResponse(200, { ok: true, snapshotId: 'sync-sel', sections: ['settings'], warnings: [] });
|
|
432
|
+
});
|
|
433
|
+
const api = new SyncApi();
|
|
434
|
+
// 高级模式:传勾选分区
|
|
435
|
+
await api.push({ repoUrl: 'https://github.com/u/r.git', sections: ['settings', 'skills'] });
|
|
436
|
+
assert.equal(calls.length, 1);
|
|
437
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
438
|
+
assert.deepEqual(sent['sections'], ['settings', 'skills'], '高级模式应携带 sections');
|
|
439
|
+
|
|
440
|
+
// 默认模式:不传 sections(undefined → 全量推荐分区)
|
|
441
|
+
const calls2: FetchCall[] = [];
|
|
442
|
+
installFetchMock((call) => {
|
|
443
|
+
calls2.push(call);
|
|
444
|
+
return jsonResponse(200, { ok: true, snapshotId: 'sync-def', sections: ['settings'], warnings: [] });
|
|
445
|
+
});
|
|
446
|
+
await api.push({ repoUrl: 'https://github.com/u/r.git' });
|
|
447
|
+
const sent2 = JSON.parse(String(calls2[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
448
|
+
assert.equal(sent2['sections'], undefined, '默认模式不应携带 sections');
|
|
449
|
+
});
|
|
450
|
+
|
|
451
|
+
test('S-23 api.status():解析 syncSections(可同步分区目录,无 secret 值)', async () => {
|
|
452
|
+
const body = {
|
|
453
|
+
ok: true, configured: true, credentialConfigured: true, credentialWritable: true, sectionCount: 4,
|
|
454
|
+
syncSections: [
|
|
455
|
+
{ id: 'settings', displayName: 'Settings', defaultIncluded: true },
|
|
456
|
+
{ id: 'skills', displayName: 'Skills', defaultIncluded: true },
|
|
457
|
+
],
|
|
458
|
+
};
|
|
459
|
+
let called: FetchCall | null = null;
|
|
460
|
+
installFetchMock((call) => {
|
|
461
|
+
called = call;
|
|
462
|
+
return jsonResponse(200, body);
|
|
463
|
+
});
|
|
464
|
+
const lastCall = (): FetchCall | null => called;
|
|
465
|
+
const api = new SyncApi();
|
|
466
|
+
const result = await api.status();
|
|
467
|
+
assert.equal(result.syncSections?.length, 2);
|
|
468
|
+
assert.equal(result.syncSections?.[0]?.id, 'settings');
|
|
469
|
+
assert.equal(lastCall()?.url, SYNC_API.status);
|
|
470
|
+
});
|
|
471
|
+
|
|
472
|
+
test('S-24 api.status():解析 syncSelection(持久化分区选择,UI 回填用)', async () => {
|
|
473
|
+
const body = {
|
|
474
|
+
ok: true, configured: true, credentialConfigured: true, credentialWritable: true, sectionCount: 2,
|
|
475
|
+
syncSelection: { mode: 'advanced', sections: ['settings', 'skills'] },
|
|
476
|
+
};
|
|
477
|
+
let called: FetchCall | null = null;
|
|
478
|
+
installFetchMock((call) => {
|
|
479
|
+
called = call;
|
|
480
|
+
return jsonResponse(200, body);
|
|
481
|
+
});
|
|
482
|
+
const lastCall = (): FetchCall | null => called;
|
|
483
|
+
const api = new SyncApi();
|
|
484
|
+
const result = await api.status();
|
|
485
|
+
assert.equal(result.syncSelection?.mode, 'advanced');
|
|
486
|
+
assert.deepEqual(result.syncSelection?.sections, ['settings', 'skills']);
|
|
487
|
+
assert.equal(lastCall()?.url, SYNC_API.status);
|
|
488
|
+
});
|
|
489
|
+
|
|
490
|
+
test('S-25 api.saveSelection():POST /sync/selection 携带 transport + mode + sections(持久化到 Host)', async () => {
|
|
491
|
+
const calls: FetchCall[] = [];
|
|
492
|
+
installFetchMock((call) => {
|
|
493
|
+
calls.push(call);
|
|
494
|
+
return jsonResponse(200, { ok: true, transport: 'webdav', mode: 'advanced', sections: ['settings', 'skills'] });
|
|
495
|
+
});
|
|
496
|
+
const api = new SyncApi();
|
|
497
|
+
const result = await api.saveSelection({ transport: 'webdav', mode: 'advanced', sections: ['settings', 'skills'] });
|
|
498
|
+
assert.equal(result.mode, 'advanced');
|
|
499
|
+
assert.equal(calls.length, 1);
|
|
500
|
+
assert.equal(calls[0]?.url, SYNC_API.selection);
|
|
501
|
+
assert.equal(calls[0]?.init?.method, 'POST');
|
|
502
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
503
|
+
assert.equal(sent['transport'], 'webdav', '按通道写入分区选择');
|
|
504
|
+
assert.equal(sent['mode'], 'advanced');
|
|
505
|
+
assert.deepEqual(sent['sections'], ['settings', 'skills']);
|
|
506
|
+
});
|
|
507
|
+
|
|
508
|
+
test('S-26 api.push():明文同步 → 请求体只带通道与分区,不带任何加密字段', async () => {
|
|
509
|
+
const calls: FetchCall[] = [];
|
|
510
|
+
installFetchMock((call) => {
|
|
511
|
+
calls.push(call);
|
|
512
|
+
return jsonResponse(200, { ok: true, snapshotId: 'sync-plain', sections: ['settings'], warnings: [] });
|
|
513
|
+
});
|
|
514
|
+
const api = new SyncApi();
|
|
515
|
+
await api.push({ repoUrl: 'https://github.com/u/r.git', sections: ['settings'] });
|
|
516
|
+
assert.equal(calls.length, 1);
|
|
517
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
518
|
+
assert.deepEqual(sent['sections'], ['settings']);
|
|
519
|
+
assert.equal('encrypt' in sent, false, '明文同步不携带 encrypt');
|
|
520
|
+
assert.equal('includeSecrets' in sent, false);
|
|
521
|
+
assert.equal('encryptPassword' in sent, false);
|
|
522
|
+
});
|
|
523
|
+
|
|
524
|
+
test('S-27 api.pull():请求体只带通道与 snapshotId(无解密密码字段)', async () => {
|
|
525
|
+
const calls: FetchCall[] = [];
|
|
526
|
+
installFetchMock((call) => {
|
|
527
|
+
calls.push(call);
|
|
528
|
+
return jsonResponse(200, { ok: true, snapshotId: 'sync-1', changes: [], needsReview: false });
|
|
529
|
+
});
|
|
530
|
+
const api = new SyncApi();
|
|
531
|
+
await api.pull({ repoUrl: 'https://github.com/u/r.git', snapshotId: 'sync-1' });
|
|
532
|
+
assert.equal(calls[0]?.url, SYNC_API.pull);
|
|
533
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
534
|
+
assert.equal(sent['snapshotId'], 'sync-1');
|
|
535
|
+
assert.equal('decryptPassword' in sent, false, '明文同步不携带 decryptPassword');
|
|
536
|
+
});
|
|
537
|
+
|
|
538
|
+
test('S-28b api.status():syncSelectionByChannel / autosyncByChannel 按通道独立解析(子 tab UI 回填)', async () => {
|
|
539
|
+
const body = {
|
|
540
|
+
ok: true, configured: true, credentialConfigured: true, credentialWritable: true, sectionCount: 2,
|
|
541
|
+
syncSelectionByChannel: {
|
|
542
|
+
git: { mode: 'default', sections: [] },
|
|
543
|
+
webdav: { mode: 'advanced', sections: ['settings'] },
|
|
544
|
+
},
|
|
545
|
+
autosyncByChannel: {
|
|
546
|
+
git: { enabled: true, interval: '30m', consecutiveFailures: 0, elapsedMs: 60000 },
|
|
547
|
+
webdav: { enabled: false, interval: '5m', consecutiveFailures: 0, elapsedMs: -1 },
|
|
548
|
+
},
|
|
549
|
+
};
|
|
550
|
+
installFetchMock(() => jsonResponse(200, body));
|
|
551
|
+
const api = new SyncApi();
|
|
552
|
+
const result = await api.status();
|
|
553
|
+
assert.equal(result.syncSelectionByChannel?.git.mode, 'default', 'git 通道选择独立');
|
|
554
|
+
assert.equal(result.syncSelectionByChannel?.webdav.mode, 'advanced');
|
|
555
|
+
assert.equal(result.autosyncByChannel?.git.enabled, true, 'git 通道自动同步独立');
|
|
556
|
+
assert.equal(result.autosyncByChannel?.webdav.enabled, false);
|
|
557
|
+
assert.equal(result.autosyncByChannel?.webdav.interval, '5m');
|
|
558
|
+
});
|
|
559
|
+
|
|
560
|
+
test('S-29 api.saveUiPrefs():POST /sync/ui-prefs 携带 lastSyncChannel(磁盘持久化)', async () => {
|
|
561
|
+
const calls: FetchCall[] = [];
|
|
562
|
+
installFetchMock((call) => {
|
|
563
|
+
calls.push(call);
|
|
564
|
+
return jsonResponse(200, { ok: true, lastSyncChannel: 'webdav' });
|
|
565
|
+
});
|
|
566
|
+
const api = new SyncApi();
|
|
567
|
+
const result = await api.saveUiPrefs({ lastSyncChannel: 'webdav' });
|
|
568
|
+
assert.equal(result.lastSyncChannel, 'webdav');
|
|
569
|
+
assert.equal(calls.length, 1);
|
|
570
|
+
assert.equal(calls[0]?.url, SYNC_API.uiPrefs);
|
|
571
|
+
assert.equal(calls[0]?.init?.method, 'POST');
|
|
572
|
+
const sent = JSON.parse(String(calls[0]?.init?.body ?? '{}')) as Record<string, unknown>;
|
|
573
|
+
assert.equal(sent['lastSyncChannel'], 'webdav');
|
|
574
|
+
});
|
|
575
|
+
|
|
576
|
+
test('S-30 api.status():lastSyncChannel 回填(磁盘 ui-prefs;UI 通道回填权威来源)', async () => {
|
|
577
|
+
const body = {
|
|
578
|
+
ok: true, configured: true, credentialConfigured: true, credentialWritable: true, sectionCount: 2,
|
|
579
|
+
lastSyncChannel: 'webdav',
|
|
580
|
+
};
|
|
581
|
+
installFetchMock(() => jsonResponse(200, body));
|
|
582
|
+
const api = new SyncApi();
|
|
583
|
+
const result = await api.status();
|
|
584
|
+
assert.equal(result.lastSyncChannel, 'webdav');
|
|
585
|
+
});
|