@cosmicdrift/kumiko-bundled-features 1.0.0 → 2.0.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/package.json +41 -7
- package/src/__tests__/access-invalidation-consumer.integration.test.ts +279 -0
- package/src/__tests__/access-invalidation-stream.integration.test.ts +217 -0
- package/src/admin-shell/__tests__/admin-shell-security.integration.test.ts +200 -0
- package/src/admin-shell/__tests__/admin-shell.boot.test.ts +147 -0
- package/src/admin-shell/__tests__/overview-allowlist.test.ts +43 -0
- package/src/admin-shell/__tests__/overview-screens.boot.test.ts +35 -0
- package/src/admin-shell/constants.ts +11 -0
- package/src/admin-shell/feature.ts +135 -0
- package/src/admin-shell/i18n.ts +36 -0
- package/src/admin-shell/index.ts +17 -0
- package/src/admin-shell/overview-allowlist.ts +37 -0
- package/src/admin-shell/web/client-plugin.tsx +26 -0
- package/src/admin-shell/web/i18n.ts +16 -0
- package/src/admin-shell/web/index.ts +2 -0
- package/src/admin-shell/web/overview-layout.tsx +69 -0
- package/src/admin-shell/web/overview-query.ts +15 -0
- package/src/admin-shell/web/platform-overview-screen.tsx +90 -0
- package/src/admin-shell/web/tenant-overview-screen.tsx +90 -0
- package/src/agent-tools/__tests__/tool-catalog.test.ts +179 -0
- package/src/agent-tools/__tests__/tool-dispatch.integration.test.ts +100 -0
- package/src/agent-tools/__tests__/tool-dispatch.test.ts +126 -0
- package/src/agent-tools/index.ts +9 -0
- package/src/agent-tools/tool-catalog.ts +130 -0
- package/src/agent-tools/tool-dispatch.ts +82 -0
- package/src/agent-tools/types.ts +38 -0
- package/src/audit/__tests__/audit-screens.boot.test.ts +51 -0
- package/src/audit/__tests__/audit-security.integration.test.ts +201 -0
- package/src/audit/__tests__/audit.integration.test.ts +50 -25
- package/src/audit/constants.ts +9 -2
- package/src/audit/feature.ts +33 -1
- package/src/audit/handlers/details.query.ts +47 -0
- package/src/audit/handlers/list.query.ts +3 -2
- package/src/audit/i18n.ts +31 -0
- package/src/audit/web/audit-log-detail-screen.tsx +131 -0
- package/src/audit/web/audit-log-screen.tsx +250 -0
- package/src/audit/web/client-plugin.tsx +22 -0
- package/src/audit/web/i18n.ts +12 -0
- package/src/audit/web/index.ts +5 -0
- package/src/auth-email-password/__tests__/account-lockout-no-redis.integration.test.ts +4 -4
- package/src/auth-email-password/__tests__/account-lockout.integration.test.ts +4 -4
- package/src/auth-email-password/__tests__/account-unlock.integration.test.ts +283 -0
- package/src/auth-email-password/__tests__/auth-claims.integration.test.ts +10 -11
- package/src/auth-email-password/__tests__/auth-user-row.test.ts +36 -0
- package/src/auth-email-password/__tests__/auth.integration.test.ts +33 -6
- package/src/auth-email-password/__tests__/email-verification.integration.test.ts +9 -6
- package/src/auth-email-password/__tests__/feature-options.test.ts +33 -0
- package/src/auth-email-password/__tests__/identity-v3-login.integration.test.ts +3 -3
- package/src/auth-email-password/__tests__/invite-flow-kms.integration.test.ts +283 -0
- package/src/auth-email-password/__tests__/invite-flow.integration.test.ts +35 -1
- package/src/auth-email-password/__tests__/login-mfa-setup-required.integration.test.ts +129 -0
- package/src/auth-email-password/__tests__/multi-roles.integration.test.ts +1 -1
- package/src/auth-email-password/__tests__/password-policy.test.ts +15 -0
- package/src/auth-email-password/__tests__/password-reset.integration.test.ts +19 -6
- package/src/auth-email-password/__tests__/public-routes-rate-limit.integration.test.ts +3 -3
- package/src/auth-email-password/__tests__/seed-admin.integration.test.ts +1 -1
- package/src/auth-email-password/__tests__/self-registration-toggle.integration.test.ts +264 -0
- package/src/auth-email-password/__tests__/session-callbacks.integration.test.ts +20 -4
- package/src/auth-email-password/__tests__/session-strict-mode.integration.test.ts +7 -14
- package/src/auth-email-password/__tests__/signup-flow.integration.test.ts +91 -0
- package/src/auth-email-password/constants.ts +25 -0
- package/src/auth-email-password/email-templates.ts +32 -0
- package/src/auth-email-password/errors.ts +9 -0
- package/src/auth-email-password/feature.ts +59 -11
- package/src/auth-email-password/handlers/change-password.write.ts +14 -13
- package/src/auth-email-password/handlers/confirm-account-unlock.write.ts +59 -0
- package/src/auth-email-password/handlers/confirm-token-flow.ts +34 -105
- package/src/auth-email-password/handlers/invite-accept-with-login.write.ts +12 -5
- package/src/auth-email-password/handlers/invite-accept.write.ts +9 -2
- package/src/auth-email-password/handlers/invite-create.write.ts +2 -2
- package/src/auth-email-password/handlers/invite-signup-complete.write.ts +12 -4
- package/src/auth-email-password/handlers/login.write.ts +86 -16
- package/src/auth-email-password/handlers/logout.write.ts +4 -2
- package/src/auth-email-password/handlers/request-account-unlock.write.ts +38 -0
- package/src/auth-email-password/handlers/reset-password.write.ts +3 -2
- package/src/auth-email-password/handlers/self-registration-status.query.ts +23 -0
- package/src/auth-email-password/handlers/signup-confirm.write.ts +19 -11
- package/src/auth-email-password/handlers/signup-request.write.ts +22 -0
- package/src/auth-email-password/handlers/token-request-handler.ts +4 -2
- package/src/auth-email-password/i18n.ts +52 -0
- package/src/auth-email-password/index.ts +13 -2
- package/src/auth-email-password/lockout-store.ts +10 -5
- package/src/auth-email-password/password-policy.ts +2108 -0
- package/src/auth-email-password/seeding.ts +55 -27
- package/src/auth-email-password/self-registration-toggle.ts +25 -0
- package/src/auth-email-password/signed-token.ts +1 -0
- package/src/auth-email-password/unlock-token.ts +28 -0
- package/src/auth-email-password/web/__tests__/auth-client.test.ts +542 -0
- package/src/auth-email-password/web/__tests__/auth-form-logic.test.ts +44 -0
- package/src/auth-email-password/web/__tests__/auth-gate.test.tsx +194 -6
- package/src/auth-email-password/web/__tests__/client-plugin.test.tsx +34 -0
- package/src/auth-email-password/web/__tests__/confirm-account-unlock-screen.test.tsx +64 -0
- package/src/auth-email-password/web/__tests__/forgot-password-screen.test.tsx +5 -1
- package/src/auth-email-password/web/__tests__/invite-accept-screen.test.tsx +129 -2
- package/src/auth-email-password/web/__tests__/login-screen.test.tsx +149 -5
- package/src/auth-email-password/web/__tests__/request-account-unlock-screen.test.tsx +137 -0
- package/src/auth-email-password/web/__tests__/reset-password-screen.test.tsx +5 -1
- package/src/auth-email-password/web/__tests__/signup-complete-screen.test.tsx +134 -0
- package/src/auth-email-password/web/__tests__/signup-screen.test.tsx +93 -0
- package/src/auth-email-password/web/__tests__/test-utils.tsx +12 -2
- package/src/auth-email-password/web/__tests__/use-url-token.test.tsx +29 -0
- package/src/auth-email-password/web/__tests__/verify-email-screen.test.tsx +5 -1
- package/src/auth-email-password/web/auth-client.ts +96 -18
- package/src/auth-email-password/web/auth-form-logic.ts +30 -0
- package/src/auth-email-password/web/auth-form-primitives.tsx +22 -20
- package/src/auth-email-password/web/auth-gate.tsx +140 -19
- package/src/auth-email-password/web/client-plugin.ts +24 -2
- package/src/auth-email-password/web/confirm-account-unlock-screen.tsx +95 -0
- package/src/auth-email-password/web/forgot-password-screen.tsx +6 -6
- package/src/auth-email-password/web/index.ts +16 -4
- package/src/auth-email-password/web/invite-accept-screen.tsx +5 -5
- package/src/auth-email-password/web/login-screen.tsx +78 -22
- package/src/auth-email-password/web/request-account-unlock-screen.tsx +112 -0
- package/src/auth-email-password/web/reset-password-screen.tsx +15 -18
- package/src/auth-email-password/web/session.tsx +11 -6
- package/src/auth-email-password/web/signup-complete-screen.tsx +13 -15
- package/src/auth-email-password/web/signup-screen.tsx +8 -10
- package/src/auth-email-password/web/use-shell-user.ts +5 -2
- package/src/auth-email-password/web/user-menu.tsx +3 -1
- package/src/auth-email-password/web/verify-email-screen.tsx +10 -14
- package/src/auth-foundation/__tests__/feature.test.ts +46 -0
- package/src/auth-foundation/__tests__/session-store.test.ts +77 -0
- package/src/auth-foundation/__tests__/tenant-providers.test.ts +160 -0
- package/src/auth-foundation/__tests__/token-verifier.test.ts +150 -0
- package/src/auth-foundation/boot-checks.ts +150 -0
- package/src/auth-foundation/feature.ts +157 -0
- package/src/auth-foundation/index.ts +37 -0
- package/src/auth-foundation/resolve-anonymous-access.ts +62 -0
- package/src/auth-foundation/types.ts +170 -0
- package/src/auth-mfa/__tests__/base32.test.ts +28 -0
- package/src/auth-mfa/__tests__/disable-and-regenerate.integration.test.ts +265 -0
- package/src/auth-mfa/__tests__/enable-confirm-preauth.integration.test.ts +321 -0
- package/src/auth-mfa/__tests__/enable-flow.integration.test.ts +322 -0
- package/src/auth-mfa/__tests__/enable-start-preauth.integration.test.ts +237 -0
- package/src/auth-mfa/__tests__/errors-i18n-parity.test.ts +39 -0
- package/src/auth-mfa/__tests__/mfa-preauth-setup-token.test.ts +113 -0
- package/src/auth-mfa/__tests__/no-redis.integration.test.ts +209 -0
- package/src/auth-mfa/__tests__/pii-subject-encryption.integration.test.ts +139 -0
- package/src/auth-mfa/__tests__/reencrypt-job.integration.test.ts +247 -0
- package/src/auth-mfa/__tests__/session-auto-revoke.integration.test.ts +169 -0
- package/src/auth-mfa/__tests__/totp.test.ts +131 -0
- package/src/auth-mfa/__tests__/verify.integration.test.ts +319 -0
- package/src/auth-mfa/base32.ts +51 -0
- package/src/auth-mfa/config.ts +26 -0
- package/src/auth-mfa/constants.ts +45 -0
- package/src/auth-mfa/db/queries.ts +45 -0
- package/src/auth-mfa/errors.ts +66 -0
- package/src/auth-mfa/feature.ts +170 -0
- package/src/auth-mfa/handlers/disable.write.ts +67 -0
- package/src/auth-mfa/handlers/enable-confirm-preauth.write.ts +200 -0
- package/src/auth-mfa/handlers/enable-confirm.write.ts +106 -0
- package/src/auth-mfa/handlers/enable-start-preauth.write.ts +87 -0
- package/src/auth-mfa/handlers/enable-start.write.ts +66 -0
- package/src/auth-mfa/handlers/reencrypt.job.ts +234 -0
- package/src/auth-mfa/handlers/regenerate-recovery.write.ts +77 -0
- package/src/auth-mfa/handlers/status.query.ts +23 -0
- package/src/auth-mfa/handlers/verify.write.ts +179 -0
- package/src/auth-mfa/i18n.ts +12 -0
- package/src/auth-mfa/index.ts +19 -0
- package/src/auth-mfa/mfa-challenge-token.ts +90 -0
- package/src/auth-mfa/mfa-preauth-setup-token.ts +86 -0
- package/src/auth-mfa/mfa-setup-token.ts +96 -0
- package/src/auth-mfa/mfa-status-checker.ts +84 -0
- package/src/auth-mfa/mfa-verify-attempts.ts +90 -0
- package/src/auth-mfa/otpauth-uri.ts +21 -0
- package/src/auth-mfa/recovery-codes.ts +54 -0
- package/src/auth-mfa/schema/user-mfa.ts +60 -0
- package/src/auth-mfa/testing.ts +5 -0
- package/src/auth-mfa/totp.ts +67 -0
- package/src/auth-mfa/verify-factor.ts +58 -0
- package/src/auth-mfa/web/__tests__/mfa-client.test.ts +265 -0
- package/src/auth-mfa/web/__tests__/mfa-enable-screen.test.tsx +182 -0
- package/src/auth-mfa/web/__tests__/mfa-setup-preauth-screen.test.tsx +379 -0
- package/src/auth-mfa/web/__tests__/mfa-verify-screen.test.tsx +104 -0
- package/src/auth-mfa/web/client-plugin.ts +37 -0
- package/src/auth-mfa/web/i18n.ts +136 -0
- package/src/auth-mfa/web/index.ts +27 -0
- package/src/auth-mfa/web/mfa-client.ts +184 -0
- package/src/auth-mfa/web/mfa-disable-dialog.tsx +69 -0
- package/src/auth-mfa/web/mfa-enable-screen.tsx +228 -0
- package/src/auth-mfa/web/mfa-recovery-codes-reveal.tsx +53 -0
- package/src/auth-mfa/web/mfa-regenerate-recovery-dialog.tsx +68 -0
- package/src/auth-mfa/web/mfa-setup-preauth-screen.tsx +267 -0
- package/src/auth-mfa/web/mfa-verify-screen.tsx +117 -0
- package/src/auth-mfa/web/qrcode-browser.d.ts +12 -0
- package/src/auth-mfa-user-data/__tests__/hooks.integration.test.ts +134 -0
- package/src/auth-mfa-user-data/hooks.ts +53 -0
- package/src/auth-mfa-user-data/index.ts +21 -0
- package/src/billing-foundation/__tests__/billing-foundation.integration.test.ts +206 -2
- package/src/billing-foundation/__tests__/subscription-provider-contract.ts +93 -0
- package/src/billing-foundation/entities.ts +28 -4
- package/src/billing-foundation/events.ts +6 -2
- package/src/billing-foundation/feature.ts +9 -1
- package/src/billing-foundation/get-subscription-for-tenant.ts +16 -5
- package/src/billing-foundation/handlers/create-portal-session.write.ts +17 -1
- package/src/billing-foundation/handlers/list-subscriptions.query.ts +15 -1
- package/src/billing-foundation/handlers/process-event.write.ts +39 -3
- package/src/billing-foundation/tenant-destroy-hook.ts +46 -0
- package/src/cap-counter/__tests__/cap-list.boot.test.ts +27 -0
- package/src/cap-counter/__tests__/cap-list.security.integration.test.ts +53 -0
- package/src/cap-counter/__tests__/entity-ddl.test.ts +15 -0
- package/src/cap-counter/__tests__/with-cap-enforcement.integration.test.ts +8 -5
- package/src/cap-counter/constants.ts +2 -0
- package/src/cap-counter/enforce-cap.ts +15 -18
- package/src/cap-counter/entity.ts +3 -3
- package/src/cap-counter/feature.ts +28 -1
- package/src/cap-counter/i18n.ts +12 -0
- package/src/cap-counter/with-cap-enforcement.ts +2 -2
- package/src/channel-email/__tests__/pii-guard.test.ts +56 -0
- package/src/channel-email/email-channel.ts +2 -1
- package/src/channel-email/index.ts +1 -0
- package/src/channel-email/pii-guard.ts +39 -0
- package/src/compliance-profiles/__tests__/profile-picker.boot.test.ts +28 -0
- package/src/compliance-profiles/__tests__/profile-picker.security.integration.test.ts +91 -0
- package/src/compliance-profiles/constants.ts +15 -0
- package/src/compliance-profiles/feature.ts +22 -1
- package/src/compliance-profiles/handlers/set-profile.write.ts +2 -2
- package/src/compliance-profiles/i18n.ts +6 -0
- package/src/compliance-profiles/index.ts +6 -0
- package/src/compliance-profiles/web/client-plugin.tsx +22 -0
- package/src/compliance-profiles/web/compliance-profile-screen.tsx +152 -0
- package/src/compliance-profiles/web/i18n.ts +25 -0
- package/src/compliance-profiles/web/index.ts +6 -0
- package/src/config/__tests__/app-overrides.test.ts +11 -0
- package/src/config/__tests__/backing-secrets.integration.test.ts +22 -0
- package/src/config/__tests__/cascade.integration.test.ts +35 -0
- package/src/config/__tests__/config.integration.test.ts +71 -10
- package/src/config/__tests__/deserialize-value.test.ts +5 -8
- package/src/config/__tests__/inherited-redaction.integration.test.ts +4 -3
- package/src/config/__tests__/pii-encrypted.integration.test.ts +179 -0
- package/src/config/__tests__/reencrypt-job-concurrent-write-race.integration.test.ts +234 -0
- package/src/config/__tests__/reencrypt-job-kek-rotation.integration.test.ts +243 -0
- package/src/config/__tests__/write-helpers.test.ts +23 -0
- package/src/config/db/queries/resolver.ts +3 -3
- package/src/config/feature.ts +15 -8
- package/src/config/handlers/cascade.query.ts +2 -1
- package/src/config/handlers/reencrypt.job.ts +209 -0
- package/src/config/handlers/set.write.ts +55 -3
- package/src/config/handlers/values.query.ts +2 -1
- package/src/config/i18n.ts +9 -0
- package/src/config/index.ts +5 -4
- package/src/config/resolver.ts +75 -61
- package/src/config/table.ts +1 -1
- package/src/config/write-helpers.ts +22 -0
- package/src/crypto-shredding/__tests__/forget-subject.integration.test.ts +148 -0
- package/src/crypto-shredding/constants.ts +5 -0
- package/src/crypto-shredding/feature.ts +18 -0
- package/src/crypto-shredding/handlers/forget-subject.write.ts +91 -0
- package/src/crypto-shredding/index.ts +11 -0
- package/src/custom-fields/__tests__/audit-integration.integration.test.ts +1 -1
- package/src/custom-fields/__tests__/custom-fields.integration.test.ts +92 -53
- package/src/custom-fields/__tests__/field-access.integration.test.ts +25 -0
- package/src/custom-fields/__tests__/parse-serialized-field.test.ts +11 -3
- package/src/custom-fields/__tests__/retention.integration.test.ts +40 -0
- package/src/custom-fields/__tests__/user-data-rights.integration.test.ts +26 -79
- package/src/custom-fields/constants.ts +1 -0
- package/src/custom-fields/db/queries/user-data-rights.ts +0 -20
- package/src/custom-fields/entity.ts +1 -1
- package/src/custom-fields/events.ts +4 -3
- package/src/custom-fields/feature.ts +8 -0
- package/src/custom-fields/handlers/delete-system-field.write.ts +2 -1
- package/src/custom-fields/handlers/delete-tenant-field.write.ts +2 -1
- package/src/custom-fields/handlers/set-custom-field.write.ts +3 -44
- package/src/custom-fields/handlers/update-tenant-field.write.ts +0 -17
- package/src/custom-fields/lib/field-access.ts +8 -1
- package/src/custom-fields/lib/parse-serialized-field.ts +12 -4
- package/src/custom-fields/lib/value-schema.ts +1 -1
- package/src/custom-fields/run-retention.ts +9 -1
- package/src/custom-fields/schemas.ts +9 -9
- package/src/custom-fields/wire-for-entity.ts +110 -78
- package/src/custom-fields/wire-user-data-rights.ts +5 -54
- package/src/data-retention/__tests__/parse-override.test.ts +14 -13
- package/src/data-retention/__tests__/retention-cleanup.integration.test.ts +145 -8
- package/src/data-retention/feature.ts +3 -3
- package/src/data-retention/run-retention-cleanup.ts +102 -19
- package/src/delivery/__tests__/delivery-pii-kms.integration.test.ts +171 -0
- package/src/delivery/__tests__/delivery-screens.boot.test.ts +27 -0
- package/src/delivery/__tests__/delivery-security.integration.test.ts +106 -0
- package/src/delivery/constants.ts +13 -51
- package/src/delivery/feature.ts +29 -5
- package/src/delivery/handlers/log.query.ts +28 -7
- package/src/delivery/i18n.ts +6 -0
- package/src/delivery/index.ts +6 -1
- package/src/delivery/public-names.ts +36 -0
- package/src/delivery/tables.ts +3 -3
- package/src/delivery/web/client-plugin.tsx +20 -0
- package/src/delivery/web/delivery-log-screen.tsx +103 -0
- package/src/delivery/web/i18n.ts +25 -0
- package/src/delivery/web/index.ts +3 -0
- package/src/document-ingest-foundation/__tests__/feature.integration.test.ts +147 -0
- package/src/document-ingest-foundation/__tests__/feature.test.ts +105 -0
- package/src/document-ingest-foundation/__tests__/pages.test.ts +37 -0
- package/src/document-ingest-foundation/entity.ts +43 -0
- package/src/document-ingest-foundation/events.ts +25 -0
- package/src/document-ingest-foundation/feature.ts +126 -0
- package/src/document-ingest-foundation/index.ts +12 -0
- package/src/document-ingest-foundation/pages.ts +34 -0
- package/src/feature-toggles/__tests__/compose-tier-resolver.test.ts +304 -0
- package/src/feature-toggles/__tests__/feature-toggles.integration.test.ts +7 -6
- package/src/feature-toggles/__tests__/toggle-admin.boot.test.ts +31 -0
- package/src/feature-toggles/__tests__/toggle-admin.security.integration.test.ts +69 -0
- package/src/feature-toggles/compose-tier-resolver.ts +134 -0
- package/src/feature-toggles/constants.ts +14 -0
- package/src/feature-toggles/feature.ts +23 -3
- package/src/feature-toggles/global-feature-state-table.ts +20 -1
- package/src/feature-toggles/handlers/list.query.ts +1 -1
- package/src/feature-toggles/handlers/registered.query.ts +1 -1
- package/src/feature-toggles/i18n.ts +6 -0
- package/src/feature-toggles/index.ts +8 -0
- package/src/feature-toggles/toggle-runtime.ts +14 -0
- package/src/feature-toggles/web/client-plugin.tsx +22 -0
- package/src/feature-toggles/web/i18n.ts +29 -0
- package/src/feature-toggles/web/index.ts +6 -0
- package/src/feature-toggles/web/toggle-admin-screen.tsx +136 -0
- package/src/file-foundation/__tests__/feature.test.ts +5 -5
- package/src/file-foundation/__tests__/file-foundation.integration.test.ts +4 -3
- package/src/file-foundation/feature.ts +10 -11
- package/src/files-provider-s3/__tests__/s3-provider.integration.test.ts +27 -2
- package/src/files-provider-s3/s3-provider.ts +12 -1
- package/src/folders/__tests__/folders.integration.test.ts +3 -0
- package/src/folders/web/__tests__/folder-manager.test.tsx +43 -2
- package/src/folders/web/__tests__/tree.test.ts +8 -0
- package/src/folders/web/folder-manager.tsx +2 -3
- package/src/folders/web/i18n.ts +0 -2
- package/src/folders/web/tree.ts +13 -2
- package/src/folders-user-data/__tests__/hooks.integration.test.ts +1 -0
- package/src/folders-user-data/index.ts +4 -4
- package/src/inbound-mail-foundation/__tests__/account-state.test.ts +30 -0
- package/src/inbound-mail-foundation/__tests__/connect-routes.integration.test.ts +307 -0
- package/src/inbound-mail-foundation/__tests__/feature.test.ts +169 -0
- package/src/inbound-mail-foundation/__tests__/inbound-mail-foundation.integration.test.ts +644 -0
- package/src/inbound-mail-foundation/__tests__/inbound-mail-provider-contract.ts +111 -0
- package/src/inbound-mail-foundation/__tests__/retention.integration.test.ts +237 -0
- package/src/inbound-mail-foundation/__tests__/watch-supervisor.integration.test.ts +433 -0
- package/src/inbound-mail-foundation/aggregate-id.ts +40 -0
- package/src/inbound-mail-foundation/connect-routes.ts +230 -0
- package/src/inbound-mail-foundation/constants.ts +80 -0
- package/src/inbound-mail-foundation/db/queries/inbound-projections.ts +38 -0
- package/src/inbound-mail-foundation/entities.ts +172 -0
- package/src/inbound-mail-foundation/events.ts +147 -0
- package/src/inbound-mail-foundation/feature.ts +243 -0
- package/src/inbound-mail-foundation/handlers/account-state.ts +23 -0
- package/src/inbound-mail-foundation/handlers/connect-account.write.ts +112 -0
- package/src/inbound-mail-foundation/handlers/disconnect-account.write.ts +69 -0
- package/src/inbound-mail-foundation/handlers/ingest-message.write.ts +333 -0
- package/src/inbound-mail-foundation/handlers/list-accounts.query.ts +44 -0
- package/src/inbound-mail-foundation/handlers/list-messages.query.ts +58 -0
- package/src/inbound-mail-foundation/handlers/scope-visibility.ts +14 -0
- package/src/inbound-mail-foundation/handlers/update-account.write.ts +78 -0
- package/src/inbound-mail-foundation/index.ts +97 -0
- package/src/inbound-mail-foundation/oauth-state.ts +103 -0
- package/src/inbound-mail-foundation/projection.ts +152 -0
- package/src/inbound-mail-foundation/provider-factory.ts +53 -0
- package/src/inbound-mail-foundation/retention-sweep.ts +168 -0
- package/src/inbound-mail-foundation/tenant-destroy-hook.ts +93 -0
- package/src/inbound-mail-foundation/types.ts +250 -0
- package/src/inbound-mail-foundation/watch-supervisor.ts +482 -0
- package/src/inbound-provider-imap/__tests__/feature.test.ts +115 -0
- package/src/inbound-provider-imap/__tests__/imap-foundation.integration.test.ts +302 -0
- package/src/inbound-provider-imap/__tests__/imap-live.integration.test.ts +206 -0
- package/src/inbound-provider-imap/__tests__/plugin-mocked.test.ts +358 -0
- package/src/inbound-provider-imap/credential-document.ts +51 -0
- package/src/inbound-provider-imap/feature.ts +283 -0
- package/src/inbound-provider-imap/imap-client.ts +158 -0
- package/src/inbound-provider-imap/index.ts +17 -0
- package/src/inbound-provider-inmemory/__tests__/feature.test.ts +52 -0
- package/src/inbound-provider-inmemory/feature.ts +154 -0
- package/src/inbound-provider-inmemory/index.ts +12 -0
- package/src/jobs/__tests__/entity-ddl.test.ts +15 -0
- package/src/jobs/__tests__/job-instant.test.ts +15 -0
- package/src/jobs/__tests__/job-system-user.integration.test.ts +4 -8
- package/src/jobs/__tests__/jobs-events.integration.test.ts +37 -1
- package/src/jobs/__tests__/jobs-pii-kms.integration.test.ts +120 -0
- package/src/jobs/__tests__/jobs-screens.boot.test.ts +36 -0
- package/src/jobs/__tests__/jobs-security.integration.test.ts +108 -0
- package/src/jobs/__tests__/reindex-entity-job.integration.test.ts +169 -0
- package/src/jobs/constants.ts +8 -1
- package/src/jobs/feature.ts +52 -8
- package/src/jobs/handlers/detail.query.ts +6 -0
- package/src/jobs/handlers/list.query.ts +8 -1
- package/src/jobs/handlers/projection-rebuild.job.ts +14 -4
- package/src/jobs/handlers/reindex-entity.job.ts +49 -0
- package/src/jobs/i18n.ts +37 -0
- package/src/jobs/job-instant.ts +9 -0
- package/src/jobs/job-run-table.ts +4 -4
- package/src/jobs/web/client-plugin.tsx +22 -0
- package/src/jobs/web/i18n.ts +12 -0
- package/src/jobs/web/index.ts +4 -0
- package/src/jobs/web/job-run-detail-screen.tsx +180 -0
- package/src/jobs/web/job-runs-screen.tsx +146 -0
- package/src/ledger/__tests__/ledger.integration.test.ts +8 -3
- package/src/ledger/handlers/confirm-schedule-period.write.ts +17 -4
- package/src/ledger/recurring.ts +17 -8
- package/src/ledger/web/index.ts +3 -2
- package/src/legal-pages/__tests__/legal-pages.integration.test.ts +55 -0
- package/src/legal-pages/feature.ts +24 -31
- package/src/legal-pages/index.ts +1 -0
- package/src/mail-foundation/__tests__/feature.test.ts +5 -6
- package/src/mail-foundation/__tests__/mail-foundation.integration.test.ts +4 -3
- package/src/mail-foundation/__tests__/mail-transport-contract.ts +58 -0
- package/src/mail-foundation/feature.ts +26 -24
- package/src/mail-transport-inmemory/__tests__/feature.test.ts +23 -0
- package/src/mail-transport-smtp/__tests__/feature.test.ts +65 -0
- package/src/managed-pages/__tests__/branding-coerce.test.ts +2 -6
- package/src/managed-pages/__tests__/i18n-surface.boot.test.ts +30 -0
- package/src/managed-pages/__tests__/managed-pages.integration.test.ts +137 -0
- package/src/managed-pages/feature.ts +45 -47
- package/src/managed-pages/handlers/branding.query.ts +5 -1
- package/src/managed-pages/handlers/by-tenant-published.query.ts +52 -0
- package/src/managed-pages/i18n.ts +66 -0
- package/src/managed-pages/screens/page-screens.ts +5 -1
- package/src/managed-pages/web/client-plugin.tsx +22 -0
- package/src/managed-pages/web/i18n.ts +24 -0
- package/src/managed-pages/web/index.ts +3 -0
- package/src/page-render/__tests__/layout.test.ts +63 -0
- package/src/page-render/__tests__/markdown.test.ts +29 -0
- package/src/page-render/branding.ts +4 -3
- package/src/page-render/index.ts +1 -1
- package/src/page-render/layout.ts +18 -3
- package/src/page-render/markdown.ts +1 -9
- package/src/page-render/web.ts +13 -0
- package/src/personal-access-tokens/__tests__/feature.test.ts +42 -0
- package/src/personal-access-tokens/__tests__/pat.integration.test.ts +239 -0
- package/src/personal-access-tokens/__tests__/scopes.test.ts +42 -0
- package/src/personal-access-tokens/constants.ts +33 -0
- package/src/personal-access-tokens/feature.ts +105 -0
- package/src/personal-access-tokens/handlers/available-scopes.query.ts +21 -0
- package/src/personal-access-tokens/handlers/create.write.ts +47 -0
- package/src/personal-access-tokens/handlers/list.query.ts +50 -0
- package/src/personal-access-tokens/handlers/revoke.write.ts +37 -0
- package/src/personal-access-tokens/hash.ts +17 -0
- package/src/personal-access-tokens/i18n.ts +5 -0
- package/src/personal-access-tokens/index.ts +31 -0
- package/src/personal-access-tokens/resolver.ts +58 -0
- package/src/personal-access-tokens/roles.ts +29 -0
- package/src/personal-access-tokens/schema/api-token.ts +63 -0
- package/src/personal-access-tokens/scopes.ts +43 -0
- package/src/personal-access-tokens/web/client-plugin.tsx +29 -0
- package/src/personal-access-tokens/web/i18n.ts +69 -0
- package/src/personal-access-tokens/web/index.ts +7 -0
- package/src/personal-access-tokens/web/pat-tokens-screen.tsx +265 -0
- package/src/readiness/__tests__/readiness.integration.test.ts +4 -3
- package/src/renderer-simple/__tests__/resolve-variables.test.ts +37 -0
- package/src/renderer-simple/resolve-variables.ts +3 -1
- package/src/secrets/__tests__/rotate.integration.test.ts +115 -18
- package/src/secrets/handlers/rotate.job.ts +77 -98
- package/src/secrets/secrets-context.ts +7 -38
- package/src/secrets/table.ts +7 -8
- package/src/seo/__tests__/llms-txt.test.ts +38 -0
- package/src/seo/__tests__/robots-txt.test.ts +18 -0
- package/src/seo/__tests__/schema-builders.test.ts +57 -0
- package/src/seo/__tests__/seo.integration.test.ts +350 -0
- package/src/seo/__tests__/sitemap.test.ts +38 -0
- package/src/seo/constants.ts +60 -0
- package/src/seo/feature.ts +316 -0
- package/src/seo/handlers/seo-config.query.ts +35 -0
- package/src/seo/index.ts +19 -0
- package/src/seo/llms-txt.ts +33 -0
- package/src/seo/robots-txt.ts +13 -0
- package/src/seo/schema-builders.ts +57 -0
- package/src/seo/sitemap.ts +33 -0
- package/src/sessions/__tests__/auto-revoke-binding.test.ts +71 -0
- package/src/sessions/__tests__/cleanup.integration.test.ts +2 -1
- package/src/sessions/__tests__/password-auto-revoke.integration.test.ts +11 -7
- package/src/sessions/__tests__/rebuild-survival.integration.test.ts +18 -7
- package/src/sessions/__tests__/session-store-registration.test.ts +21 -0
- package/src/sessions/__tests__/sessions-screens.boot.test.ts +55 -0
- package/src/sessions/__tests__/sessions.integration.test.ts +272 -20
- package/src/sessions/__tests__/test-helpers.ts +16 -3
- package/src/sessions/constants.ts +5 -0
- package/src/sessions/db/queries/cleanup.ts +2 -2
- package/src/sessions/feature.ts +175 -26
- package/src/sessions/handlers/detail.query.ts +36 -0
- package/src/sessions/handlers/list.query.ts +14 -9
- package/src/sessions/handlers/mine.query.ts +13 -8
- package/src/sessions/handlers/revoke-all-for-user.write.ts +51 -12
- package/src/sessions/handlers/revoke-all-others.write.ts +19 -1
- package/src/sessions/handlers/revoke.write.ts +13 -0
- package/src/sessions/i18n.ts +23 -0
- package/src/sessions/index.ts +9 -2
- package/src/sessions/schema/user-session.ts +8 -2
- package/src/sessions/session-callbacks.ts +99 -14
- package/src/sessions/session-checker-fail-open.test.ts +77 -0
- package/src/sessions/session-revoked-event.ts +29 -0
- package/src/sessions/testing.ts +14 -1
- package/src/shared/__tests__/chunked-entity-migration.test.ts +145 -0
- package/src/shared/chunked-entity-migration.ts +89 -0
- package/src/shared/decrypt-stored-pii.ts +26 -0
- package/src/shared/encrypt-for-direct-write.ts +23 -0
- package/src/shared/entities-of.ts +17 -0
- package/src/shared/grace-period.test.ts +26 -0
- package/src/shared/grace-period.ts +20 -0
- package/src/{auth-email-password/__tests__ → shared}/identity-v3-hash.test.ts +2 -2
- package/src/shared/index.ts +16 -0
- package/src/shared/map-with-concurrency.test.ts +104 -0
- package/src/shared/map-with-concurrency.ts +38 -0
- package/src/shared/password-hashing.test.ts +35 -0
- package/src/{auth-email-password → shared}/password-hashing.ts +11 -0
- package/src/shared/system-query.ts +5 -0
- package/src/{auth-email-password → shared}/token-burn-store.ts +1 -1
- package/src/subscription-mollie/__tests__/feature.test.ts +97 -0
- package/src/subscription-mollie/__tests__/mollie-foundation.integration.test.ts +12 -1
- package/src/subscription-mollie/__tests__/verify-webhook.test.ts +21 -0
- package/src/subscription-mollie/verify-webhook.ts +1 -0
- package/src/subscription-stripe/__tests__/feature.test.ts +127 -1
- package/src/subscription-stripe/__tests__/runtime.test.ts +14 -24
- package/src/subscription-stripe/__tests__/stripe-foundation.integration.test.ts +15 -5
- package/src/subscription-stripe/__tests__/verify-webhook.test.ts +20 -0
- package/src/subscription-stripe/feature.ts +2 -0
- package/src/subscription-stripe/verify-webhook.ts +3 -2
- package/src/tags/__tests__/schemas.test.ts +34 -0
- package/src/tags/__tests__/tags.integration.test.ts +12 -1
- package/src/tags/entity.ts +6 -1
- package/src/tags/feature.ts +2 -0
- package/src/tags/i18n.ts +5 -0
- package/src/tags/schemas.ts +9 -2
- package/src/tags/web/__tests__/tag-manager.test.tsx +333 -0
- package/src/tags/web/__tests__/tag-section.test.tsx +47 -1
- package/src/tags/web/tag-manager.tsx +1 -1
- package/src/tags/web/tag-section.tsx +6 -3
- package/src/template-resolver/testing.ts +2 -1
- package/src/tenant/__tests__/members-query-kms.integration.test.ts +98 -0
- package/src/tenant/__tests__/members-screens.boot.test.ts +51 -0
- package/src/tenant/__tests__/multi-tenant.integration.test.ts +1 -1
- package/src/tenant/__tests__/tenant-security.integration.test.ts +310 -0
- package/src/tenant/__tests__/tenant.integration.test.ts +8 -4
- package/src/tenant/constants.ts +5 -0
- package/src/tenant/feature.ts +19 -0
- package/src/tenant/handlers/active-tenant-ids.query.ts +8 -2
- package/src/tenant/handlers/cancel-invitation.write.ts +2 -2
- package/src/tenant/handlers/invitations.query.ts +21 -4
- package/src/tenant/handlers/members.query.ts +41 -6
- package/src/tenant/i18n.ts +28 -0
- package/src/tenant/index.ts +7 -2
- package/src/tenant/invitation-table.ts +3 -2
- package/src/tenant/schema/tenant.ts +27 -2
- package/src/tenant/screens.ts +3 -2
- package/src/tenant/seeding.ts +136 -3
- package/src/tenant/web/client-plugin.tsx +20 -0
- package/src/tenant/web/i18n.ts +43 -0
- package/src/tenant/web/index.ts +4 -0
- package/src/tenant/web/members-screen.tsx +270 -0
- package/src/tenant-lifecycle/__tests__/stages.test.ts +22 -0
- package/src/tenant-lifecycle/__tests__/tenant-lifecycle.integration.test.ts +471 -0
- package/src/tenant-lifecycle/boot-checks.ts +45 -0
- package/src/tenant-lifecycle/constants.ts +56 -0
- package/src/tenant-lifecycle/events.ts +46 -0
- package/src/tenant-lifecycle/feature.ts +112 -0
- package/src/tenant-lifecycle/handlers/cancel-destruction.write.ts +79 -0
- package/src/tenant-lifecycle/handlers/request-destruction.write.ts +83 -0
- package/src/tenant-lifecycle/index.ts +7 -0
- package/src/tenant-lifecycle/lib/revoke-tenant-sessions.ts +16 -0
- package/src/tenant-lifecycle/lifecycle-gate.ts +65 -0
- package/src/tenant-lifecycle/run-tenant-destroy.ts +368 -0
- package/src/tenant-lifecycle/stages.ts +206 -0
- package/src/tenant-settings/__tests__/tenant-settings.integration.test.ts +115 -0
- package/src/tenant-settings/config.ts +44 -0
- package/src/tenant-settings/constants.ts +16 -0
- package/src/tenant-settings/feature.ts +49 -0
- package/src/tenant-settings/index.ts +8 -0
- package/src/tenant-settings/tenant-defaults.ts +67 -0
- package/src/text-content/web/__tests__/editor-read-only.test.tsx +33 -6
- package/src/text-content/web/__tests__/group-blocks.test.ts +28 -3
- package/src/text-content/web/client-plugin.tsx +126 -104
- package/src/tier-engine/__tests__/auto-default-tier.integration.test.ts +1 -1
- package/src/tier-engine/__tests__/resolver.integration.test.ts +1 -1
- package/src/tier-engine/__tests__/tier-engine.integration.test.ts +7 -4
- package/src/tier-engine/__tests__/trial-config-validation.test.ts +30 -0
- package/src/tier-engine/feature.ts +13 -6
- package/src/tier-engine/i18n.ts +8 -0
- package/src/tier-engine/web/tier-admin-screen.tsx +26 -19
- package/src/user/__tests__/stream-tenant-backfill.integration.test.ts +186 -0
- package/src/user/__tests__/user.integration.test.ts +26 -0
- package/src/user/constants.ts +1 -0
- package/src/user/db/queries/stream-tenant-backfill.ts +112 -0
- package/src/user/feature.ts +3 -0
- package/src/user/handlers/find-for-auth.query.ts +8 -6
- package/src/user/i18n.ts +20 -0
- package/src/user/index.ts +4 -0
- package/src/user/schema/user.ts +6 -2
- package/src/user/screens.ts +3 -15
- package/src/user/seeding.ts +8 -0
- package/src/user-data-rights/COMPLIANCE.md +21 -1
- package/src/user-data-rights/__tests__/anonymous-deletion-kms.integration.test.ts +145 -0
- package/src/user-data-rights/__tests__/anonymous-deletion.integration.test.ts +3 -0
- package/src/user-data-rights/__tests__/audit-log.integration.test.ts +67 -0
- package/src/user-data-rights/__tests__/boot-checks.test.ts +170 -0
- package/src/user-data-rights/__tests__/cross-data-matrix.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/download-by-token-resolver-trust.integration.test.ts +169 -0
- package/src/user-data-rights/__tests__/download.integration.test.ts +101 -33
- package/src/user-data-rights/__tests__/email-templates.test.ts +15 -0
- package/src/user-data-rights/__tests__/export-encrypted-fields.integration.test.ts +154 -0
- package/src/user-data-rights/__tests__/export-job-idempotency.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/export-job-list-cross-tenant.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/file-binary-forget-cleanup.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/file-binary-forget-failure.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/file-retention.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/file-storage-unification.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/forget-cleanup-hook-ordering.integration.test.ts +41 -62
- package/src/user-data-rights/__tests__/forget-hook-registry.integration.test.ts +110 -0
- package/src/user-data-rights/__tests__/inspector-screens.boot.test.ts +14 -0
- package/src/user-data-rights/__tests__/mail-default-bridge.integration.test.ts +19 -2
- package/src/user-data-rights/__tests__/read-users-rebuild-survives-lifecycle.integration.test.ts +25 -14
- package/src/user-data-rights/__tests__/request-cancel-deletion.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/request-deletion-callback.integration.test.ts +4 -1
- package/src/user-data-rights/__tests__/request-export.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/restriction-flow.integration.test.ts +172 -19
- package/src/user-data-rights/__tests__/run-export-jobs-cron-context.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/run-export-jobs.integration.test.ts +257 -26
- package/src/user-data-rights/__tests__/run-forget-cleanup.integration.test.ts +339 -5
- package/src/user-data-rights/__tests__/run-user-export.integration.test.ts +77 -1
- package/src/user-data-rights/__tests__/tenant-model-erasure.integration.test.ts +2 -0
- package/src/user-data-rights/__tests__/user-data-rights.integration.test.ts +9 -1
- package/src/user-data-rights/boot-checks.ts +70 -0
- package/src/user-data-rights/db/queries/__tests__/forget-cleanup.integration.test.ts +69 -0
- package/src/user-data-rights/db/queries/forget-cleanup.ts +9 -2
- package/src/user-data-rights/email-templates.ts +6 -6
- package/src/user-data-rights/feature.ts +162 -43
- package/src/user-data-rights/handlers/cancel-deletion.write.ts +8 -11
- package/src/user-data-rights/handlers/deletion-grace-period.ts +4 -1
- package/src/user-data-rights/handlers/download-by-job.query.ts +26 -18
- package/src/user-data-rights/handlers/download-by-token.query.ts +23 -15
- package/src/user-data-rights/handlers/lift-restriction.write.ts +44 -19
- package/src/user-data-rights/handlers/list-download-attempts.query.ts +1 -0
- package/src/user-data-rights/handlers/my-audit-log.query.ts +1 -0
- package/src/user-data-rights/handlers/request-deletion-by-email.write.ts +3 -1
- package/src/user-data-rights/handlers/restrict-account.write.ts +58 -7
- package/src/user-data-rights/handlers/run-forget-cleanup.write.ts +2 -0
- package/src/user-data-rights/i18n.ts +35 -32
- package/src/user-data-rights/lib/is-admin-actor.ts +19 -0
- package/src/user-data-rights/lib/storage-provider-resolver.ts +6 -5
- package/src/user-data-rights/lib/update-user-lifecycle.ts +8 -24
- package/src/user-data-rights/run-export-jobs.ts +55 -19
- package/src/user-data-rights/run-forget-cleanup.ts +112 -7
- package/src/user-data-rights/run-user-export.ts +70 -4
- package/src/user-data-rights/schema/download-token.ts +5 -3
- package/src/user-data-rights/schema/export-job.ts +2 -0
- package/src/user-data-rights/screens.ts +2 -1
- package/src/user-data-rights/web/__tests__/privacy-center-screen.test.tsx +1 -0
- package/src/user-data-rights/web/__tests__/public-deletion-gate.test.tsx +7 -1
- package/src/user-data-rights/web/client-plugin.tsx +6 -1
- package/src/user-data-rights/web/i18n.ts +30 -10
- package/src/user-data-rights/web/privacy-center-screen.tsx +5 -3
- package/src/user-data-rights-defaults/__tests__/bundled-entities.userdata-hooks.integration.test.ts +455 -0
- package/src/user-data-rights-defaults/__tests__/feature-mounted.test.ts +24 -0
- package/src/user-data-rights-defaults/__tests__/user-data-rights-defaults.integration.test.ts +33 -9
- package/src/user-data-rights-defaults/feature.ts +78 -1
- package/src/user-data-rights-defaults/hooks/api-token.userdata-hook.ts +37 -0
- package/src/user-data-rights-defaults/hooks/config-value.userdata-hook.ts +51 -0
- package/src/user-data-rights-defaults/hooks/delivery-attempt.userdata-hook.ts +37 -0
- package/src/user-data-rights-defaults/hooks/feature-mounted.ts +10 -0
- package/src/user-data-rights-defaults/hooks/in-app-message.userdata-hook.ts +38 -0
- package/src/user-data-rights-defaults/hooks/job-run.userdata-hook.ts +35 -0
- package/src/user-data-rights-defaults/hooks/notification-preference.userdata-hook.ts +54 -0
- package/src/user-data-rights-defaults/hooks/tenant-invitation.userdata-hook.ts +112 -0
- package/src/user-data-rights-defaults/hooks/user-session.userdata-hook.ts +42 -0
- package/src/user-data-rights-defaults/index.ts +26 -0
- package/src/user-profile/__tests__/change-email.integration.test.ts +7 -1
- package/src/user-profile/__tests__/profile-screen.test.tsx +5 -0
- package/src/user-profile/feature.ts +4 -1
- package/src/user-profile/handlers/change-email.write.ts +15 -10
- package/src/user-profile/web/profile-screen.tsx +15 -3
- package/src/auth-email-password/stream-tenant.ts +0 -31
- package/src/feature-toggles/db/queries/toggle-state.ts +0 -25
- package/src/legal-pages/security-headers.ts +0 -1
- package/src/sessions/schema/index.ts +0 -5
- package/src/tenant/schema/index.ts +0 -5
- package/src/user/schema/index.ts +0 -5
- /package/src/{auth-email-password → shared}/identity-v3-hash.ts +0 -0
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { describe, expect, test } from "bun:test";
|
|
2
|
+
import { MIN_HMAC_SECRET_LENGTH } from "../constants";
|
|
3
|
+
import { createAuthEmailPasswordFeature } from "../feature";
|
|
4
|
+
|
|
5
|
+
// A short HMAC secret makes reset/verify tokens forgeable (account takeover),
|
|
6
|
+
// so the factory must fail fast — same bar as the ≥32-char JWT_SECRET check.
|
|
7
|
+
|
|
8
|
+
const okSecret = "x".repeat(MIN_HMAC_SECRET_LENGTH);
|
|
9
|
+
const shortSecret = "x".repeat(MIN_HMAC_SECRET_LENGTH - 1);
|
|
10
|
+
const appUrl = "https://app.example.com/flow";
|
|
11
|
+
|
|
12
|
+
describe("createAuthEmailPasswordFeature hmacSecret validation", () => {
|
|
13
|
+
test("rejects a short passwordReset.hmacSecret", () => {
|
|
14
|
+
expect(() =>
|
|
15
|
+
createAuthEmailPasswordFeature({ passwordReset: { hmacSecret: shortSecret, appUrl } }),
|
|
16
|
+
).toThrow(/passwordReset\.hmacSecret must be/);
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
test("rejects a short emailVerification.hmacSecret", () => {
|
|
20
|
+
expect(() =>
|
|
21
|
+
createAuthEmailPasswordFeature({ emailVerification: { hmacSecret: shortSecret, appUrl } }),
|
|
22
|
+
).toThrow(/emailVerification\.hmacSecret must be/);
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
test("accepts secrets at the minimum length", () => {
|
|
26
|
+
expect(() =>
|
|
27
|
+
createAuthEmailPasswordFeature({
|
|
28
|
+
passwordReset: { hmacSecret: okSecret, appUrl },
|
|
29
|
+
emailVerification: { hmacSecret: okSecret, appUrl },
|
|
30
|
+
}),
|
|
31
|
+
).not.toThrow();
|
|
32
|
+
});
|
|
33
|
+
});
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
import { afterAll, beforeAll, beforeEach, describe, expect, test } from "bun:test";
|
|
9
9
|
import { pbkdf2Sync, randomBytes } from "node:crypto";
|
|
10
10
|
import { asRawClient } from "@cosmicdrift/kumiko-framework/bun-db";
|
|
11
|
-
import { createEncryptionProvider } from "@cosmicdrift/kumiko-framework/db";
|
|
12
11
|
import type { TenantId } from "@cosmicdrift/kumiko-framework/engine";
|
|
13
12
|
import { createEventsTable } from "@cosmicdrift/kumiko-framework/event-store";
|
|
14
13
|
import {
|
|
@@ -18,6 +17,7 @@ import {
|
|
|
18
17
|
unsafeCreateEntityTable,
|
|
19
18
|
unsafePushTables,
|
|
20
19
|
} from "@cosmicdrift/kumiko-framework/stack";
|
|
20
|
+
import { createTestEnvelopeCipher } from "@cosmicdrift/kumiko-framework/testing";
|
|
21
21
|
import { createConfigFeature } from "../../config";
|
|
22
22
|
import { createConfigResolver } from "../../config/resolver";
|
|
23
23
|
import { configValuesTable } from "../../config/table";
|
|
@@ -50,8 +50,8 @@ function buildBmcStyleV3Hash(password: string, salt: Buffer): string {
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
beforeAll(async () => {
|
|
53
|
-
const encryption =
|
|
54
|
-
const resolver = createConfigResolver({ encryption });
|
|
53
|
+
const encryption = createTestEnvelopeCipher(encryptionKey);
|
|
54
|
+
const resolver = createConfigResolver({ cipher: encryption });
|
|
55
55
|
|
|
56
56
|
stack = await setupTestStack({
|
|
57
57
|
features: [
|
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
// Auth-Flows mit aktivem PII-KMS + Blind-Index (#818 PR 2): user.email und
|
|
2
|
+
// invitation.email liegen als Ciphertext in der DB. Login und alle drei
|
|
3
|
+
// Invite-Accept-Branches müssen über die generierte email_bidx-Spalte
|
|
4
|
+
// (Equality-Lookup) bzw. decryptStoredEmail (Vergleich/Weiterverwendung)
|
|
5
|
+
// unverändert funktionieren — vor diesem PR war jeder dieser Pfade mit
|
|
6
|
+
// KMS silently broken.
|
|
7
|
+
|
|
8
|
+
import { afterAll, afterEach, beforeAll, beforeEach, describe, expect, test } from "bun:test";
|
|
9
|
+
import { asRawClient, selectMany } from "@cosmicdrift/kumiko-framework/bun-db";
|
|
10
|
+
import {
|
|
11
|
+
configureBlindIndexKey,
|
|
12
|
+
configurePiiSubjectKms,
|
|
13
|
+
decryptPiiFieldValues,
|
|
14
|
+
InMemoryKmsAdapter,
|
|
15
|
+
isPiiCiphertext,
|
|
16
|
+
resetBlindIndexKeyForTests,
|
|
17
|
+
resetPiiSubjectKmsForTests,
|
|
18
|
+
} from "@cosmicdrift/kumiko-framework/crypto";
|
|
19
|
+
import type { SessionUser, TenantId } from "@cosmicdrift/kumiko-framework/engine";
|
|
20
|
+
import {
|
|
21
|
+
setupTestStack,
|
|
22
|
+
type TestStack,
|
|
23
|
+
unsafeCreateEntityTable,
|
|
24
|
+
unsafePushTables,
|
|
25
|
+
} from "@cosmicdrift/kumiko-framework/stack";
|
|
26
|
+
import { createChannelEmailFeature, createInMemoryTransport } from "../../channel-email";
|
|
27
|
+
import { createConfigFeature } from "../../config";
|
|
28
|
+
import { createConfigResolver } from "../../config/resolver";
|
|
29
|
+
import { configValuesTable } from "../../config/table";
|
|
30
|
+
import { createDeliveryFeature, createDeliveryTestContext } from "../../delivery";
|
|
31
|
+
import { notificationPreferencesTable } from "../../delivery/tables";
|
|
32
|
+
import { createRendererFoundationFeature } from "../../renderer-foundation/feature";
|
|
33
|
+
import { createRendererSimpleFeature, simpleRenderer } from "../../renderer-simple";
|
|
34
|
+
import { hashPassword } from "../../shared";
|
|
35
|
+
import { createTemplateResolverFeature } from "../../template-resolver/feature";
|
|
36
|
+
import { createTenantFeature } from "../../tenant";
|
|
37
|
+
import { tenantInvitationEntity, tenantInvitationsTable } from "../../tenant/invitation-table";
|
|
38
|
+
import { tenantMembershipsTable } from "../../tenant/membership-table";
|
|
39
|
+
import { tenantEntity, tenantTable } from "../../tenant/schema/tenant";
|
|
40
|
+
import { seedTenant, seedTenantMembership } from "../../tenant/seeding";
|
|
41
|
+
import { createUserFeature } from "../../user/feature";
|
|
42
|
+
import { userEntity, userTable } from "../../user/schema/user";
|
|
43
|
+
import { AuthHandlers } from "../constants";
|
|
44
|
+
import { createAuthEmailPasswordFeature } from "../feature";
|
|
45
|
+
import { seedUser } from "../seeding";
|
|
46
|
+
|
|
47
|
+
const APP_ACCEPT_URL = "https://app.example.com/invite/accept";
|
|
48
|
+
const BOB_EMAIL = "bob.kms@example.com";
|
|
49
|
+
const BOB_PASSWORD = "bob-existing-pw-1234";
|
|
50
|
+
const CAROL_EMAIL = "carol.kms@example.com";
|
|
51
|
+
const CAROL_PASSWORD = "carol-new-pw-1234";
|
|
52
|
+
const BIDX_KEY = Buffer.alloc(32, 7).toString("base64");
|
|
53
|
+
|
|
54
|
+
const emailTransport = createInMemoryTransport();
|
|
55
|
+
|
|
56
|
+
let stack: TestStack;
|
|
57
|
+
let kms: InMemoryKmsAdapter;
|
|
58
|
+
let aliceId: string;
|
|
59
|
+
let bobId: string;
|
|
60
|
+
let TENANT_A_ID: TenantId;
|
|
61
|
+
let TENANT_B_ID: TenantId;
|
|
62
|
+
|
|
63
|
+
function extractTokenFromMail(html: string): string {
|
|
64
|
+
const match = html.match(/[?&]token=([^&"'<\s]+)/);
|
|
65
|
+
if (!match?.[1]) throw new Error(`No token in invite mail html: ${html.slice(0, 200)}`);
|
|
66
|
+
return decodeURIComponent(match[1]);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
beforeAll(async () => {
|
|
70
|
+
stack = await setupTestStack({
|
|
71
|
+
features: [
|
|
72
|
+
createConfigFeature(),
|
|
73
|
+
createUserFeature(),
|
|
74
|
+
createTenantFeature(),
|
|
75
|
+
createTemplateResolverFeature(),
|
|
76
|
+
createRendererFoundationFeature(),
|
|
77
|
+
createDeliveryFeature(),
|
|
78
|
+
createRendererSimpleFeature(),
|
|
79
|
+
createChannelEmailFeature({
|
|
80
|
+
transport: emailTransport,
|
|
81
|
+
renderer: simpleRenderer,
|
|
82
|
+
resolveEmail: async () => "unused@test.local",
|
|
83
|
+
}),
|
|
84
|
+
createAuthEmailPasswordFeature({
|
|
85
|
+
invite: { tokenTtlMinutes: 60, appUrl: APP_ACCEPT_URL },
|
|
86
|
+
}),
|
|
87
|
+
],
|
|
88
|
+
extraContext: (deps) => ({
|
|
89
|
+
...createDeliveryTestContext(deps),
|
|
90
|
+
configResolver: createConfigResolver(),
|
|
91
|
+
}),
|
|
92
|
+
authConfig: {
|
|
93
|
+
membershipQuery: "tenant:query:memberships",
|
|
94
|
+
loginHandler: AuthHandlers.login,
|
|
95
|
+
invite: {
|
|
96
|
+
acceptHandler: AuthHandlers.inviteAccept,
|
|
97
|
+
acceptWithLoginHandler: AuthHandlers.inviteAcceptWithLogin,
|
|
98
|
+
signupCompleteHandler: AuthHandlers.inviteSignupComplete,
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
});
|
|
102
|
+
|
|
103
|
+
await unsafeCreateEntityTable(stack.db, userEntity);
|
|
104
|
+
await unsafeCreateEntityTable(stack.db, tenantEntity);
|
|
105
|
+
await unsafeCreateEntityTable(stack.db, tenantInvitationEntity);
|
|
106
|
+
await unsafePushTables(stack.db, {
|
|
107
|
+
configValuesTable,
|
|
108
|
+
tenantMembershipsTable,
|
|
109
|
+
notificationPreferencesTable,
|
|
110
|
+
});
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
afterAll(async () => {
|
|
114
|
+
await stack.cleanup();
|
|
115
|
+
});
|
|
116
|
+
|
|
117
|
+
beforeEach(async () => {
|
|
118
|
+
// KMS + bidx-Key MUESSEN vor den Seeds stehen — seedUser läuft über den
|
|
119
|
+
// Executor, die Rows sollen den verschlüsselten Prod-Zustand abbilden.
|
|
120
|
+
kms = new InMemoryKmsAdapter();
|
|
121
|
+
configurePiiSubjectKms(kms);
|
|
122
|
+
configureBlindIndexKey(BIDX_KEY);
|
|
123
|
+
|
|
124
|
+
await asRawClient(stack.db).unsafe(`DELETE FROM "${userTable.tableName}"`);
|
|
125
|
+
await asRawClient(stack.db).unsafe(`DELETE FROM "${tenantMembershipsTable.tableName}"`);
|
|
126
|
+
await asRawClient(stack.db).unsafe(`DELETE FROM "${tenantInvitationsTable.tableName}"`);
|
|
127
|
+
await asRawClient(stack.db).unsafe(`DELETE FROM "${tenantTable.tableName}"`);
|
|
128
|
+
emailTransport.sent.length = 0;
|
|
129
|
+
const allKeys = await stack.redis.redis.keys("invite:*");
|
|
130
|
+
if (allKeys.length > 0) await stack.redis.redis.del(...allKeys);
|
|
131
|
+
|
|
132
|
+
TENANT_A_ID = crypto.randomUUID() as TenantId;
|
|
133
|
+
TENANT_B_ID = crypto.randomUUID() as TenantId;
|
|
134
|
+
await seedTenant(stack.db, {
|
|
135
|
+
id: TENANT_A_ID,
|
|
136
|
+
key: `kms-a-${TENANT_A_ID.slice(0, 8)}`,
|
|
137
|
+
name: "KMS Tenant A",
|
|
138
|
+
});
|
|
139
|
+
await seedTenant(stack.db, {
|
|
140
|
+
id: TENANT_B_ID,
|
|
141
|
+
key: `kms-b-${TENANT_B_ID.slice(0, 8)}`,
|
|
142
|
+
name: "KMS Tenant B",
|
|
143
|
+
});
|
|
144
|
+
|
|
145
|
+
({ id: aliceId } = await seedUser(stack.db, {
|
|
146
|
+
email: "alice.kms@example.com",
|
|
147
|
+
displayName: "Alice",
|
|
148
|
+
passwordHash: await hashPassword("alice-pw-1234"),
|
|
149
|
+
emailVerified: true,
|
|
150
|
+
}));
|
|
151
|
+
await seedTenantMembership(stack.db, {
|
|
152
|
+
userId: aliceId,
|
|
153
|
+
tenantId: TENANT_A_ID,
|
|
154
|
+
roles: ["Admin"],
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
({ id: bobId } = await seedUser(stack.db, {
|
|
158
|
+
email: BOB_EMAIL,
|
|
159
|
+
displayName: "Bob",
|
|
160
|
+
passwordHash: await hashPassword(BOB_PASSWORD),
|
|
161
|
+
emailVerified: true,
|
|
162
|
+
}));
|
|
163
|
+
await seedTenantMembership(stack.db, {
|
|
164
|
+
userId: bobId,
|
|
165
|
+
tenantId: TENANT_B_ID,
|
|
166
|
+
roles: ["User"],
|
|
167
|
+
});
|
|
168
|
+
});
|
|
169
|
+
|
|
170
|
+
afterEach(() => {
|
|
171
|
+
resetPiiSubjectKmsForTests();
|
|
172
|
+
resetBlindIndexKeyForTests();
|
|
173
|
+
});
|
|
174
|
+
|
|
175
|
+
function aliceSession(): SessionUser {
|
|
176
|
+
return { id: aliceId, tenantId: TENANT_A_ID, roles: ["Admin"] };
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
function bobSession(): SessionUser {
|
|
180
|
+
return { id: bobId, tenantId: TENANT_B_ID, roles: ["User"] };
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
async function inviteEmail(email: string, role: string): Promise<string> {
|
|
184
|
+
await stack.http.writeOk(AuthHandlers.inviteCreate, { email, role }, aliceSession());
|
|
185
|
+
const sent = emailTransport.sent.at(-1);
|
|
186
|
+
if (!sent) throw new Error("invite-create didn't send a mail");
|
|
187
|
+
return extractTokenFromMail(sent.html);
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
async function rawUserRow(id: string): Promise<Record<string, unknown>> {
|
|
191
|
+
const rows = await asRawClient(stack.db).unsafe<Record<string, unknown>>(
|
|
192
|
+
`SELECT * FROM "${userTable.tableName}" WHERE id = $1`,
|
|
193
|
+
[id],
|
|
194
|
+
);
|
|
195
|
+
const row = rows[0];
|
|
196
|
+
if (!row) throw new Error(`no user row for ${id}`);
|
|
197
|
+
return row;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
describe("auth flows with active KMS + blind index", () => {
|
|
201
|
+
test("seeded user row: ciphertext email + populated bidx column", async () => {
|
|
202
|
+
const row = await rawUserRow(bobId);
|
|
203
|
+
expect(isPiiCiphertext(row["email"])).toBe(true);
|
|
204
|
+
expect(String(row["email_bidx"])).toStartWith("kumiko-bidx:v1:");
|
|
205
|
+
});
|
|
206
|
+
|
|
207
|
+
test("login with plaintext email finds the encrypted row via bidx", async () => {
|
|
208
|
+
const res = await stack.http.raw("POST", "/api/auth/login", {
|
|
209
|
+
email: BOB_EMAIL,
|
|
210
|
+
password: BOB_PASSWORD,
|
|
211
|
+
});
|
|
212
|
+
expect(res.status).toBe(200);
|
|
213
|
+
const body = (await res.json()) as { isSuccess: boolean; token?: string };
|
|
214
|
+
expect(body.isSuccess).toBe(true);
|
|
215
|
+
expect(body.token).toBeTruthy();
|
|
216
|
+
});
|
|
217
|
+
|
|
218
|
+
test("Branch 1: logged-in accept matches emails across two ciphertexts", async () => {
|
|
219
|
+
const token = await inviteEmail(BOB_EMAIL, "Editor");
|
|
220
|
+
|
|
221
|
+
const invitations = await selectMany(stack.db, tenantInvitationsTable, { email: BOB_EMAIL });
|
|
222
|
+
expect(invitations).toHaveLength(1);
|
|
223
|
+
|
|
224
|
+
const result = (await stack.http.writeOk(
|
|
225
|
+
AuthHandlers.inviteAccept,
|
|
226
|
+
{ token },
|
|
227
|
+
bobSession(),
|
|
228
|
+
)) as {
|
|
229
|
+
tenantId: string;
|
|
230
|
+
alreadyMember: boolean;
|
|
231
|
+
};
|
|
232
|
+
expect(result.tenantId).toBe(TENANT_A_ID);
|
|
233
|
+
expect(result.alreadyMember).toBe(false);
|
|
234
|
+
});
|
|
235
|
+
|
|
236
|
+
test("Branch 2: invite-accept-with-login (anon + password)", async () => {
|
|
237
|
+
const token = await inviteEmail(BOB_EMAIL, "Editor");
|
|
238
|
+
|
|
239
|
+
const res = await stack.http.raw("POST", "/api/auth/invite-accept-with-login", {
|
|
240
|
+
token,
|
|
241
|
+
email: BOB_EMAIL,
|
|
242
|
+
password: BOB_PASSWORD,
|
|
243
|
+
});
|
|
244
|
+
expect(res.status).toBe(200);
|
|
245
|
+
const body = (await res.json()) as { isSuccess: boolean; tenantId: string };
|
|
246
|
+
expect(body.isSuccess).toBe(true);
|
|
247
|
+
expect(body.tenantId).toBe(TENANT_A_ID);
|
|
248
|
+
|
|
249
|
+
const memberships = await selectMany(stack.db, tenantMembershipsTable, { userId: bobId });
|
|
250
|
+
expect(memberships).toHaveLength(2);
|
|
251
|
+
});
|
|
252
|
+
|
|
253
|
+
test("Branch 3: invite-signup-complete creates the user from the DECRYPTED invitation email", async () => {
|
|
254
|
+
const token = await inviteEmail(CAROL_EMAIL, "Admin");
|
|
255
|
+
|
|
256
|
+
const res = await stack.http.raw("POST", "/api/auth/invite-signup-complete", {
|
|
257
|
+
token,
|
|
258
|
+
password: CAROL_PASSWORD,
|
|
259
|
+
});
|
|
260
|
+
expect(res.status).toBe(200);
|
|
261
|
+
const body = (await res.json()) as { isSuccess: boolean; user: { id: string } };
|
|
262
|
+
expect(body.isSuccess).toBe(true);
|
|
263
|
+
|
|
264
|
+
// Carol-Row: eigener user-Subject-Ciphertext (nicht der invitation-
|
|
265
|
+
// Ciphertext durchgereicht) + Klartext-abgeleiteter displayName.
|
|
266
|
+
const row = await rawUserRow(body.user.id);
|
|
267
|
+
expect(isPiiCiphertext(row["email"])).toBe(true);
|
|
268
|
+
expect(String(row["email"])).toContain(body.user.id);
|
|
269
|
+
const decrypted = await decryptPiiFieldValues(
|
|
270
|
+
{ displayName: row["display_name"] },
|
|
271
|
+
["displayName"],
|
|
272
|
+
kms,
|
|
273
|
+
{ requestId: "test" },
|
|
274
|
+
);
|
|
275
|
+
expect(decrypted["displayName"]).toBe("carol.kms");
|
|
276
|
+
|
|
277
|
+
const loginRes = await stack.http.raw("POST", "/api/auth/login", {
|
|
278
|
+
email: CAROL_EMAIL,
|
|
279
|
+
password: CAROL_PASSWORD,
|
|
280
|
+
});
|
|
281
|
+
expect(loginRes.status).toBe(200);
|
|
282
|
+
});
|
|
283
|
+
});
|
|
@@ -37,6 +37,7 @@ import { createDeliveryFeature, createDeliveryTestContext } from "../../delivery
|
|
|
37
37
|
import { notificationPreferencesTable } from "../../delivery/tables";
|
|
38
38
|
import { createRendererFoundationFeature } from "../../renderer-foundation/feature";
|
|
39
39
|
import { createRendererSimpleFeature, simpleRenderer } from "../../renderer-simple";
|
|
40
|
+
import { hashPassword } from "../../shared";
|
|
40
41
|
import { createTemplateResolverFeature } from "../../template-resolver/feature";
|
|
41
42
|
import { createTenantFeature } from "../../tenant";
|
|
42
43
|
import {
|
|
@@ -52,7 +53,6 @@ import { userEntity, userTable } from "../../user/schema/user";
|
|
|
52
53
|
import { AuthErrors, AuthHandlers } from "../constants";
|
|
53
54
|
import { createAuthEmailPasswordFeature } from "../feature";
|
|
54
55
|
import { storeInviteToken } from "../invite-token-store";
|
|
55
|
-
import { hashPassword } from "../password-hashing";
|
|
56
56
|
import { seedUser } from "../seeding";
|
|
57
57
|
|
|
58
58
|
const APP_ACCEPT_URL = "https://app.example.com/invite/accept";
|
|
@@ -362,6 +362,25 @@ describe("invite-accept-with-login (Branch 2: anon + existing email)", () => {
|
|
|
362
362
|
const body = (await res.json()) as { error?: { details?: { reason?: string } } };
|
|
363
363
|
expect(body.error?.details?.reason).toBe(AuthErrors.invalidInviteToken);
|
|
364
364
|
});
|
|
365
|
+
|
|
366
|
+
test("common password → 400 (schema rejects breach-list password) (#1340)", async () => {
|
|
367
|
+
const token = await inviteEmail(BOB_EMAIL, "Editor");
|
|
368
|
+
const res = await stack.http.raw("POST", "/api/auth/invite-accept-with-login", {
|
|
369
|
+
token,
|
|
370
|
+
email: BOB_EMAIL,
|
|
371
|
+
password: "password1",
|
|
372
|
+
});
|
|
373
|
+
expect(res.status).toBe(400);
|
|
374
|
+
// A 400 for a completely different reason (bad token format, email
|
|
375
|
+
// shape) would also pass a bare status assertion — pin the field-level
|
|
376
|
+
// reason so the test actually proves the breach-list rejection fired.
|
|
377
|
+
const body = (await res.json()) as {
|
|
378
|
+
error?: { details?: { fields?: ReadonlyArray<{ path?: string; code?: string }> } };
|
|
379
|
+
};
|
|
380
|
+
expect(body.error?.details?.fields).toContainEqual(
|
|
381
|
+
expect.objectContaining({ path: "password", code: "custom" }),
|
|
382
|
+
);
|
|
383
|
+
});
|
|
365
384
|
});
|
|
366
385
|
|
|
367
386
|
describe("invite-signup-complete (Branch 3: anon + new email)", () => {
|
|
@@ -397,6 +416,21 @@ describe("invite-signup-complete (Branch 3: anon + new email)", () => {
|
|
|
397
416
|
expect(loginRes.status).toBe(200);
|
|
398
417
|
});
|
|
399
418
|
|
|
419
|
+
test("common password → 400 (schema rejects breach-list password) (#1340)", async () => {
|
|
420
|
+
const token = await inviteEmail(CAROL_EMAIL, "Editor");
|
|
421
|
+
const res = await stack.http.raw("POST", "/api/auth/invite-signup-complete", {
|
|
422
|
+
token,
|
|
423
|
+
password: "password1",
|
|
424
|
+
});
|
|
425
|
+
expect(res.status).toBe(400);
|
|
426
|
+
const body = (await res.json()) as {
|
|
427
|
+
error?: { details?: { fields?: ReadonlyArray<{ path?: string; code?: string }> } };
|
|
428
|
+
};
|
|
429
|
+
expect(body.error?.details?.fields).toContainEqual(
|
|
430
|
+
expect.objectContaining({ path: "password", code: "custom" }),
|
|
431
|
+
);
|
|
432
|
+
});
|
|
433
|
+
|
|
400
434
|
test("Existing email → invalid_invite_token (User soll Branch 2 nutzen)", async () => {
|
|
401
435
|
const token = await inviteEmail(BOB_EMAIL, "Admin");
|
|
402
436
|
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
// #1455: enforcement policy blocks an unenrolled user at login
|
|
2
|
+
// (mfa-setup-required) — the response must carry a preauthSetupToken so a
|
|
3
|
+
// later pre-auth enroll step (#1231) can look the user back up without a
|
|
4
|
+
// session. Real HTTP through setupTestStack, both auth-mfa and
|
|
5
|
+
// auth-email-password mounted together (mirrors auth.integration.test.ts).
|
|
6
|
+
|
|
7
|
+
import { afterAll, beforeAll, beforeEach, describe, expect, test } from "bun:test";
|
|
8
|
+
import { randomBytes } from "node:crypto";
|
|
9
|
+
import { asRawClient } from "@cosmicdrift/kumiko-framework/bun-db";
|
|
10
|
+
import type { TenantId } from "@cosmicdrift/kumiko-framework/engine";
|
|
11
|
+
import {
|
|
12
|
+
createTestUser,
|
|
13
|
+
setupTestStack,
|
|
14
|
+
type TestStack,
|
|
15
|
+
testTenantId,
|
|
16
|
+
unsafeCreateEntityTable,
|
|
17
|
+
unsafePushTables,
|
|
18
|
+
} from "@cosmicdrift/kumiko-framework/stack";
|
|
19
|
+
import { createTestEnvelopeCipher } from "@cosmicdrift/kumiko-framework/testing";
|
|
20
|
+
import {
|
|
21
|
+
createAuthMfaFeature,
|
|
22
|
+
mfaRequiredConfigHandle,
|
|
23
|
+
mfaStatusCheckerFromFeature,
|
|
24
|
+
} from "../../auth-mfa";
|
|
25
|
+
import { userMfaEntity } from "../../auth-mfa/schema/user-mfa";
|
|
26
|
+
import { ConfigHandlers, createConfigFeature } from "../../config";
|
|
27
|
+
import { createConfigResolver } from "../../config/resolver";
|
|
28
|
+
import { configValuesTable } from "../../config/table";
|
|
29
|
+
import { hashPassword } from "../../shared";
|
|
30
|
+
import { createTenantFeature } from "../../tenant";
|
|
31
|
+
import { tenantMembershipsTable } from "../../tenant/membership-table";
|
|
32
|
+
import { tenantEntity } from "../../tenant/schema/tenant";
|
|
33
|
+
import { seedTenantMembership } from "../../tenant/testing";
|
|
34
|
+
import { UserHandlers } from "../../user";
|
|
35
|
+
import { createUserFeature } from "../../user/feature";
|
|
36
|
+
import { userEntity, userTable } from "../../user/schema/user";
|
|
37
|
+
import { AuthErrors, AuthHandlers } from "../constants";
|
|
38
|
+
import { createAuthEmailPasswordFeature } from "../feature";
|
|
39
|
+
|
|
40
|
+
let stack: TestStack;
|
|
41
|
+
|
|
42
|
+
const CHALLENGE_TOKEN_SECRET = "test-mfa-challenge-secret-at-least-32-bytes!!";
|
|
43
|
+
const TENANT_ID: TenantId = testTenantId(400);
|
|
44
|
+
|
|
45
|
+
beforeAll(async () => {
|
|
46
|
+
const encryption = createTestEnvelopeCipher(randomBytes(32).toString("base64"));
|
|
47
|
+
const resolver = createConfigResolver({ cipher: encryption });
|
|
48
|
+
const authMfaFeature = createAuthMfaFeature({
|
|
49
|
+
setupTokenSecret: "test-mfa-setup-token-secret-at-least-32-bytes!!",
|
|
50
|
+
issuer: "Kumiko Test",
|
|
51
|
+
challengeTokenSecret: CHALLENGE_TOKEN_SECRET,
|
|
52
|
+
});
|
|
53
|
+
|
|
54
|
+
stack = await setupTestStack({
|
|
55
|
+
features: [
|
|
56
|
+
createConfigFeature(),
|
|
57
|
+
createUserFeature(),
|
|
58
|
+
createTenantFeature(),
|
|
59
|
+
authMfaFeature,
|
|
60
|
+
createAuthEmailPasswordFeature({
|
|
61
|
+
mfaStatusChecker: mfaStatusCheckerFromFeature(authMfaFeature),
|
|
62
|
+
}),
|
|
63
|
+
],
|
|
64
|
+
extraContext: { configResolver: resolver, configEncryption: encryption },
|
|
65
|
+
authConfig: {
|
|
66
|
+
membershipQuery: "tenant:query:memberships",
|
|
67
|
+
loginHandler: AuthHandlers.login,
|
|
68
|
+
loginErrorStatusMap: {
|
|
69
|
+
[AuthErrors.invalidCredentials]: 401,
|
|
70
|
+
[AuthErrors.noMembership]: 403,
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
await unsafeCreateEntityTable(stack.db, userEntity);
|
|
76
|
+
await unsafeCreateEntityTable(stack.db, tenantEntity);
|
|
77
|
+
await unsafeCreateEntityTable(stack.db, userMfaEntity);
|
|
78
|
+
await unsafePushTables(stack.db, { configValuesTable, tenantMembershipsTable });
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
afterAll(async () => {
|
|
82
|
+
await stack.cleanup();
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
beforeEach(async () => {
|
|
86
|
+
await asRawClient(stack.db).unsafe(`DELETE FROM "${userTable.tableName}"`);
|
|
87
|
+
await asRawClient(stack.db).unsafe(`DELETE FROM "${tenantMembershipsTable.tableName}"`);
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
describe("login: mfa-setup-required carries a verifiable preauthSetupToken", () => {
|
|
91
|
+
test("unenrolled user blocked by 'all' policy gets a token instead of a session", async () => {
|
|
92
|
+
const password = "correct-horse-battery-2026";
|
|
93
|
+
const hash = await hashPassword(password);
|
|
94
|
+
const created = await stack.http.writeOk<{ id: string }>(
|
|
95
|
+
UserHandlers.create,
|
|
96
|
+
{ email: "unenrolled@example.com", passwordHash: hash, displayName: "Unenrolled" },
|
|
97
|
+
createTestUser({ id: 401, tenantId: TENANT_ID, roles: ["SystemAdmin"] }),
|
|
98
|
+
);
|
|
99
|
+
await seedTenantMembership(stack.db, {
|
|
100
|
+
userId: created.id,
|
|
101
|
+
tenantId: TENANT_ID,
|
|
102
|
+
roles: ["User"],
|
|
103
|
+
});
|
|
104
|
+
await stack.http.writeOk(
|
|
105
|
+
ConfigHandlers.set,
|
|
106
|
+
{ key: mfaRequiredConfigHandle.name, value: "all" },
|
|
107
|
+
createTestUser({ id: 402, tenantId: TENANT_ID, roles: ["Admin"] }),
|
|
108
|
+
);
|
|
109
|
+
|
|
110
|
+
const res = await stack.http.raw("POST", "/api/auth/login", {
|
|
111
|
+
email: "unenrolled@example.com",
|
|
112
|
+
password,
|
|
113
|
+
});
|
|
114
|
+
|
|
115
|
+
expect(res.status).toBe(200);
|
|
116
|
+
const body = await res.json();
|
|
117
|
+
expect(body.isSuccess).toBe(true);
|
|
118
|
+
expect(body.mfaSetupRequired).toBe(true);
|
|
119
|
+
expect(body.token).toBeUndefined();
|
|
120
|
+
expect(typeof body.preauthSetupToken).toBe("string");
|
|
121
|
+
|
|
122
|
+
const { verifyMfaPreauthSetupToken } = await import("../../auth-mfa/mfa-preauth-setup-token");
|
|
123
|
+
const verified = verifyMfaPreauthSetupToken(body.preauthSetupToken, CHALLENGE_TOKEN_SECRET);
|
|
124
|
+
expect(verified.ok).toBe(true);
|
|
125
|
+
if (verified.ok) {
|
|
126
|
+
expect(verified.payload).toEqual({ userId: created.id, tenantId: TENANT_ID });
|
|
127
|
+
}
|
|
128
|
+
});
|
|
129
|
+
});
|
|
@@ -23,6 +23,7 @@ import { seedRow } from "@cosmicdrift/kumiko-framework/testing";
|
|
|
23
23
|
import { createConfigFeature } from "../../config";
|
|
24
24
|
import { createConfigResolver } from "../../config/resolver";
|
|
25
25
|
import { configValuesTable } from "../../config/table";
|
|
26
|
+
import { hashPassword } from "../../shared";
|
|
26
27
|
import { createTenantFeature } from "../../tenant";
|
|
27
28
|
import { tenantMembershipsTable } from "../../tenant/membership-table";
|
|
28
29
|
import { tenantEntity } from "../../tenant/schema/tenant";
|
|
@@ -31,7 +32,6 @@ import { createUserFeature } from "../../user/feature";
|
|
|
31
32
|
import { userEntity, userTable } from "../../user/schema/user";
|
|
32
33
|
import { AuthErrors, AuthHandlers } from "../constants";
|
|
33
34
|
import { createAuthEmailPasswordFeature } from "../feature";
|
|
34
|
-
import { hashPassword } from "../password-hashing";
|
|
35
35
|
|
|
36
36
|
let stack: TestStack;
|
|
37
37
|
const systemAdmin = TestUsers.systemAdmin;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { expect, test } from "bun:test";
|
|
2
|
+
import { isCommonPassword, passwordSchema } from "../password-policy";
|
|
3
|
+
|
|
4
|
+
test("rejects a breach-list password (case-insensitive)", () => {
|
|
5
|
+
expect(isCommonPassword("Password1")).toBe(true);
|
|
6
|
+
expect(passwordSchema.safeParse("password1").success).toBe(false);
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
test("accepts a long unique password", () => {
|
|
10
|
+
expect(passwordSchema.safeParse("aX9-not-in-any-list-42").success).toBe(true);
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
test("still enforces min length", () => {
|
|
14
|
+
expect(passwordSchema.safeParse("tiny").success).toBe(false);
|
|
15
|
+
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { afterAll, beforeAll, beforeEach, describe, expect, test } from "bun:test";
|
|
2
2
|
import { randomBytes } from "node:crypto";
|
|
3
|
+
import { authFoundationFeature } from "@cosmicdrift/kumiko-bundled-features/auth-foundation";
|
|
3
4
|
import { asRawClient, selectMany } from "@cosmicdrift/kumiko-framework/bun-db";
|
|
4
|
-
import { createEncryptionProvider } from "@cosmicdrift/kumiko-framework/db";
|
|
5
5
|
import { SYSTEM_TENANT_ID, type TenantId } from "@cosmicdrift/kumiko-framework/engine";
|
|
6
6
|
import {
|
|
7
7
|
setupTestStack,
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
unsafeCreateEntityTable,
|
|
11
11
|
unsafePushTables,
|
|
12
12
|
} from "@cosmicdrift/kumiko-framework/stack";
|
|
13
|
-
import { seedRow } from "@cosmicdrift/kumiko-framework/testing";
|
|
13
|
+
import { createTestEnvelopeCipher, seedRow } from "@cosmicdrift/kumiko-framework/testing";
|
|
14
14
|
import { Temporal } from "temporal-polyfill";
|
|
15
15
|
import { createChannelEmailFeature, createInMemoryTransport } from "../../channel-email";
|
|
16
16
|
import { createConfigFeature } from "../../config";
|
|
@@ -21,6 +21,7 @@ import { notificationPreferencesTable } from "../../delivery/tables";
|
|
|
21
21
|
import { createRendererFoundationFeature } from "../../renderer-foundation/feature";
|
|
22
22
|
import { createRendererSimpleFeature, simpleRenderer } from "../../renderer-simple";
|
|
23
23
|
import { createSessionsFeature, userSessionTable } from "../../sessions";
|
|
24
|
+
import { hashPassword, verifyPassword } from "../../shared";
|
|
24
25
|
import { createTemplateResolverFeature } from "../../template-resolver/feature";
|
|
25
26
|
import { createTenantFeature } from "../../tenant";
|
|
26
27
|
import { tenantMembershipsTable } from "../../tenant/membership-table";
|
|
@@ -31,7 +32,6 @@ import { createUserFeature } from "../../user/feature";
|
|
|
31
32
|
import { userEntity, userTable } from "../../user/schema/user";
|
|
32
33
|
import { AuthErrors, AuthHandlers } from "../constants";
|
|
33
34
|
import { createAuthEmailPasswordFeature } from "../feature";
|
|
34
|
-
import { hashPassword, verifyPassword } from "../password-hashing";
|
|
35
35
|
import { signResetToken } from "../reset-token";
|
|
36
36
|
|
|
37
37
|
// Reset mails now go through delivery (ctx.notify → channel-email). The
|
|
@@ -51,8 +51,8 @@ const resetSecret = randomBytes(32).toString("base64");
|
|
|
51
51
|
const appResetUrl = "https://app.example.com/reset";
|
|
52
52
|
|
|
53
53
|
beforeAll(async () => {
|
|
54
|
-
const encryption =
|
|
55
|
-
const resolver = createConfigResolver({ encryption });
|
|
54
|
+
const encryption = createTestEnvelopeCipher(encryptionKey);
|
|
55
|
+
const resolver = createConfigResolver({ cipher: encryption });
|
|
56
56
|
|
|
57
57
|
stack = await setupTestStack({
|
|
58
58
|
features: [
|
|
@@ -77,6 +77,7 @@ beforeAll(async () => {
|
|
|
77
77
|
// "user.postSave" that triggers autoRevokeOnPasswordChange whenever
|
|
78
78
|
// the passwordHash delta is present. Integration-test proves the
|
|
79
79
|
// reset-flow's changes.passwordHash triggers the same hook.
|
|
80
|
+
authFoundationFeature,
|
|
80
81
|
createSessionsFeature({
|
|
81
82
|
autoRevokeOnPasswordChange: async (userId) => {
|
|
82
83
|
autoRevokeCalls.push(userId);
|
|
@@ -253,6 +254,18 @@ describe("POST /auth/reset-password", () => {
|
|
|
253
254
|
expect(res.status).toBe(400);
|
|
254
255
|
});
|
|
255
256
|
|
|
257
|
+
test("common newPassword → 400 (schema rejects breach-list password)", async () => {
|
|
258
|
+
const seed = await seedUser({ email: "frank@example.com", password: "original" });
|
|
259
|
+
const { token } = signResetToken(seed.id, 15, resetSecret);
|
|
260
|
+
|
|
261
|
+
const res = await post("/api/auth/reset-password", {
|
|
262
|
+
token,
|
|
263
|
+
newPassword: "password1",
|
|
264
|
+
});
|
|
265
|
+
|
|
266
|
+
expect(res.status).toBe(400);
|
|
267
|
+
});
|
|
268
|
+
|
|
256
269
|
test("expired token via the route → 422 invalid_reset_token", async () => {
|
|
257
270
|
const seed = await seedUser({ email: "time@example.com", password: "once-valid-1234" });
|
|
258
271
|
// Sign with now set far in the past so expiry already fired.
|
|
@@ -349,7 +362,7 @@ describe("POST /auth/reset-password", () => {
|
|
|
349
362
|
// never blanket-opens zero-membership.
|
|
350
363
|
// Build a fully-populated user row with NO event stream: seed a normal
|
|
351
364
|
// user (gets all NOT-NULL columns), capture its row, then re-key it to a
|
|
352
|
-
// fresh id + email.
|
|
365
|
+
// fresh id + email. getUnscopedAggregateStreamTenant(orphanId) finds no events
|
|
353
366
|
// (the stream lives under the original id), and no membership is seeded
|
|
354
367
|
// → tenantOrder is empty.
|
|
355
368
|
const donor = await seedUser({ email: "donor@example.com", password: "donor-pw-1234" });
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
import { afterAll, beforeAll, beforeEach, describe, expect, test } from "bun:test";
|
|
8
8
|
import { randomBytes } from "node:crypto";
|
|
9
9
|
import { asRawClient } from "@cosmicdrift/kumiko-framework/bun-db";
|
|
10
|
-
import { createEncryptionProvider } from "@cosmicdrift/kumiko-framework/db";
|
|
11
10
|
import {
|
|
12
11
|
setupTestStack,
|
|
13
12
|
type TestStack,
|
|
14
13
|
unsafeCreateEntityTable,
|
|
15
14
|
unsafePushTables,
|
|
16
15
|
} from "@cosmicdrift/kumiko-framework/stack";
|
|
16
|
+
import { createTestEnvelopeCipher } from "@cosmicdrift/kumiko-framework/testing";
|
|
17
17
|
import { createChannelEmailFeature, createInMemoryTransport } from "../../channel-email";
|
|
18
18
|
import { createConfigFeature } from "../../config";
|
|
19
19
|
import { createConfigResolver } from "../../config/resolver";
|
|
@@ -40,8 +40,8 @@ const resetSecret = randomBytes(32).toString("base64");
|
|
|
40
40
|
const verifySecret = randomBytes(32).toString("base64");
|
|
41
41
|
|
|
42
42
|
beforeAll(async () => {
|
|
43
|
-
const encryption =
|
|
44
|
-
const resolver = createConfigResolver({ encryption });
|
|
43
|
+
const encryption = createTestEnvelopeCipher(encryptionKey);
|
|
44
|
+
const resolver = createConfigResolver({ cipher: encryption });
|
|
45
45
|
|
|
46
46
|
stack = await setupTestStack({
|
|
47
47
|
features: [
|