@beechcms/api 0.4.3 → 0.6.0-preview.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/dashboard/Searching.svg +1 -0
- package/assets/dashboard/assets/index-BSjk0Sx9.js +634 -0
- package/assets/dashboard/assets/index-kRCYVN2B.css +1 -0
- package/assets/dashboard/index.html +2 -2
- package/assets/dashboard/noResult.svg +43 -0
- package/assets/dashboard/working.svg +1 -0
- package/migrations/0000_v040_base.sql +27 -0
- package/migrations/0030_test_seeds.sql +125 -0
- package/package.json +14 -9
- package/src/auth/{in-memory-hash-provider.ts → __fixtures__/in-memory-hash-provider.ts} +4 -0
- package/src/auth/{static-token-service.ts → __fixtures__/static-token-service.ts} +4 -0
- package/src/auth/bcrypt-hash-provider.ts +6 -2
- package/src/auth/constants.ts +4 -0
- package/src/auth/generate-refresh-token.test.ts +8 -4
- package/src/auth/hash-provider.test.ts +14 -5
- package/src/auth/jose-token-service.ts +7 -0
- package/src/auth/jwt-claims-passthrough.test.ts +87 -0
- package/src/auth/login.test.ts +9 -1
- package/src/auth/login.ts +5 -1
- package/src/auth/refresh.ts +7 -1
- package/src/auth/token-service.test.ts +9 -1
- package/src/factory.ts +37 -16
- package/src/features/automations/__tests__/action-executors.test.ts +59 -72
- package/src/features/automations/__tests__/automation-runner.test.ts +4 -0
- package/src/features/automations/__tests__/automation-runner.utils.test.ts +4 -0
- package/src/features/automations/__tests__/automations.handler.test.ts +7 -3
- package/src/features/automations/__tests__/automations.repository.test.ts +4 -0
- package/src/features/automations/__tests__/automations.schema.test.ts +92 -2
- package/src/features/automations/__tests__/context-resolver.test.ts +4 -0
- package/src/features/automations/__tests__/cron-runner.test.ts +11 -7
- package/src/features/automations/__tests__/cron-runner.utils.test.ts +4 -0
- package/src/features/automations/__tests__/set-variable.executor.test.ts +77 -0
- package/src/features/automations/__tests__/template-grammar.test.ts +4 -0
- package/src/features/automations/__tests__/webhook.executor.test.ts +142 -0
- package/src/features/automations/__tests__/when-evaluator.test.ts +4 -0
- package/src/features/automations/__tests__/when-pushdown.test.ts +5 -1
- package/src/features/automations/action-executors/create-entry.executor.ts +4 -0
- package/src/features/automations/action-executors/edit-field.executor.ts +4 -0
- package/src/features/automations/action-executors/index.ts +5 -1
- package/src/features/automations/action-executors/send-mail.executor.ts +13 -2
- package/src/features/automations/action-executors/set-variable.executor.ts +15 -2
- package/src/features/automations/action-executors/webhook.executor.ts +55 -13
- package/src/features/automations/automation-runner.ts +4 -0
- package/src/features/automations/automation-runner.utils.ts +4 -0
- package/src/features/automations/automations.handler.ts +4 -0
- package/src/features/automations/automations.schema.ts +19 -2
- package/src/features/automations/context-resolver.ts +4 -0
- package/src/features/automations/cron-runner.ts +4 -0
- package/src/features/automations/cron-runner.utils.ts +4 -0
- package/src/features/automations/filter-translation.ts +4 -0
- package/src/features/automations/index.ts +4 -0
- package/src/features/automations/template-grammar.ts +4 -0
- package/src/features/automations/var-access-resolver.ts +4 -0
- package/src/features/automations/when-evaluator.ts +4 -0
- package/src/features/automations/when-pushdown.ts +4 -0
- package/src/features/backrefs/__tests__/backrefs.handler.test.ts +359 -0
- package/src/features/backrefs/backrefs.handler.ts +168 -0
- package/src/features/backrefs/d1-backref.repository.ts +84 -0
- package/src/features/backrefs/index.ts +5 -0
- package/src/features/content/constants.ts +6 -0
- package/src/features/content/handlers/bulk.handler.ts +185 -0
- package/src/features/content/handlers/create.ts +19 -55
- package/src/features/content/handlers/delete.ts +12 -37
- package/src/features/content/handlers/facets.ts +4 -0
- package/src/features/content/handlers/get.ts +4 -0
- package/src/features/content/handlers/helpers.test.ts +180 -0
- package/src/features/content/handlers/helpers.ts +93 -0
- package/src/features/content/handlers/list.ts +105 -19
- package/src/features/content/handlers/update.ts +19 -64
- package/src/features/content/index.ts +6 -0
- package/src/features/draft/draft.handler.ts +33 -8
- package/src/features/draft/draft.middleware.ts +4 -0
- package/src/features/draft/index.ts +4 -0
- package/src/features/email/email.provider.ts +4 -0
- package/src/features/email/email.service.ts +50 -45
- package/src/features/email/email.types.ts +12 -1
- package/src/features/email/index.ts +4 -0
- package/src/features/email/providers/resend.ts +4 -0
- package/src/features/email/providers/smtp.ts +55 -0
- package/src/features/email/templates/automation-mail.ts +4 -0
- package/src/features/email/templates/password-changed.ts +4 -0
- package/src/features/email/templates/password-reset.ts +4 -0
- package/src/features/email/templates/shell.ts +4 -0
- package/src/features/notifications/index.ts +4 -0
- package/src/features/notifications/notifications.handler.ts +4 -0
- package/src/features/password-reset/index.ts +5 -1
- package/src/features/password-reset/request.ts +12 -2
- package/src/features/password-reset/reset.ts +12 -2
- package/src/features/rotate-field/index.ts +4 -0
- package/src/features/rotate-field/rotate-field.handler.ts +4 -0
- package/src/features/rotate-field/rotate-field.schema.ts +4 -0
- package/src/features/schema/schema.handler.ts +118 -3
- package/src/features/seeds/index.ts +5 -0
- package/src/features/seeds/seeds.handler.test.ts +632 -0
- package/src/features/seeds/seeds.handler.ts +693 -0
- package/src/features/settings/__tests__/settings.handler.test.ts +555 -0
- package/src/features/settings/settings.handler.ts +98 -8
- package/src/features/setup/index.ts +124 -11
- package/src/features/stats/index.ts +4 -0
- package/src/features/stats/stats.handler.ts +11 -21
- package/src/features/webhooks/index.ts +63 -0
- package/src/index.ts +28 -19
- package/src/media-utils.ts +4 -0
- package/src/middleware/auth-providers.middleware.ts +13 -0
- package/src/middleware/observability.middleware.ts +21 -3
- package/src/middleware/rate-limit.middleware.ts +4 -0
- package/src/middleware/repository.middleware.ts +25 -2
- package/src/middleware/seed-registry.middleware.test.ts +97 -0
- package/src/middleware/seed-registry.middleware.ts +21 -0
- package/src/middleware/storage.middleware.ts +4 -0
- package/src/middleware.ts +5 -7
- package/src/public/access-policy.ts +4 -0
- package/src/public/api-key-middleware.ts +4 -0
- package/src/public/cache-utils.ts +38 -34
- package/src/public/entry-projection.ts +46 -42
- package/src/public/idempotency.ts +23 -19
- package/src/public/index.ts +4 -0
- package/src/public/problem-details.ts +71 -0
- package/src/public/public-add.ts +4 -0
- package/src/public/public-edit.ts +4 -0
- package/src/public/public-errors.ts +4 -0
- package/src/public/public-read.ts +4 -0
- package/src/public/public-routes.ts +4 -0
- package/src/public/query-builder.test.ts +4 -0
- package/src/public/query-builder.ts +4 -0
- package/src/public/rate-limit-middleware.ts +4 -0
- package/src/public/read-list.ts +54 -50
- package/src/public/read-single.ts +48 -44
- package/src/public/response-builder.ts +4 -0
- package/src/public/sanitize.ts +4 -0
- package/src/public/slug-utils.ts +4 -0
- package/src/rate-limit/cloudflare-rate-limiter.test.ts +4 -0
- package/src/rate-limit/cloudflare-rate-limiter.ts +4 -0
- package/src/rate-limit/in-memory-rate-limiter.test.ts +4 -0
- package/src/rate-limit/in-memory-rate-limiter.ts +4 -0
- package/src/rate-limit/no-op-rate-limiter.test.ts +4 -0
- package/src/rate-limit/no-op-rate-limiter.ts +4 -0
- package/src/search-utils.test.ts +4 -0
- package/src/search-utils.ts +5 -1
- package/src/search.ts +5 -1
- package/src/shared/apply-policies.test.ts +4 -0
- package/src/shared/apply-policies.ts +4 -0
- package/src/shared/automations.repository.d1.ts +4 -0
- package/src/shared/background-notification-service.test.ts +4 -0
- package/src/shared/background-notification-service.ts +4 -0
- package/src/shared/base.repository.d1.ts +4 -0
- package/src/shared/content-utils.test.ts +4 -0
- package/src/shared/content-utils.ts +4 -0
- package/src/shared/content.repository.d1.test.ts +147 -1
- package/src/shared/content.repository.d1.ts +535 -66
- package/src/shared/d1-activity-log.repository.test.ts +4 -0
- package/src/shared/d1-activity-log.repository.ts +4 -0
- package/src/shared/d1-activity-logger.test.ts +4 -0
- package/src/shared/d1-activity-logger.ts +4 -0
- package/src/shared/d1-analytics.repository.test.ts +4 -0
- package/src/shared/d1-analytics.repository.ts +4 -0
- package/src/shared/d1-content-scan.repository.test.ts +9 -5
- package/src/shared/d1-content-scan.repository.ts +15 -7
- package/src/shared/d1-notification.repository.test.ts +4 -0
- package/src/shared/d1-notification.repository.ts +4 -0
- package/src/shared/d1-password-reset-token.repository.test.ts +4 -0
- package/src/shared/d1-password-reset-token.repository.ts +4 -0
- package/src/shared/d1-search.repository.test.ts +4 -0
- package/src/shared/d1-search.repository.ts +4 -0
- package/src/shared/d1-session.repository.test.ts +4 -0
- package/src/shared/d1-session.repository.ts +4 -0
- package/src/shared/d1-setup-checklist.repository.ts +36 -0
- package/src/shared/d1-user.repository.test.ts +8 -4
- package/src/shared/d1-user.repository.ts +15 -5
- package/src/shared/d1-widget.repository.test.ts +4 -0
- package/src/shared/d1-widget.repository.ts +4 -0
- package/src/shared/demo-data-sql.ts +54 -0
- package/src/shared/demo-data.repository.d1.ts +20 -0
- package/src/shared/execution-context-scheduler.ts +4 -0
- package/src/shared/fixed-clock.ts +4 -0
- package/src/shared/fts-sync.ts +4 -0
- package/src/shared/idempotency.repository.d1.test.ts +4 -0
- package/src/shared/idempotency.repository.d1.ts +4 -0
- package/src/shared/in-memory-activity-logger.ts +4 -0
- package/src/shared/in-memory-notification-service.ts +4 -0
- package/src/shared/in-memory-seed.repository.ts +51 -0
- package/src/shared/media.repository.d1.test.ts +4 -0
- package/src/shared/media.repository.d1.ts +4 -0
- package/src/shared/qstash-notification-service.test.ts +67 -0
- package/src/shared/qstash-notification-service.ts +55 -0
- package/src/shared/query-utils.ts +4 -0
- package/src/shared/request-utils.ts +4 -0
- package/src/shared/schema-mutator.d1.ts +64 -0
- package/src/shared/seed-layout.repository.d1.test.ts +114 -0
- package/src/shared/seed-layout.repository.d1.ts +62 -0
- package/src/shared/seed-registry-cache.test.ts +68 -0
- package/src/shared/seed-registry-cache.ts +49 -0
- package/src/shared/seed.repository.d1.test.ts +143 -0
- package/src/shared/seed.repository.d1.ts +98 -0
- package/src/shared/sequential-id-generator.ts +11 -0
- package/src/shared/site-settings.repository.d1.ts +53 -0
- package/src/shared/storage/factory.ts +16 -15
- package/src/shared/storage/s3-bucket.ts +34 -2
- package/src/shared/storage-utils.ts +4 -0
- package/src/shared/system-stats.repository.d1.test.ts +4 -0
- package/src/shared/system-stats.repository.d1.ts +5 -1
- package/src/types.ts +23 -3
- package/src/upload.ts +134 -123
- package/src/widget.ts +6 -2
- package/assets/dashboard/assets/index-BKWnlvnV.css +0 -1
- package/assets/dashboard/assets/index-BMkd1Irh.js +0 -629
- package/src/shared/storage/r2-binding-bucket.ts +0 -81
package/src/factory.ts
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
/// <reference types="@cloudflare/workers-types" />
|
|
2
6
|
import { Hono } from 'hono'
|
|
3
7
|
import { cors } from 'hono/cors'
|
|
4
8
|
import { getCookie, setCookie, deleteCookie } from 'hono/cookie'
|
|
5
9
|
import type { Seed, ContentRepository, IdempotencyRepository, BeechBucket, MediaRepository, SystemStatsRepository } from '@beechcms/core'
|
|
6
|
-
import { sha256hex, SystemClock, SystemIdGenerator
|
|
10
|
+
import { sha256hex, SystemClock, SystemIdGenerator } from '@beechcms/core'
|
|
7
11
|
import type { Env, Variables } from './types'
|
|
8
12
|
import { getClientIp } from './shared/request-utils'
|
|
9
13
|
|
|
@@ -25,14 +29,20 @@ import { setupApp } from './features/setup'
|
|
|
25
29
|
import { draftApp } from './features/draft'
|
|
26
30
|
import { settingsApp } from './features/settings/settings.handler'
|
|
27
31
|
import { schemaApp } from './features/schema/schema.handler'
|
|
32
|
+
import { seedsApp } from './features/seeds'
|
|
28
33
|
import { notificationsApp } from './features/notifications'
|
|
29
34
|
import { automationsApp } from './features/automations'
|
|
30
35
|
import { statsApp } from './features/stats'
|
|
36
|
+
import { backrefsApp } from './features/backrefs'
|
|
37
|
+
import { webhooksApp } from './features/webhooks'
|
|
31
38
|
import { uploadRoutes, serveMediaHandler } from './upload'
|
|
32
39
|
import { publicRoutes, apiKeyMiddleware, publicRateLimitMiddleware } from './public'
|
|
33
40
|
import { searchRouter } from "./search"
|
|
41
|
+
import type { ISeedRepository } from '@beechcms/core'
|
|
34
42
|
import { repositoryMiddleware } from './middleware/repository.middleware'
|
|
43
|
+
import { seedRegistryMiddleware } from './middleware/seed-registry.middleware'
|
|
35
44
|
import { storageMiddleware } from './middleware/storage.middleware'
|
|
45
|
+
import { InMemorySeedRepository } from './shared/in-memory-seed.repository'
|
|
36
46
|
import { authProvidersMiddleware } from './middleware/auth-providers.middleware'
|
|
37
47
|
import { rateLimiterMiddleware } from './middleware/rate-limit.middleware'
|
|
38
48
|
import { observabilityMiddleware } from './middleware/observability.middleware'
|
|
@@ -44,6 +54,10 @@ export interface BeechConfig {
|
|
|
44
54
|
bucket?: BeechBucket
|
|
45
55
|
mediaRepository?: MediaRepository
|
|
46
56
|
systemStatsRepository?: SystemStatsRepository
|
|
57
|
+
// Optional override: inject a custom ISeedRepository (e.g. InMemorySeedRepository for tests).
|
|
58
|
+
// When omitted and seeds is non-empty, an InMemorySeedRepository is created automatically
|
|
59
|
+
// for backward compatibility.
|
|
60
|
+
seedRepository?: ISeedRepository
|
|
47
61
|
}
|
|
48
62
|
|
|
49
63
|
// --- Costanti e helper ---
|
|
@@ -86,32 +100,34 @@ function extractPublicSeed(path: string): string {
|
|
|
86
100
|
}
|
|
87
101
|
|
|
88
102
|
/**
|
|
89
|
-
* Builds a fully configured Hono app
|
|
90
|
-
*
|
|
103
|
+
* Builds a fully configured Hono app. Seeds are hydrated from D1 at runtime via
|
|
104
|
+
* seedRegistryMiddleware; config.seeds is retained for back-compat but no longer
|
|
105
|
+
* drives request handling.
|
|
91
106
|
*/
|
|
92
107
|
export function createBeechApp(config: BeechConfig): Hono<{ Bindings: Env; Variables: Variables }> {
|
|
108
|
+
// Back-compat shim: when callers (e.g. existing tests) pass seeds without a custom
|
|
109
|
+
// seedRepository, wrap them in an InMemorySeedRepository so the middleware can serve
|
|
110
|
+
// them without touching D1. Production index.ts passes seeds:[] so D1SeedRepository
|
|
111
|
+
// is used as the live path.
|
|
93
112
|
const seedsArray = Array.isArray(config.seeds) ? config.seeds : Object.values(config.seeds)
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
const seedRegistry = new SeedRegistry(validSeeds)
|
|
113
|
+
const seedRepository = config.seedRepository
|
|
114
|
+
?? (seedsArray.length > 0 ? new InMemorySeedRepository(seedsArray) : undefined)
|
|
97
115
|
|
|
98
116
|
const app = new Hono<{ Bindings: Env; Variables: Variables }>()
|
|
99
117
|
|
|
100
|
-
// 1.
|
|
101
|
-
app.use('*', async (context, next) => {
|
|
102
|
-
context.set('getSeed', (slug: string) => seedRegistry.get(slug))
|
|
103
|
-
context.set('seedRegistry', seedRegistry)
|
|
104
|
-
await next()
|
|
105
|
-
})
|
|
106
|
-
|
|
107
|
-
// 1.1 Repository Injection
|
|
118
|
+
// 1. Repository Injection (must be first — seedRegistryMiddleware depends on seedRepository)
|
|
108
119
|
app.use('*', repositoryMiddleware({
|
|
109
120
|
repository: config.repository,
|
|
110
121
|
idempotencyRepository: config.idempotencyRepository,
|
|
111
122
|
mediaRepository: config.mediaRepository,
|
|
112
123
|
systemStatsRepository: config.systemStatsRepository,
|
|
124
|
+
seedRepository,
|
|
113
125
|
}))
|
|
114
126
|
|
|
127
|
+
// 2. Seed Registry Hydration (D1-backed, version-token-cached per isolate)
|
|
128
|
+
app.use('*', seedRegistryMiddleware())
|
|
129
|
+
|
|
130
|
+
// 3. Storage / Auth / Rate Limiting / Observability
|
|
115
131
|
app.use('*', storageMiddleware({
|
|
116
132
|
bucket: config.bucket,
|
|
117
133
|
}))
|
|
@@ -211,7 +227,7 @@ export function createBeechApp(config: BeechConfig): Hono<{ Bindings: Env; Varia
|
|
|
211
227
|
|
|
212
228
|
if (!user || !isValid) return context.json({ error: AUTH_ERRORS.INVALID_CREDENTIALS }, 401)
|
|
213
229
|
|
|
214
|
-
const accessToken = await context.get('tokenService').issue({ sub: user.id, email: user.email, name: user.name ?? undefined })
|
|
230
|
+
const accessToken = await context.get('tokenService').issue({ sub: user.id, email: user.email, name: user.name ?? undefined, surname: user.surname ?? undefined, role: user.role })
|
|
215
231
|
const refreshToken = generateRefreshToken()
|
|
216
232
|
const refreshTokenHash = await sha256hex(refreshToken)
|
|
217
233
|
const nowSeconds = SystemClock.nowSeconds()
|
|
@@ -251,7 +267,7 @@ export function createBeechApp(config: BeechConfig): Hono<{ Bindings: Env; Varia
|
|
|
251
267
|
|
|
252
268
|
// Issue new tokens before revoking the old one: if saveRefreshToken fails,
|
|
253
269
|
// the old token stays valid and the user is not locked out.
|
|
254
|
-
const newAccessToken = await context.get('tokenService').issue({ sub: user.id, email: user.email, name: user.name ?? undefined })
|
|
270
|
+
const newAccessToken = await context.get('tokenService').issue({ sub: user.id, email: user.email, name: user.name ?? undefined, surname: user.surname ?? undefined, role: user.role })
|
|
255
271
|
const newRefreshToken = generateRefreshToken()
|
|
256
272
|
const newRefreshTokenHash = await sha256hex(newRefreshToken)
|
|
257
273
|
|
|
@@ -297,10 +313,12 @@ export function createBeechApp(config: BeechConfig): Hono<{ Bindings: Env; Varia
|
|
|
297
313
|
|
|
298
314
|
apiProtected.route('/settings', settingsApp)
|
|
299
315
|
apiProtected.route('/schema', schemaApp)
|
|
316
|
+
apiProtected.route('/seeds', seedsApp)
|
|
300
317
|
apiProtected.route('/content', notificationsApp)
|
|
301
318
|
apiProtected.route('/content', statsApp)
|
|
302
319
|
apiProtected.route('/content', rotateFieldApp)
|
|
303
320
|
apiProtected.route('/content', draftApp)
|
|
321
|
+
apiProtected.route('/content', backrefsApp)
|
|
304
322
|
apiProtected.route('/content', contentFeature)
|
|
305
323
|
apiProtected.route('/widget', widgetApp)
|
|
306
324
|
apiProtected.route('/automations', automationsApp)
|
|
@@ -313,6 +331,9 @@ export function createBeechApp(config: BeechConfig): Hono<{ Bindings: Env; Varia
|
|
|
313
331
|
apiPublic.route('/', publicRoutes)
|
|
314
332
|
app.route('/api/v1/public', apiPublic)
|
|
315
333
|
|
|
334
|
+
// Webhooks API (public, verified via signature)
|
|
335
|
+
app.route('/api/webhooks', webhooksApp)
|
|
336
|
+
|
|
316
337
|
app.get('/api/media/:key', (context) => serveMediaHandler(context))
|
|
317
338
|
app.route('/api', apiProtected)
|
|
318
339
|
app.route('/api/search', searchRouter)
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
2
6
|
import { executeAction } from '../action-executors'
|
|
3
7
|
import type { ActionContext } from '../action-executors'
|
|
4
8
|
import type { ContentRepository, Seed, IIdGenerator } from '@beechcms/core'
|
|
9
|
+
import { deleteAllMessages, listMessages, waitForMessage, getMessageHtml } from '../../../../test/helpers/mailpit-client'
|
|
10
|
+
import { newBucket, waitForRequest } from '../../../../test/helpers/webhook-tester-client'
|
|
5
11
|
|
|
6
12
|
// ── Shared mock context factory ───────────────────────────────────────────────
|
|
7
13
|
|
|
@@ -41,74 +47,55 @@ function makeCtx(overrides: Partial<ActionContext> = {}): ActionContext {
|
|
|
41
47
|
// ── webhook ───────────────────────────────────────────────────────────────────
|
|
42
48
|
|
|
43
49
|
describe('webhook executor', () => {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
it('POSTs to URL with JSON body derived from entry when no body_template', async () => {
|
|
47
|
-
const fetchMock = vi.fn().mockResolvedValue({ ok: true, status: 200 })
|
|
48
|
-
vi.stubGlobal('fetch', fetchMock)
|
|
49
|
-
|
|
50
|
+
it('POSTs to URL with interpolated body_template', async () => {
|
|
51
|
+
const { url, uuid } = await newBucket()
|
|
50
52
|
const ctx = makeCtx()
|
|
51
|
-
await executeAction({ type: 'webhook', url: '
|
|
52
|
-
|
|
53
|
-
expect(
|
|
54
|
-
|
|
55
|
-
expect(url).toBe('https://example.com/hook')
|
|
56
|
-
expect(init.method).toBe('POST')
|
|
57
|
-
expect(JSON.parse(init.body)).toMatchObject({ id: 'entry-1', title: 'Test Entry' })
|
|
53
|
+
await executeAction({ type: 'webhook', url, body_template: '{"id":"{{id}}","title":"{{title}}"}' }, ctx)
|
|
54
|
+
const req = await waitForRequest(uuid)
|
|
55
|
+
expect(req.method).toBe('POST')
|
|
56
|
+
expect(JSON.parse(req.body)).toMatchObject({ id: 'entry-1', title: 'Test Entry' })
|
|
58
57
|
})
|
|
59
58
|
|
|
60
59
|
it('interpolates body_template with entry values', async () => {
|
|
61
|
-
const
|
|
62
|
-
vi.stubGlobal('fetch', fetchMock)
|
|
63
|
-
|
|
60
|
+
const { url, uuid } = await newBucket()
|
|
64
61
|
const ctx = makeCtx()
|
|
65
|
-
await executeAction({ type: 'webhook', url
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
expect(init.body).toBe('{"t":"Test Entry"}')
|
|
62
|
+
await executeAction({ type: 'webhook', url, body_template: '{"t":"{{title}}"}' }, ctx)
|
|
63
|
+
const req = await waitForRequest(uuid)
|
|
64
|
+
expect(req.body).toBe('{"t":"Test Entry"}')
|
|
69
65
|
})
|
|
70
66
|
|
|
71
67
|
it('merges custom headers', async () => {
|
|
72
|
-
const
|
|
73
|
-
vi.stubGlobal('fetch', fetchMock)
|
|
74
|
-
|
|
68
|
+
const { url, uuid } = await newBucket()
|
|
75
69
|
const ctx = makeCtx()
|
|
76
|
-
await executeAction({ type: 'webhook', url
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
expect(init.headers['X-Token']).toBe('abc')
|
|
70
|
+
await executeAction({ type: 'webhook', url, headers: { 'X-Token': 'abc' } }, ctx)
|
|
71
|
+
const req = await waitForRequest(uuid)
|
|
72
|
+
expect(req.headers['x-token']).toBe('abc')
|
|
80
73
|
})
|
|
81
74
|
|
|
82
|
-
it('throws when
|
|
83
|
-
vi.stubGlobal('fetch', vi.fn().mockResolvedValue({ ok: false, status: 500 }))
|
|
75
|
+
it('throws when webhook endpoint is unreachable', async () => {
|
|
84
76
|
const ctx = makeCtx()
|
|
85
|
-
await expect(executeAction({ type: 'webhook', url: '
|
|
77
|
+
await expect(executeAction({ type: 'webhook', url: 'http://localhost:19999/nope' }, ctx)).rejects.toThrow()
|
|
86
78
|
})
|
|
87
79
|
|
|
88
80
|
it('uses custom HTTP method', async () => {
|
|
89
|
-
const
|
|
90
|
-
vi.stubGlobal('fetch', fetchMock)
|
|
81
|
+
const { url, uuid } = await newBucket()
|
|
91
82
|
const ctx = makeCtx()
|
|
92
|
-
await executeAction({ type: 'webhook', url
|
|
93
|
-
|
|
83
|
+
await executeAction({ type: 'webhook', url, method: 'PUT' }, ctx)
|
|
84
|
+
const req = await waitForRequest(uuid)
|
|
85
|
+
expect(req.method).toBe('PUT')
|
|
94
86
|
})
|
|
95
87
|
})
|
|
96
88
|
|
|
97
89
|
// ── send_mail ─────────────────────────────────────────────────────────────────
|
|
98
90
|
|
|
99
|
-
vi.mock('../../email', () => ({
|
|
100
|
-
sendAutomationMail: vi.fn().mockResolvedValue(undefined),
|
|
101
|
-
}))
|
|
102
|
-
|
|
103
91
|
describe('send_mail executor', () => {
|
|
104
|
-
beforeEach(
|
|
105
|
-
const { sendAutomationMail } = await import('../../email')
|
|
106
|
-
vi.mocked(sendAutomationMail).mockClear()
|
|
107
|
-
})
|
|
92
|
+
beforeEach(() => deleteAllMessages())
|
|
108
93
|
|
|
109
|
-
it('interpolates to/subject/body and
|
|
110
|
-
const
|
|
111
|
-
|
|
94
|
+
it('interpolates to/subject/body and delivers to Mailpit', async () => {
|
|
95
|
+
const ctx = makeCtx({
|
|
96
|
+
entry: { id: '1', email: 'user@example.com', title: 'Hello' },
|
|
97
|
+
env: { EMAIL_PROVIDER: 'smtp', SMTP_HOST: 'localhost', SMTP_PORT: '8025', EMAIL_FROM: 'Beech <test@beech.local>' },
|
|
98
|
+
})
|
|
112
99
|
|
|
113
100
|
await executeAction(
|
|
114
101
|
{
|
|
@@ -120,19 +107,19 @@ describe('send_mail executor', () => {
|
|
|
120
107
|
ctx,
|
|
121
108
|
)
|
|
122
109
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
body: 'Your entry Hello was created.',
|
|
128
|
-
}),
|
|
129
|
-
)
|
|
110
|
+
const msg = await waitForMessage(m => m.To.some(t => t.Address === 'user@example.com'))
|
|
111
|
+
expect(msg.Subject).toBe('Re: Hello')
|
|
112
|
+
const html = await getMessageHtml(msg.ID)
|
|
113
|
+
expect(html).toContain('Hello')
|
|
130
114
|
})
|
|
131
115
|
|
|
132
|
-
it('substitutes
|
|
133
|
-
const { sendAutomationMail } = await import('../../email')
|
|
116
|
+
it('substitutes [missing] for absent fields and logs a warning', async () => {
|
|
134
117
|
const warnSpy = vi.spyOn(console, 'warn').mockImplementation(() => {})
|
|
135
|
-
|
|
118
|
+
// email is present (needed for a valid To address) but title and desc are absent
|
|
119
|
+
const ctx = makeCtx({
|
|
120
|
+
entry: { id: '1', email: 'warn-test@example.com' },
|
|
121
|
+
env: { EMAIL_PROVIDER: 'smtp', SMTP_HOST: 'localhost', SMTP_PORT: '8025', EMAIL_FROM: 'Beech <test@beech.local>' },
|
|
122
|
+
})
|
|
136
123
|
|
|
137
124
|
await executeAction(
|
|
138
125
|
{
|
|
@@ -144,23 +131,20 @@ describe('send_mail executor', () => {
|
|
|
144
131
|
ctx,
|
|
145
132
|
)
|
|
146
133
|
|
|
147
|
-
expect(sendAutomationMail).toHaveBeenCalledWith(
|
|
148
|
-
expect.objectContaining({
|
|
149
|
-
to: '[missing]',
|
|
150
|
-
subject: 'Re: [missing]',
|
|
151
|
-
body: 'Content: [missing]',
|
|
152
|
-
}),
|
|
153
|
-
)
|
|
154
134
|
expect(warnSpy).toHaveBeenCalledWith(
|
|
155
135
|
expect.stringContaining('missing concrete data'),
|
|
156
|
-
['
|
|
136
|
+
expect.arrayContaining(['title', 'desc']),
|
|
157
137
|
)
|
|
138
|
+
const msg = await waitForMessage(m => m.Subject === 'Re: [missing]')
|
|
139
|
+
expect(msg.Subject).toBe('Re: [missing]')
|
|
140
|
+
const html = await getMessageHtml(msg.ID)
|
|
141
|
+
expect(html).toContain('[missing]')
|
|
142
|
+
warnSpy.mockRestore()
|
|
158
143
|
})
|
|
159
144
|
|
|
160
|
-
it('skips execution
|
|
161
|
-
const { sendAutomationMail } = await import('../../email')
|
|
145
|
+
it('skips execution and logs an error when provider is resend and apiKey is missing', async () => {
|
|
162
146
|
const errSpy = vi.spyOn(console, 'error').mockImplementation(() => {})
|
|
163
|
-
const ctx = makeCtx({ env: {} })
|
|
147
|
+
const ctx = makeCtx({ env: {} })
|
|
164
148
|
|
|
165
149
|
await executeAction(
|
|
166
150
|
{
|
|
@@ -172,15 +156,17 @@ describe('send_mail executor', () => {
|
|
|
172
156
|
ctx,
|
|
173
157
|
)
|
|
174
158
|
|
|
175
|
-
expect(sendAutomationMail).not.toHaveBeenCalled()
|
|
176
159
|
expect(errSpy).toHaveBeenCalledWith(expect.stringContaining('Execution skipped'))
|
|
160
|
+
const msgs = await listMessages()
|
|
161
|
+
expect(msgs).toHaveLength(0)
|
|
162
|
+
errSpy.mockRestore()
|
|
177
163
|
})
|
|
178
164
|
|
|
179
|
-
it('logs error and rethrows when
|
|
180
|
-
const { sendAutomationMail } = await import('../../email')
|
|
181
|
-
vi.mocked(sendAutomationMail).mockRejectedValueOnce(new Error('provider error'))
|
|
165
|
+
it('logs error and rethrows when SMTP provider is unreachable', async () => {
|
|
182
166
|
const errSpy = vi.spyOn(console, 'error').mockImplementation(() => {})
|
|
183
|
-
const ctx = makeCtx(
|
|
167
|
+
const ctx = makeCtx({
|
|
168
|
+
env: { EMAIL_PROVIDER: 'smtp', SMTP_HOST: 'localhost', SMTP_PORT: '19999', EMAIL_FROM: 'Beech <test@beech.local>' },
|
|
169
|
+
})
|
|
184
170
|
|
|
185
171
|
await expect(
|
|
186
172
|
executeAction(
|
|
@@ -192,12 +178,13 @@ describe('send_mail executor', () => {
|
|
|
192
178
|
},
|
|
193
179
|
ctx,
|
|
194
180
|
),
|
|
195
|
-
).rejects.toThrow(
|
|
181
|
+
).rejects.toThrow()
|
|
196
182
|
|
|
197
183
|
expect(errSpy).toHaveBeenCalledWith(
|
|
198
184
|
expect.stringContaining('failed to send automation email'),
|
|
199
185
|
expect.any(Error),
|
|
200
186
|
)
|
|
187
|
+
errSpy.mockRestore()
|
|
201
188
|
})
|
|
202
189
|
})
|
|
203
190
|
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
2
6
|
import { AutomationRunner } from '../automation-runner'
|
|
3
7
|
import type { AutomationRunnerDeps } from '../automation-runner'
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
import { describe, it, expect } from 'vitest'
|
|
2
6
|
import { interpolate } from '../automation-runner.utils'
|
|
3
7
|
import { resolveAutomationContext } from '../context-resolver'
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
2
6
|
import { Hono } from 'hono'
|
|
3
7
|
import type { IAutomationRepository, Automation } from '@beechcms/core'
|
|
@@ -10,7 +14,7 @@ const baseAutomation: Automation = {
|
|
|
10
14
|
enabled: true,
|
|
11
15
|
triggers: [{ event: 'create' }],
|
|
12
16
|
trigger_conditions: null,
|
|
13
|
-
actions: [{ type: 'webhook', url: 'https://example.com' }],
|
|
17
|
+
actions: [{ type: 'webhook', url: 'https://example.com', body_template: '{}' }],
|
|
14
18
|
created_at: 1000,
|
|
15
19
|
updated_at: 1000,
|
|
16
20
|
}
|
|
@@ -99,7 +103,7 @@ describe('POST /', () => {
|
|
|
99
103
|
{ kind: 'predicate', left: { kind: 'ref', key: 'this.status' }, op: 'eq', right: { kind: 'literal', value: 'draft' } },
|
|
100
104
|
],
|
|
101
105
|
},
|
|
102
|
-
actions: [{ type: 'webhook', url: 'https://example.com' }],
|
|
106
|
+
actions: [{ type: 'webhook', url: 'https://example.com', body_template: '{}' }],
|
|
103
107
|
}),
|
|
104
108
|
})
|
|
105
109
|
expect(res.status).toBe(201)
|
|
@@ -116,7 +120,7 @@ describe('POST /', () => {
|
|
|
116
120
|
seed_slug: 'posts',
|
|
117
121
|
name: 'test-create-automation',
|
|
118
122
|
triggers: [{ event: 'create' }],
|
|
119
|
-
actions: [{ type: 'webhook', url: 'https://example.com' }],
|
|
123
|
+
actions: [{ type: 'webhook', url: 'https://example.com', body_template: '{}' }],
|
|
120
124
|
}),
|
|
121
125
|
})
|
|
122
126
|
expect(res.status).toBe(201)
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
import { describe, it, expect, vi } from 'vitest'
|
|
2
6
|
import { D1AutomationRepository } from '../../../shared/automations.repository.d1'
|
|
3
7
|
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
import { describe, it, expect } from 'vitest'
|
|
2
6
|
import {
|
|
3
7
|
createAutomationSchema,
|
|
@@ -5,7 +9,7 @@ import {
|
|
|
5
9
|
toggleAutomationSchema,
|
|
6
10
|
} from '../automations.schema'
|
|
7
11
|
|
|
8
|
-
const validWebhookAction = { type: 'webhook' as const, url: 'https://example.com/hook' }
|
|
12
|
+
const validWebhookAction = { type: 'webhook' as const, url: 'https://example.com/hook', body_template: '{}' }
|
|
9
13
|
|
|
10
14
|
const minimalValid = {
|
|
11
15
|
seed_slug: 'posts',
|
|
@@ -67,11 +71,97 @@ describe('createAutomationSchema', () => {
|
|
|
67
71
|
it('rejects webhook with non-url', () => {
|
|
68
72
|
const result = createAutomationSchema.safeParse({
|
|
69
73
|
...minimalValid,
|
|
70
|
-
actions: [{ type: 'webhook', url: 'not-a-url' }],
|
|
74
|
+
actions: [{ type: 'webhook', url: 'not-a-url', body_template: '{}' }],
|
|
75
|
+
})
|
|
76
|
+
expect(result.success).toBe(false)
|
|
77
|
+
})
|
|
78
|
+
|
|
79
|
+
it('rejects webhook with HTTP url (not HTTPS)', () => {
|
|
80
|
+
const result = createAutomationSchema.safeParse({
|
|
81
|
+
...minimalValid,
|
|
82
|
+
actions: [{ type: 'webhook', url: 'http://example.com', body_template: '{}' }],
|
|
83
|
+
})
|
|
84
|
+
expect(result.success).toBe(false)
|
|
85
|
+
const issues = result.error?.issues ?? []
|
|
86
|
+
expect(issues.some((i) => i.message === 'automations.editor.errors.webhookHttpsRequired')).toBe(true)
|
|
87
|
+
})
|
|
88
|
+
|
|
89
|
+
it('rejects webhook with localhost url', () => {
|
|
90
|
+
const result = createAutomationSchema.safeParse({
|
|
91
|
+
...minimalValid,
|
|
92
|
+
actions: [{ type: 'webhook', url: 'https://localhost/x', body_template: '{}' }],
|
|
93
|
+
})
|
|
94
|
+
expect(result.success).toBe(false)
|
|
95
|
+
const issues = result.error?.issues ?? []
|
|
96
|
+
expect(issues.some((i) => i.message === 'automations.editor.errors.webhookPrivateHostBlocked')).toBe(true)
|
|
97
|
+
})
|
|
98
|
+
|
|
99
|
+
it('rejects webhook with 127.0.0.1', () => {
|
|
100
|
+
const result = createAutomationSchema.safeParse({
|
|
101
|
+
...minimalValid,
|
|
102
|
+
actions: [{ type: 'webhook', url: 'https://127.0.0.1/x', body_template: '{}' }],
|
|
103
|
+
})
|
|
104
|
+
expect(result.success).toBe(false)
|
|
105
|
+
})
|
|
106
|
+
|
|
107
|
+
it('rejects webhook with AWS metadata IP (169.254.169.254)', () => {
|
|
108
|
+
const result = createAutomationSchema.safeParse({
|
|
109
|
+
...minimalValid,
|
|
110
|
+
actions: [{ type: 'webhook', url: 'https://169.254.169.254/x', body_template: '{}' }],
|
|
111
|
+
})
|
|
112
|
+
expect(result.success).toBe(false)
|
|
113
|
+
})
|
|
114
|
+
|
|
115
|
+
it('rejects webhook with 10.x.x.x private IP', () => {
|
|
116
|
+
const result = createAutomationSchema.safeParse({
|
|
117
|
+
...minimalValid,
|
|
118
|
+
actions: [{ type: 'webhook', url: 'https://10.0.0.5/x', body_template: '{}' }],
|
|
71
119
|
})
|
|
72
120
|
expect(result.success).toBe(false)
|
|
73
121
|
})
|
|
74
122
|
|
|
123
|
+
it('rejects webhook with 192.168.x.x private IP', () => {
|
|
124
|
+
const result = createAutomationSchema.safeParse({
|
|
125
|
+
...minimalValid,
|
|
126
|
+
actions: [{ type: 'webhook', url: 'https://192.168.1.1/x', body_template: '{}' }],
|
|
127
|
+
})
|
|
128
|
+
expect(result.success).toBe(false)
|
|
129
|
+
})
|
|
130
|
+
|
|
131
|
+
it('rejects webhook with 172.16.x.x private IP', () => {
|
|
132
|
+
const result = createAutomationSchema.safeParse({
|
|
133
|
+
...minimalValid,
|
|
134
|
+
actions: [{ type: 'webhook', url: 'https://172.16.0.1/x', body_template: '{}' }],
|
|
135
|
+
})
|
|
136
|
+
expect(result.success).toBe(false)
|
|
137
|
+
})
|
|
138
|
+
|
|
139
|
+
it('accepts webhook with 172.32.x.x (outside private range)', () => {
|
|
140
|
+
const result = createAutomationSchema.safeParse({
|
|
141
|
+
...minimalValid,
|
|
142
|
+
actions: [{ type: 'webhook', url: 'https://172.32.0.1/x', body_template: '{}' }],
|
|
143
|
+
})
|
|
144
|
+
expect(result.success).toBe(true)
|
|
145
|
+
})
|
|
146
|
+
|
|
147
|
+
it('rejects webhook without body_template', () => {
|
|
148
|
+
const result = createAutomationSchema.safeParse({
|
|
149
|
+
...minimalValid,
|
|
150
|
+
actions: [{ type: 'webhook', url: 'https://example.com/x' }],
|
|
151
|
+
})
|
|
152
|
+
expect(result.success).toBe(false)
|
|
153
|
+
const issues = result.error?.issues ?? []
|
|
154
|
+
expect(issues.some((i) => i.message === 'automations.editor.errors.bodyRequired')).toBe(true)
|
|
155
|
+
})
|
|
156
|
+
|
|
157
|
+
it('accepts webhook with valid HTTPS public url and body_template', () => {
|
|
158
|
+
const result = createAutomationSchema.safeParse({
|
|
159
|
+
...minimalValid,
|
|
160
|
+
actions: [{ type: 'webhook', url: 'https://example.com/x', body_template: '{}' }],
|
|
161
|
+
})
|
|
162
|
+
expect(result.success).toBe(true)
|
|
163
|
+
})
|
|
164
|
+
|
|
75
165
|
it('rejects send_mail with invalid email', () => {
|
|
76
166
|
const result = createAutomationSchema.safeParse({
|
|
77
167
|
...minimalValid,
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
import { describe, it, expect } from 'vitest'
|
|
2
6
|
import type { Automation } from '@beechcms/core'
|
|
3
7
|
import { resolveAutomationContext, deriveEntryContext } from '../context-resolver'
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
import { describe, it, expect, vi, beforeEach } from 'vitest'
|
|
2
6
|
import type { Automation, IAutomationRepository, ContentRepository, Seed, IIdGenerator } from '@beechcms/core'
|
|
3
7
|
import { runCronAutomations } from '../cron-runner'
|
|
@@ -18,13 +22,13 @@ const SEED: Seed = {
|
|
|
18
22
|
label: 'Post',
|
|
19
23
|
displayNameAlias: 'title',
|
|
20
24
|
branches: [
|
|
21
|
-
{ alias: 'title', type: 'text', label: 'Title' },
|
|
22
|
-
{ alias: 'count', type: 'number', label: 'Count' },
|
|
23
|
-
{ alias: 'published', type: 'boolean', label: 'Published' },
|
|
24
|
-
{ alias: 'publish_date', type: 'date', label: 'Publish Date' },
|
|
25
|
-
{ alias: 'tags_list', type: 'tags', label: 'Tags' },
|
|
26
|
-
{ alias: 'meta_json', type: 'json', label: 'Meta JSON' },
|
|
27
|
-
{ alias: 'body_rich', type: 'richtext', label: 'Body' },
|
|
25
|
+
{ id: 'br_01', alias: 'title', type: 'text', label: 'Title' },
|
|
26
|
+
{ id: 'br_02', alias: 'count', type: 'number', label: 'Count' },
|
|
27
|
+
{ id: 'br_03', alias: 'published', type: 'boolean', label: 'Published' },
|
|
28
|
+
{ id: 'br_04', alias: 'publish_date', type: 'date', label: 'Publish Date' },
|
|
29
|
+
{ id: 'br_05', alias: 'tags_list', type: 'tags', label: 'Tags' },
|
|
30
|
+
{ id: 'br_06', alias: 'meta_json', type: 'json', label: 'Meta JSON' },
|
|
31
|
+
{ id: 'br_07', alias: 'body_rich', type: 'richtext', label: 'Body' },
|
|
28
32
|
],
|
|
29
33
|
}
|
|
30
34
|
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
// SPDX-License-Identifier: BUSL-1.1
|
|
2
|
+
// Copyright (c) 2024–2026 Flavio De Musso. All rights reserved.
|
|
3
|
+
// See LICENSE in the repository root for license terms.
|
|
4
|
+
|
|
1
5
|
import { describe, it, expect, vi } from 'vitest'
|
|
2
6
|
import { executeSetVariable } from '../action-executors/set-variable.executor'
|
|
3
7
|
import { resolveAutomationContext } from '../context-resolver'
|
|
@@ -304,3 +308,76 @@ describe('collection mode', () => {
|
|
|
304
308
|
expect(result._items).toEqual(items)
|
|
305
309
|
})
|
|
306
310
|
})
|
|
311
|
+
|
|
312
|
+
// ── Sprint 07: backward-compatibility with legacy load_type field ──────────────
|
|
313
|
+
|
|
314
|
+
describe('legacy load_type backward compatibility', () => {
|
|
315
|
+
it('L1 — load_type: fruit + single id-eq filter → upgraded to fixed_id path', async () => {
|
|
316
|
+
const item = { id: 'c_1', name: 'Mario', email: 'mario@x.com', total: 99 }
|
|
317
|
+
const findMany = vi.fn().mockResolvedValue({ items: [item] })
|
|
318
|
+
const ctx = await makeCtx({ repository: { findMany } as unknown as ContentRepository })
|
|
319
|
+
|
|
320
|
+
await executeSetVariable(
|
|
321
|
+
{
|
|
322
|
+
type: 'set_variable',
|
|
323
|
+
name: 'cliente',
|
|
324
|
+
seed_slug: 'clienti',
|
|
325
|
+
load_type: 'fruit',
|
|
326
|
+
filters: [{ field: 'id', op: 'eq', value: 'c_1' }],
|
|
327
|
+
} as any,
|
|
328
|
+
ctx,
|
|
329
|
+
)
|
|
330
|
+
|
|
331
|
+
// Should use fixed_id path: pagination.limit = 1, filter on id column
|
|
332
|
+
const [, opts] = findMany.mock.calls[0]
|
|
333
|
+
expect(opts.filters[0].column).toBe('id')
|
|
334
|
+
expect(opts.filters[0].conditions[0].value).toBe('c_1')
|
|
335
|
+
expect(opts.pagination.limit).toBe(1)
|
|
336
|
+
expect(ctx.variables.cliente).toEqual(item)
|
|
337
|
+
})
|
|
338
|
+
|
|
339
|
+
it('L2 — load_type: fruit + non-id filter → collection path (degraded)', async () => {
|
|
340
|
+
const items = [{ id: '1', name: 'Mario', email: 'mario@x.com', total: 10, created_at: 1 }]
|
|
341
|
+
const findMany = vi.fn().mockResolvedValue({ items })
|
|
342
|
+
const ctx = await makeCtx({ repository: { findMany } as unknown as ContentRepository })
|
|
343
|
+
|
|
344
|
+
await executeSetVariable(
|
|
345
|
+
{
|
|
346
|
+
type: 'set_variable',
|
|
347
|
+
name: 'clienti',
|
|
348
|
+
seed_slug: 'clienti',
|
|
349
|
+
load_type: 'fruit',
|
|
350
|
+
filters: [{ field: 'name', op: 'eq', value: 'Mario' }],
|
|
351
|
+
} as any,
|
|
352
|
+
ctx,
|
|
353
|
+
)
|
|
354
|
+
|
|
355
|
+
// Non-id filter: falls through to collection path
|
|
356
|
+
const result = ctx.variables.clienti as any
|
|
357
|
+
expect(result.count).toBe(1)
|
|
358
|
+
})
|
|
359
|
+
|
|
360
|
+
it('L3 — load_type: branch → collection path', async () => {
|
|
361
|
+
const items = [
|
|
362
|
+
{ id: '1', name: 'A', email: 'a@x.com', total: 10, created_at: 1 },
|
|
363
|
+
{ id: '2', name: 'B', email: 'b@x.com', total: 20, created_at: 2 },
|
|
364
|
+
]
|
|
365
|
+
const findMany = vi.fn().mockResolvedValue({ items })
|
|
366
|
+
const ctx = await makeCtx({ repository: { findMany } as unknown as ContentRepository })
|
|
367
|
+
|
|
368
|
+
await executeSetVariable(
|
|
369
|
+
{
|
|
370
|
+
type: 'set_variable',
|
|
371
|
+
name: 'ordini',
|
|
372
|
+
seed_slug: 'clienti',
|
|
373
|
+
load_type: 'branch',
|
|
374
|
+
} as any,
|
|
375
|
+
ctx,
|
|
376
|
+
)
|
|
377
|
+
|
|
378
|
+
const result = ctx.variables.ordini as any
|
|
379
|
+
expect(result.count).toBe(2)
|
|
380
|
+
expect(result.sum).toBeDefined()
|
|
381
|
+
expect(result.pluck).toBeDefined()
|
|
382
|
+
})
|
|
383
|
+
})
|