@crvouga/mockingbird-service-payload-cms 0.1.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/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog — @crvouga/mockingbird-service-payload-cms
2
+
3
+ ## 0.1.0 (2026-09-22)
4
+
5
+ Initial release.
package/README.md ADDED
@@ -0,0 +1,113 @@
1
+ # @crvouga/mockingbird-service-payload-cms
2
+
3
+ Stateful mock of **Payload CMS**'s collection REST API for test suites: `GET /api/<collection>`
4
+ with Payload's paginated envelope (`docs`, `totalDocs`, `limit`, `totalPages`, `page`,
5
+ `pagingCounter`, `hasPrevPage`, `hasNextPage`, `prevPage`, `nextPage`) and a `where` query
6
+ subset, and `GET /api/<collection>/<id>`. The `marketing` collection is seeded with an active
7
+ referral card, so the backend's referral content comes from the "CMS" deterministically, and
8
+ the admin plane lets a test change it.
9
+
10
+ - Operation coverage: [SUPPORT.md](https://github.com/crvouga/mockingbird/blob/main/packages/service/payload-cms/SUPPORT.md)
11
+ - The contract (`openapi.yaml`) is hand-authored from Payload's REST and query docs and the
12
+ consumer's response type (`payload-cms-response.type.ts`).
13
+
14
+ ## Install
15
+
16
+ ```bash
17
+ npm install -D @crvouga/mockingbird-service-payload-cms
18
+ ```
19
+
20
+ ESM only. Node >= 22 or Bun >= 1.2. No native dependencies. Serve it with
21
+ `npx mockingbird-payload-cms serve`, `createServer` from `./server` (Node), or `createRuntime`
22
+ with any Fetch server.
23
+
24
+ ## Usage
25
+
26
+ Point `PAYLOAD_CMS_API_URL` at the mock. The backend validates it as **https-only**
27
+ (`validation.schema.ts`), so either relax that for loopback or put the mock behind TLS.
28
+ Anything that goes wrong (non-2xx, empty docs, bad JSON, a dropped connection) makes the
29
+ backend fall back to its default referral content, which the presets exercise.
30
+
31
+ ```bash
32
+ npx mockingbird-payload-cms serve --port 8822
33
+ # or seed your own collections: --collections ./cms-seed.json ({"marketing": [ … ]})
34
+ ```
35
+
36
+ ```ts
37
+ import { createRuntime } from "@crvouga/mockingbird-service-payload-cms"
38
+
39
+ const cms = createRuntime()
40
+ await cms.fetch(
41
+ new Request("http://cms.test/__admin/collections/marketing/docs", {
42
+ method: "POST",
43
+ headers: { "content-type": "application/json" },
44
+ body: JSON.stringify({ name: "Fall", type: "referral", isActive: true, cardTitle: "Fall Rewards" }),
45
+ }),
46
+ )
47
+ const page = await cms.fetch(
48
+ new Request(
49
+ "http://cms.test/api/marketing?where[type][equals]=referral&where[isActive][equals]=true&limit=1",
50
+ ),
51
+ )
52
+ // → {docs: [{id: 4, cardTitle: "Fall Rewards", …}], totalDocs: 2, limit: 1, …}
53
+ ```
54
+
55
+ ### Routes
56
+
57
+ | Route | Behaviour |
58
+ | --- | --- |
59
+ | `GET /api/<collection>` | `where[<field>][<op>]=<value>` with `equals`, `not_equals`, `in` / `not_in` (comma lists), `exists`, `greater_than(_equal)`, `less_than(_equal)`, `like` (all words, case-insensitive), `contains`; nested `where[and\|or][<i>][…]`; dotted field paths. Values are cast to the document field's type (`"true"` → `true`). `sort=<field>` / `-<field>` (default `-createdAt`), `limit` (default 10; `0` = no limit), `page`. An unknown field is 400 `{errors: [{message: "The following path cannot be queried: <field>"}]}`; an unknown collection 404. `depth`, `locale`, `draft` are accepted and ignored. |
60
+ | `GET /api/<collection>/<id>` | The document, or 404 `{errors: [{message: "The requested resource was not found."}]}`. |
61
+
62
+ Only `marketing` is declared in the contract (it is what our backend reads); any collection
63
+ seeded through the admin plane is served the same way. Ids are integers (Payload's Postgres
64
+ adapter), matching the consumer's `id: number`.
65
+
66
+ **Seed** (`DEFAULT_MARKETING_DOCS`): `1` an inactive referral card, `2` the active referral
67
+ card, `3` an active banner.
68
+
69
+ ### Admin (beyond the standard contract)
70
+
71
+ | Route | Effect |
72
+ | --- | --- |
73
+ | `GET /__admin/collections` | `{collections: {<slug>: <doc count>}}`. |
74
+ | `GET /__admin/collections/:slug` | The collection's documents. |
75
+ | `PUT /__admin/collections/:slug` | `{docs: [...]}` replaces the collection (creates it if new). |
76
+ | `POST /__admin/collections/:slug/docs` | Adds a document (next integer id, timestamps from the mock clock). |
77
+ | `PATCH /__admin/collections/:slug/docs/:id` | Merges fields into a document. |
78
+ | `DELETE /__admin/collections/:slug/docs/:id` | Removes a document. |
79
+
80
+ Fault presets (`POST /__admin/faults {"preset": "<name>", "count"?: n}`): `server_error` (500),
81
+ `forbidden` (403), `collection_not_found` (404), `no_active_docs` (an empty page),
82
+ `malformed_json` (200 HTML), `unavailable` (503 HTML), `connection_drop`, `slow` (10 s).
83
+
84
+ ### Namespaces
85
+
86
+ Our backend's `fetch` sends no credential, so use a `/ns/<name>` suffix on
87
+ `PAYLOAD_CMS_API_URL` (e.g. `http://127.0.0.1:8822/ns/worker-1`) or `x-mockingbird-namespace`.
88
+ A request carrying `Authorization: <collection> API-Key <key>` or a bearer token can also be
89
+ mapped with `PUT /__admin/credentials`.
90
+
91
+ ### Deliberately not modelled
92
+
93
+ - Writes through the REST API (create/update/delete), auth endpoints, access control, drafts,
94
+ versions, locales, relationship population (`depth`), uploads and GraphQL.
95
+ - `where` operators beyond the subset above (`near`, `within`, `intersects`, `all`).
96
+
97
+ ## API
98
+
99
+ | Export | Kind | Description |
100
+ | --- | --- | --- |
101
+ | `PayloadCmsAPI` | class | The in-process mock: `fetch(request)`, `reset()`, `addDoc(slug, fields)`, `updateDoc(slug, id, patch)`, `deleteDoc(slug, id)`, `collections()`. Options: `sqlite`, `now`, `namespace`, `collections`. |
102
+ | `createRuntime` | function | The mock with the full service contract (health, admin, namespaces, presets). Options: `collections`, `clock`, `seed`, `adminKey`, `onLog`, `sqlite`. |
103
+ | `PAYLOAD_CMS_PRESETS` | object | Every named fault preset. |
104
+ | `PAYLOAD_CMS_NAMESPACE` | string | The service name, `"payload-cms"`. |
105
+ | `DEFAULT_MARKETING_DOCS` | array | The marketing collection seed. |
106
+ | `MARKETING_FIELDS` | array | The marketing collection's queryable fields. |
107
+ | `compileWhere` | function | Compile a Payload `where` object into a predicate (or the 400 message). |
108
+ | `payloadCredential` | function | The API key or bearer token a request carries. |
109
+ | `payloadError` | function | Build a Payload error response `{errors: [{message}]}`. |
110
+ | `document`, `operationIds`, `supportedOperationIds` | values | The OpenAPI contract and its operation ids. |
111
+ | `createServer`, `serveTarget`, `DEFAULT_PORT` (`./server`) | Node | Serve over `node:http`; the `serve` CLI target (`--collections <file>`); port 8822. |
112
+
113
+ Part of [mockingbird](https://github.com/crvouga/mockingbird).
@@ -0,0 +1,350 @@
1
+ import {
2
+ createRuntime
3
+ } from "./chunk-Q2QUEFCG.js";
4
+
5
+ // src/server.ts
6
+ import { readFile as readFile2 } from "node:fs/promises";
7
+
8
+ // ../../adapters/node/dist/cli.js
9
+ import { readFile } from "node:fs/promises";
10
+ import { parseArgs } from "node:util";
11
+
12
+ // ../../adapters/node/dist/serve.js
13
+ import { createServer } from "node:http";
14
+ var serve = async (api, options = {}) => {
15
+ const server = createServer(async (req, res) => {
16
+ const chunks = [];
17
+ for await (const chunk of req) {
18
+ chunks.push(Buffer.from(chunk));
19
+ }
20
+ const body = Buffer.concat(chunks);
21
+ const address = server.address();
22
+ const port = typeof address === "object" && address !== null ? address.port : void 0;
23
+ const base = `http://${req.headers.host ?? `localhost:${port ?? 80}`}`;
24
+ const raw = req.url ?? "/";
25
+ const url = new URL(raw.replace(/^\/+/, "/"), base);
26
+ const method = req.method ?? "GET";
27
+ const init = { method, headers: req.headers };
28
+ if (method !== "GET" && method !== "HEAD" && body.length > 0) {
29
+ init.body = body;
30
+ }
31
+ const aborted = new AbortController();
32
+ res.once("close", () => {
33
+ if (!res.writableFinished)
34
+ aborted.abort();
35
+ });
36
+ init.signal = aborted.signal;
37
+ const request = new Request(url, init);
38
+ let response;
39
+ try {
40
+ response = await api.fetch(request);
41
+ } catch (error) {
42
+ if (error.code === "MOCKINGBIRD_DROP") {
43
+ req.socket.destroy();
44
+ return;
45
+ }
46
+ res.writeHead(500, { "content-type": "application/json" });
47
+ res.end(JSON.stringify({
48
+ error: {
49
+ type: "mockingbird_internal",
50
+ message: error instanceof Error ? error.message : String(error)
51
+ }
52
+ }));
53
+ return;
54
+ }
55
+ const headers = Object.fromEntries(response.headers);
56
+ const cookies = response.headers.getSetCookie();
57
+ if (cookies.length > 0)
58
+ headers["set-cookie"] = cookies;
59
+ if (!response.body) {
60
+ res.writeHead(response.status, headers);
61
+ res.end();
62
+ return;
63
+ }
64
+ res.writeHead(response.status, headers);
65
+ res.flushHeaders();
66
+ const reader = response.body.getReader();
67
+ try {
68
+ for (; ; ) {
69
+ const { done, value } = await reader.read();
70
+ if (done)
71
+ break;
72
+ if (!res.write(value))
73
+ await new Promise((resolve) => res.once("drain", resolve));
74
+ }
75
+ res.end();
76
+ } catch {
77
+ res.destroy();
78
+ } finally {
79
+ reader.releaseLock();
80
+ }
81
+ });
82
+ await new Promise((resolve, reject) => {
83
+ server.once("error", reject);
84
+ server.listen(options.port ?? 0, options.host, resolve);
85
+ });
86
+ return server;
87
+ };
88
+
89
+ // ../../adapters/node/dist/listen.js
90
+ var listen = async (api, options = {}) => {
91
+ const host = options.host ?? "127.0.0.1";
92
+ const server = await serve(api, { port: options.port ?? 0, host });
93
+ const address = server.address();
94
+ const port = typeof address === "object" && address !== null ? address.port : options.port ?? 0;
95
+ const shown = host.includes(":") ? `[${host}]` : host;
96
+ return {
97
+ url: `http://${shown}:${port}`,
98
+ port,
99
+ host,
100
+ server,
101
+ close: () => new Promise((resolve, reject) => {
102
+ server.close((error) => {
103
+ if (error && error.code !== "ERR_SERVER_NOT_RUNNING")
104
+ reject(error);
105
+ else
106
+ resolve();
107
+ });
108
+ server.closeAllConnections?.();
109
+ })
110
+ };
111
+ };
112
+
113
+ // ../../adapters/node/dist/cli.js
114
+ var optionHelp = (options) => Object.entries(options).map(([name, option]) => {
115
+ const flag = `--${name}${option.type === "string" ? ` ${option.value ?? "<value>"}` : ""}`;
116
+ const fallback = option.default !== void 0 ? ` (default: ${String(option.default)})` : "";
117
+ return ` ${flag.padEnd(30)} ${option.description}${fallback}`;
118
+ });
119
+ var help = (spec) => [
120
+ `${spec.bin} \u2014 ${spec.description}`,
121
+ "",
122
+ "Usage:",
123
+ ` ${spec.bin} <command> [options]`,
124
+ "",
125
+ "Commands:",
126
+ ...Object.entries(spec.commands).map(([name, c]) => ` ${name.padEnd(30)} ${c.summary}`),
127
+ "",
128
+ `Run \`${spec.bin} <command> --help\` for a command's options.`
129
+ ].join("\n");
130
+ var commandHelp = (spec, name, command) => [
131
+ `${spec.bin} ${name} \u2014 ${command.summary}`,
132
+ "",
133
+ "Usage:",
134
+ ` ${command.usage ?? `${spec.bin} ${name} [options]`}`,
135
+ ...command.options ? ["", "Options:", ...optionHelp(command.options)] : []
136
+ ].join("\n");
137
+ var runCli = async (spec, argv) => {
138
+ const pair = argv.length >= 2 ? `${argv[0]} ${argv[1]}` : void 0;
139
+ const words = pair !== void 0 && spec.commands[pair] ? 2 : 1;
140
+ const name = words === 2 ? pair : argv[0];
141
+ const rest = argv.slice(words);
142
+ if (name === void 0 || name === "--help" || name === "-h" || name === "help") {
143
+ console.log(help(spec));
144
+ return 0;
145
+ }
146
+ const command = spec.commands[name];
147
+ if (!command) {
148
+ console.error(`${spec.bin}: unknown command ${JSON.stringify(name)}
149
+
150
+ ${help(spec)}`);
151
+ return 2;
152
+ }
153
+ if (rest.includes("--help") || rest.includes("-h")) {
154
+ console.log(commandHelp(spec, name, command));
155
+ return 0;
156
+ }
157
+ let parsed;
158
+ try {
159
+ parsed = parseArgs({
160
+ args: rest,
161
+ allowPositionals: true,
162
+ strict: true,
163
+ options: Object.fromEntries(Object.entries(command.options ?? {}).map(([key, option]) => [
164
+ key,
165
+ {
166
+ type: option.type,
167
+ ...option.default !== void 0 ? { default: option.default } : {}
168
+ }
169
+ ]))
170
+ });
171
+ } catch (error) {
172
+ console.error(`${spec.bin} ${name}: ${error instanceof Error ? error.message : String(error)}
173
+
174
+ ${commandHelp(spec, name, command)}`);
175
+ return 2;
176
+ }
177
+ return command.run(parsed.values, parsed.positionals);
178
+ };
179
+ var COMMON_SERVE_OPTIONS = {
180
+ port: { type: "string", value: "<port>", description: "Port to listen on" },
181
+ host: { type: "string", value: "<host>", description: "Interface to bind", default: "127.0.0.1" },
182
+ "admin-key": {
183
+ type: "string",
184
+ value: "<key>",
185
+ description: "Require x-mockingbird-admin-key on /__admin/* (env MOCKINGBIRD_ADMIN_KEY)"
186
+ },
187
+ seed: { type: "string", value: "<seed>", description: "Seed for every random choice" },
188
+ log: {
189
+ type: "string",
190
+ value: "<pretty|json|off>",
191
+ description: "Request log format",
192
+ default: "pretty"
193
+ },
194
+ "log-requests": {
195
+ type: "boolean",
196
+ description: "One JSON line per request: namespace, operationId, status, ids touched (never bodies). Same as --log json"
197
+ },
198
+ config: {
199
+ type: "string",
200
+ value: "<file>",
201
+ description: "Serve every service in a mockingbird.json config instead"
202
+ }
203
+ };
204
+ var formatLog = (format) => {
205
+ if (format === "off")
206
+ return void 0;
207
+ if (format === "json")
208
+ return (entry) => console.log(JSON.stringify(entry));
209
+ return (entry) => {
210
+ const op = entry.operationId ?? (entry.unmatched ? "UNMATCHED" : "-");
211
+ const ns = entry.namespace === "default" ? "" : ` [${entry.namespace}]`;
212
+ const fault = entry.faultId ? ` fault=${entry.faultId}` : "";
213
+ const adopted = entry.adopted ? " adopted" : "";
214
+ console.log(`${entry.service} ${entry.method} ${entry.path} ${entry.status} ${op} ${entry.durationMs}ms${ns}${fault}${adopted}`);
215
+ };
216
+ };
217
+ var asString = (value) => typeof value === "string" ? value : void 0;
218
+ var loadTarget = async (name, own) => {
219
+ if (name === own.name)
220
+ return own;
221
+ const specifier = `@crvouga/mockingbird-service-${name}/server`;
222
+ try {
223
+ const mod = await import(specifier);
224
+ if (!mod.serveTarget)
225
+ throw new Error(`${specifier} exports no serveTarget`);
226
+ return mod.serveTarget;
227
+ } catch (error) {
228
+ const reason = error instanceof Error ? error.message : String(error);
229
+ throw new Error(`cannot load service "${name}": ${reason}. Install @crvouga/mockingbird-service-${name}.`);
230
+ }
231
+ };
232
+ var start = async (target, values, config) => {
233
+ const runtime = await target.create(values, {
234
+ adminKey: config.adminKey,
235
+ seed: config.seed,
236
+ onLog: formatLog(config.log)
237
+ });
238
+ const listening = await listen(runtime, { port: config.port, host: config.host });
239
+ console.log(`${target.name} mock listening on ${listening.url}`);
240
+ console.log(`${target.name} health: GET ${listening.url}/health`);
241
+ console.log(`${target.name} admin: ${listening.url}/__admin (${config.adminKey ? "x-mockingbird-admin-key required" : "open \u2014 pass --admin-key to lock"})`);
242
+ for (const line of target.banner?.(runtime) ?? [])
243
+ console.log(`${target.name} ${line}`);
244
+ return listening;
245
+ };
246
+ var untilSignal = async (servers) => new Promise((resolve) => {
247
+ const stop = async () => {
248
+ await Promise.allSettled(servers.map((s) => s.close()));
249
+ resolve(0);
250
+ };
251
+ process.once("SIGINT", stop);
252
+ process.once("SIGTERM", stop);
253
+ });
254
+ var serveCommand = (target) => ({
255
+ summary: `Serve the ${target.name} mock over HTTP`,
256
+ options: { ...COMMON_SERVE_OPTIONS, ...target.options },
257
+ async run(values) {
258
+ const log = values["log-requests"] === true ? "json" : asString(values.log) ?? "pretty";
259
+ if (!["pretty", "json", "off"].includes(log)) {
260
+ console.error(`--log must be pretty, json or off (got ${log})`);
261
+ return 2;
262
+ }
263
+ const configPath = asString(values.config);
264
+ if (configPath !== void 0) {
265
+ const config = JSON.parse(await readFile(configPath, "utf8"));
266
+ const servers = [];
267
+ try {
268
+ for (const [name, entry] of Object.entries(config.services ?? {})) {
269
+ const each = await loadTarget(name, target);
270
+ servers.push(await start(each, entry.options ?? {}, {
271
+ port: entry.port ?? each.defaultPort,
272
+ host: entry.host ?? "127.0.0.1",
273
+ ...entry.adminKey !== void 0 ? { adminKey: entry.adminKey } : {},
274
+ ...entry.seed !== void 0 ? { seed: entry.seed } : {},
275
+ log: config.log ?? log
276
+ }));
277
+ }
278
+ } catch (error) {
279
+ await Promise.allSettled(servers.map((s) => s.close()));
280
+ console.error(error instanceof Error ? error.message : String(error));
281
+ return 1;
282
+ }
283
+ return untilSignal(servers);
284
+ }
285
+ const port = asString(values.port);
286
+ const adminKey = asString(values["admin-key"]) ?? process.env.MOCKINGBIRD_ADMIN_KEY;
287
+ const seed = asString(values.seed);
288
+ let listening;
289
+ try {
290
+ listening = await start(target, values, {
291
+ port: port === void 0 ? target.defaultPort : Number.parseInt(port, 10),
292
+ host: asString(values.host) ?? "127.0.0.1",
293
+ ...adminKey !== void 0 ? { adminKey } : {},
294
+ ...seed !== void 0 ? { seed } : {},
295
+ log
296
+ });
297
+ } catch (error) {
298
+ console.error(error instanceof Error ? error.message : String(error));
299
+ return 1;
300
+ }
301
+ return untilSignal([listening]);
302
+ }
303
+ });
304
+
305
+ // src/server.ts
306
+ var DEFAULT_PORT = 8822;
307
+ var createServer2 = async (options = {}) => {
308
+ const { port, host, ...rest } = options;
309
+ const runtime = createRuntime(rest);
310
+ const listening = await listen(runtime, {
311
+ port: port ?? 0,
312
+ ...host !== void 0 ? { host } : {}
313
+ });
314
+ return { ...listening, runtime };
315
+ };
316
+ var text = (value) => typeof value === "string" ? value : void 0;
317
+ var serveTarget = {
318
+ name: "payload-cms",
319
+ defaultPort: DEFAULT_PORT,
320
+ options: {
321
+ collections: {
322
+ type: "string",
323
+ value: "<file.json>",
324
+ description: 'Seed collections from a JSON file {"<slug>": [docs\u2026]} instead of the default marketing seed'
325
+ }
326
+ },
327
+ create: async (values, common) => {
328
+ const file = text(values.collections);
329
+ const collections = file ? JSON.parse(await readFile2(file, "utf8")) : void 0;
330
+ return createRuntime({
331
+ ...collections ? { collections } : {},
332
+ ...common.adminKey !== void 0 ? { adminKey: common.adminKey } : {},
333
+ ...common.seed !== void 0 ? { seed: common.seed } : {},
334
+ ...common.onLog ? { onLog: common.onLog } : {}
335
+ });
336
+ },
337
+ banner: () => [
338
+ "reads: GET /api/<collection>?where[field][op]=\u2026&limit=&page=&sort=, GET /api/<collection>/<id>",
339
+ "namespaces: x-mockingbird-namespace, or a /ns/<name> suffix on PAYLOAD_CMS_API_URL"
340
+ ]
341
+ };
342
+
343
+ export {
344
+ runCli,
345
+ serveCommand,
346
+ DEFAULT_PORT,
347
+ createServer2 as createServer,
348
+ serveTarget
349
+ };
350
+ //# sourceMappingURL=chunk-CMLKVFH4.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../src/server.ts", "../../../adapters/node/src/cli.ts", "../../../adapters/node/src/serve.ts", "../../../adapters/node/src/listen.ts"],
4
+ "sourcesContent": ["/// <reference types=\"node\" />\nimport { readFile } from \"node:fs/promises\"\nimport { type Listening, listen, type ServeTarget } from \"@crvouga/mockingbird-adapter-node\"\nimport { createRuntime, type PayloadCmsRuntime, type PayloadCmsRuntimeOptions } from \"./runtime.js\"\nimport type { Seed } from \"./state.js\"\n\n/** Port `mockingbird-payload-cms serve` listens on when none is given. */\nexport const DEFAULT_PORT = 8822\n\nexport type PayloadCmsServerOptions = PayloadCmsRuntimeOptions & {\n /** Default `0`: the OS picks a free port. */\n port?: number\n /** Default `127.0.0.1`. */\n host?: string\n}\n\nexport type PayloadCmsServer = Listening & { runtime: PayloadCmsRuntime }\n\n/** Serve the Payload CMS mock over `node:http`. */\nexport const createServer = async (\n options: PayloadCmsServerOptions = {},\n): Promise<PayloadCmsServer> => {\n const { port, host, ...rest } = options\n const runtime = createRuntime(rest)\n const listening = await listen(runtime, {\n port: port ?? 0,\n ...(host !== undefined ? { host } : {}),\n })\n return { ...listening, runtime }\n}\n\nconst text = (value: string | boolean | undefined) =>\n typeof value === \"string\" ? value : undefined\n\n/** How `serve` (and `serve --config`) builds the Payload CMS mock from flags. */\nexport const serveTarget: ServeTarget = {\n name: \"payload-cms\",\n defaultPort: DEFAULT_PORT,\n options: {\n collections: {\n type: \"string\",\n value: \"<file.json>\",\n description:\n 'Seed collections from a JSON file {\"<slug>\": [docs\u2026]} instead of the default marketing seed',\n },\n },\n create: async (values, common) => {\n const file = text(values.collections)\n const collections = file ? (JSON.parse(await readFile(file, \"utf8\")) as Seed) : undefined\n return createRuntime({\n ...(collections ? { collections } : {}),\n ...(common.adminKey !== undefined ? { adminKey: common.adminKey } : {}),\n ...(common.seed !== undefined ? { seed: common.seed } : {}),\n ...(common.onLog ? { onLog: common.onLog } : {}),\n })\n },\n banner: () => [\n \"reads: GET /api/<collection>?where[field][op]=\u2026&limit=&page=&sort=, GET /api/<collection>/<id>\",\n \"namespaces: x-mockingbird-namespace, or a /ns/<name> suffix on PAYLOAD_CMS_API_URL\",\n ],\n}\n", "import { readFile } from \"node:fs/promises\"\nimport { type ParseArgsConfig, parseArgs } from \"node:util\"\nimport type { RequestLog, ServiceInstance, ServiceRuntime } from \"@crvouga/mockingbird-service\"\nimport { type Listening, listen } from \"./listen.js\"\n\nexport type CliOption = {\n type: \"string\" | \"boolean\"\n description: string\n /** Shown in help; the value placeholder, e.g. `<port>`. */\n value?: string\n default?: string | boolean\n}\n\nexport type CliValues = Record<string, string | boolean | undefined>\n\nexport type CliCommand = {\n summary: string\n usage?: string\n options?: Record<string, CliOption>\n /** Resolves to an exit code; a server command resolves only when it stops. */\n run(values: CliValues, positionals: string[]): Promise<number>\n}\n\nexport type CliSpec = {\n bin: string\n description: string\n commands: Record<string, CliCommand>\n}\n\nconst optionHelp = (options: Record<string, CliOption>): string[] =>\n Object.entries(options).map(([name, option]) => {\n const flag = `--${name}${option.type === \"string\" ? ` ${option.value ?? \"<value>\"}` : \"\"}`\n const fallback = option.default !== undefined ? ` (default: ${String(option.default)})` : \"\"\n return ` ${flag.padEnd(30)} ${option.description}${fallback}`\n })\n\nconst help = (spec: CliSpec): string =>\n [\n `${spec.bin} \u2014 ${spec.description}`,\n \"\",\n \"Usage:\",\n ` ${spec.bin} <command> [options]`,\n \"\",\n \"Commands:\",\n ...Object.entries(spec.commands).map(([name, c]) => ` ${name.padEnd(30)} ${c.summary}`),\n \"\",\n `Run \\`${spec.bin} <command> --help\\` for a command's options.`,\n ].join(\"\\n\")\n\nconst commandHelp = (spec: CliSpec, name: string, command: CliCommand): string =>\n [\n `${spec.bin} ${name} \u2014 ${command.summary}`,\n \"\",\n \"Usage:\",\n ` ${command.usage ?? `${spec.bin} ${name} [options]`}`,\n ...(command.options ? [\"\", \"Options:\", ...optionHelp(command.options)] : []),\n ].join(\"\\n\")\n\n/** Parse `argv` against `spec` and run the chosen command. Resolves to an exit code. */\nexport const runCli = async (spec: CliSpec, argv: string[]): Promise<number> => {\n // Two-word commands (`corpus pull`) win over one-word ones.\n const pair = argv.length >= 2 ? `${argv[0]} ${argv[1]}` : undefined\n const words = pair !== undefined && spec.commands[pair] ? 2 : 1\n const name = words === 2 ? pair : argv[0]\n const rest = argv.slice(words)\n if (name === undefined || name === \"--help\" || name === \"-h\" || name === \"help\") {\n console.log(help(spec))\n return 0\n }\n const command = spec.commands[name]\n if (!command) {\n console.error(`${spec.bin}: unknown command ${JSON.stringify(name)}\\n\\n${help(spec)}`)\n return 2\n }\n if (rest.includes(\"--help\") || rest.includes(\"-h\")) {\n console.log(commandHelp(spec, name, command))\n return 0\n }\n let parsed: { values: CliValues; positionals: string[] }\n try {\n parsed = parseArgs({\n args: rest,\n allowPositionals: true,\n strict: true,\n options: Object.fromEntries(\n Object.entries(command.options ?? {}).map(([key, option]) => [\n key,\n {\n type: option.type,\n ...(option.default !== undefined ? { default: option.default } : {}),\n },\n ]),\n ) as ParseArgsConfig[\"options\"],\n }) as { values: CliValues; positionals: string[] }\n } catch (error) {\n console.error(\n `${spec.bin} ${name}: ${error instanceof Error ? error.message : String(error)}\\n\\n${commandHelp(spec, name, command)}`,\n )\n return 2\n }\n return command.run(parsed.values, parsed.positionals)\n}\n\n// \u2500\u2500 serve \u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\n\nexport type LogFormat = \"pretty\" | \"json\" | \"off\"\n\nexport type CommonServeOptions = {\n adminKey: string | undefined\n seed: string | undefined\n onLog: ((entry: RequestLog) => void) | undefined\n}\n\n/**\n * What a service contributes to `serve`: how to build its runtime from CLI flags,\n * and what to say at startup. Every service's `./server` entry exports one as\n * `serveTarget`, which is also how `serve --config` finds services by name.\n */\nexport type ServeTarget = {\n name: string\n defaultPort: number\n /** Serve flags beyond the common ones. */\n options?: Record<string, CliOption>\n create(\n values: CliValues,\n common: CommonServeOptions,\n ): Promise<ServiceRuntime<ServiceInstance>> | ServiceRuntime<ServiceInstance>\n /** Startup lines after the listen address, e.g. the loaded corpus version. */\n banner?(runtime: ServiceRuntime<ServiceInstance>): string[]\n}\n\nconst COMMON_SERVE_OPTIONS: Record<string, CliOption> = {\n port: { type: \"string\", value: \"<port>\", description: \"Port to listen on\" },\n host: { type: \"string\", value: \"<host>\", description: \"Interface to bind\", default: \"127.0.0.1\" },\n \"admin-key\": {\n type: \"string\",\n value: \"<key>\",\n description: \"Require x-mockingbird-admin-key on /__admin/* (env MOCKINGBIRD_ADMIN_KEY)\",\n },\n seed: { type: \"string\", value: \"<seed>\", description: \"Seed for every random choice\" },\n log: {\n type: \"string\",\n value: \"<pretty|json|off>\",\n description: \"Request log format\",\n default: \"pretty\",\n },\n \"log-requests\": {\n type: \"boolean\",\n description:\n \"One JSON line per request: namespace, operationId, status, ids touched (never bodies). Same as --log json\",\n },\n config: {\n type: \"string\",\n value: \"<file>\",\n description: \"Serve every service in a mockingbird.json config instead\",\n },\n}\n\nconst formatLog = (format: LogFormat) => {\n if (format === \"off\") return undefined\n if (format === \"json\") return (entry: RequestLog) => console.log(JSON.stringify(entry))\n return (entry: RequestLog) => {\n const op = entry.operationId ?? (entry.unmatched ? \"UNMATCHED\" : \"-\")\n const ns = entry.namespace === \"default\" ? \"\" : ` [${entry.namespace}]`\n const fault = entry.faultId ? ` fault=${entry.faultId}` : \"\"\n const adopted = entry.adopted ? \" adopted\" : \"\"\n console.log(\n `${entry.service} ${entry.method} ${entry.path} ${entry.status} ${op} ${entry.durationMs}ms${ns}${fault}${adopted}`,\n )\n }\n}\n\nconst asString = (value: string | boolean | undefined): string | undefined =>\n typeof value === \"string\" ? value : undefined\n\n/** A service entry in `mockingbird.json`. */\nexport type ConfigService = {\n port?: number\n host?: string\n adminKey?: string\n seed?: string\n /** Service-specific serve flags, by long name: `{ \"webhook-url\": \"\u2026\" }`. */\n options?: Record<string, string | boolean>\n}\n\nexport type MockingbirdConfig = {\n /** Keyed by service name: `junction` loads `@crvouga/mockingbird-service-junction`. */\n services: Record<string, ConfigService>\n log?: LogFormat\n}\n\nconst loadTarget = async (name: string, own: ServeTarget): Promise<ServeTarget> => {\n if (name === own.name) return own\n const specifier = `@crvouga/mockingbird-service-${name}/server`\n try {\n const mod = (await import(specifier)) as { serveTarget?: ServeTarget }\n if (!mod.serveTarget) throw new Error(`${specifier} exports no serveTarget`)\n return mod.serveTarget\n } catch (error) {\n const reason = error instanceof Error ? error.message : String(error)\n throw new Error(\n `cannot load service \"${name}\": ${reason}. Install @crvouga/mockingbird-service-${name}.`,\n )\n }\n}\n\nconst start = async (\n target: ServeTarget,\n values: CliValues,\n config: { port: number; host: string; adminKey?: string; seed?: string; log: LogFormat },\n): Promise<Listening> => {\n const runtime = await target.create(values, {\n adminKey: config.adminKey,\n seed: config.seed,\n onLog: formatLog(config.log),\n })\n const listening = await listen(runtime, { port: config.port, host: config.host })\n console.log(`${target.name} mock listening on ${listening.url}`)\n console.log(`${target.name} health: GET ${listening.url}/health`)\n console.log(\n `${target.name} admin: ${listening.url}/__admin (${config.adminKey ? \"x-mockingbird-admin-key required\" : \"open \u2014 pass --admin-key to lock\"})`,\n )\n for (const line of target.banner?.(runtime) ?? []) console.log(`${target.name} ${line}`)\n return listening\n}\n\nconst untilSignal = async (servers: Listening[]): Promise<number> =>\n new Promise((resolve) => {\n const stop = async () => {\n await Promise.allSettled(servers.map((s) => s.close()))\n resolve(0)\n }\n process.once(\"SIGINT\", stop)\n process.once(\"SIGTERM\", stop)\n })\n\n/** The standard `serve` command for a service, including multi-service `--config`. */\nexport const serveCommand = (target: ServeTarget): CliCommand => ({\n summary: `Serve the ${target.name} mock over HTTP`,\n options: { ...COMMON_SERVE_OPTIONS, ...target.options },\n async run(values) {\n const log = (\n values[\"log-requests\"] === true ? \"json\" : (asString(values.log) ?? \"pretty\")\n ) as LogFormat\n if (![\"pretty\", \"json\", \"off\"].includes(log)) {\n console.error(`--log must be pretty, json or off (got ${log})`)\n return 2\n }\n const configPath = asString(values.config)\n if (configPath !== undefined) {\n const config = JSON.parse(await readFile(configPath, \"utf8\")) as MockingbirdConfig\n const servers: Listening[] = []\n try {\n for (const [name, entry] of Object.entries(config.services ?? {})) {\n const each = await loadTarget(name, target)\n servers.push(\n await start(each, entry.options ?? {}, {\n port: entry.port ?? each.defaultPort,\n host: entry.host ?? \"127.0.0.1\",\n ...(entry.adminKey !== undefined ? { adminKey: entry.adminKey } : {}),\n ...(entry.seed !== undefined ? { seed: entry.seed } : {}),\n log: config.log ?? log,\n }),\n )\n }\n } catch (error) {\n await Promise.allSettled(servers.map((s) => s.close()))\n console.error(error instanceof Error ? error.message : String(error))\n return 1\n }\n return untilSignal(servers)\n }\n const port = asString(values.port)\n const adminKey = asString(values[\"admin-key\"]) ?? process.env.MOCKINGBIRD_ADMIN_KEY\n const seed = asString(values.seed)\n let listening: Listening\n try {\n listening = await start(target, values, {\n port: port === undefined ? target.defaultPort : Number.parseInt(port, 10),\n host: asString(values.host) ?? \"127.0.0.1\",\n ...(adminKey !== undefined ? { adminKey } : {}),\n ...(seed !== undefined ? { seed } : {}),\n log,\n })\n } catch (error) {\n console.error(error instanceof Error ? error.message : String(error))\n return 1\n }\n return untilSignal([listening])\n },\n})\n", "import { createServer } from \"node:http\"\nimport type { FetchAPI } from \"@crvouga/mockingbird-core\"\n\n/** Options for {@link serve}. */\nexport type NodeServeOptions = {\n port?: number\n host?: string\n}\n\n/**\n * Serve any Mockingbird {@link FetchAPI} over `node:http`.\n * Port defaults to `0`, so the OS assigns an ephemeral port (read from `server.address()`).\n */\nexport const serve = async (api: FetchAPI, options: NodeServeOptions = {}) => {\n const server = createServer(async (req, res) => {\n const chunks: Buffer[] = []\n for await (const chunk of req) {\n chunks.push(Buffer.from(chunk))\n }\n const body = Buffer.concat(chunks)\n const address = server.address()\n const port = typeof address === \"object\" && address !== null ? address.port : undefined\n const base = `http://${req.headers.host ?? `localhost:${port ?? 80}`}`\n const raw = req.url ?? \"/\"\n const url = new URL(raw.replace(/^\\/+/, \"/\"), base)\n const method = req.method ?? \"GET\"\n const init: RequestInit = { method, headers: req.headers as Record<string, string> }\n if (method !== \"GET\" && method !== \"HEAD\" && body.length > 0) {\n init.body = body\n }\n const aborted = new AbortController()\n res.once(\"close\", () => {\n if (!res.writableFinished) aborted.abort()\n })\n init.signal = aborted.signal\n const request = new Request(url, init)\n let response: Response\n try {\n response = await api.fetch(request)\n } catch (error) {\n // A `drop` fault: destroy the socket so the client sees the connection die.\n if ((error as { code?: string }).code === \"MOCKINGBIRD_DROP\") {\n req.socket.destroy()\n return\n }\n res.writeHead(500, { \"content-type\": \"application/json\" })\n res.end(\n JSON.stringify({\n error: {\n type: \"mockingbird_internal\",\n message: error instanceof Error ? error.message : String(error),\n },\n }),\n )\n return\n }\n // Headers#entries() joins repeated headers; Set-Cookie must stay one header per cookie.\n const headers: Record<string, string | string[]> = Object.fromEntries(response.headers)\n const cookies = response.headers.getSetCookie()\n if (cookies.length > 0) headers[\"set-cookie\"] = cookies\n if (!response.body) {\n res.writeHead(response.status, headers)\n res.end()\n return\n }\n // Stream the body chunk by chunk: event streams and long-polls must not be buffered.\n res.writeHead(response.status, headers)\n res.flushHeaders()\n const reader = response.body.getReader()\n try {\n for (;;) {\n const { done, value } = await reader.read()\n if (done) break\n if (!res.write(value)) await new Promise<void>((resolve) => res.once(\"drain\", resolve))\n }\n res.end()\n } catch {\n res.destroy()\n } finally {\n reader.releaseLock()\n }\n })\n await new Promise<void>((resolve, reject) => {\n server.once(\"error\", reject)\n server.listen(options.port ?? 0, options.host, resolve)\n })\n return server\n}\n", "import type { Server } from \"node:http\"\nimport type { FetchAPI } from \"@crvouga/mockingbird-core\"\nimport { serve } from \"./serve.js\"\n\nexport type ListenOptions = {\n /** Default `0`: the OS picks a free port. */\n port?: number\n /** Default `127.0.0.1`: a mock should not be reachable off the machine by accident. */\n host?: string\n}\n\n/** A running server, with the address it actually bound. */\nexport type Listening = {\n url: string\n port: number\n host: string\n server: Server\n close(): Promise<void>\n}\n\nexport const listen = async (api: FetchAPI, options: ListenOptions = {}): Promise<Listening> => {\n const host = options.host ?? \"127.0.0.1\"\n const server = await serve(api, { port: options.port ?? 0, host })\n const address = server.address()\n const port = typeof address === \"object\" && address !== null ? address.port : (options.port ?? 0)\n const shown = host.includes(\":\") ? `[${host}]` : host\n return {\n url: `http://${shown}:${port}`,\n port,\n host,\n server,\n close: () =>\n new Promise<void>((resolve, reject) => {\n // Stop accepting first, then drop keep-alive sockets so close() can finish.\n server.close((error) => {\n if (error && (error as { code?: string }).code !== \"ERR_SERVER_NOT_RUNNING\") reject(error)\n else resolve()\n })\n server.closeAllConnections?.()\n }),\n }\n}\n"],
5
+ "mappings": "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",
6
+ "names": ["readFile", "createServer", "readFile"]
7
+ }