latency-lab 1.0.0 → 1.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.
Files changed (49) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/README.md +58 -0
  3. package/dist/core.cjs +15 -0
  4. package/dist/core.cjs.map +1 -1
  5. package/dist/core.d.cts +4 -2
  6. package/dist/core.d.ts +4 -2
  7. package/dist/core.js +15 -1
  8. package/dist/core.js.map +1 -1
  9. package/dist/express.cjs +25 -14
  10. package/dist/express.cjs.map +1 -1
  11. package/dist/express.d.cts +1 -40
  12. package/dist/express.d.ts +1 -40
  13. package/dist/express.js +25 -14
  14. package/dist/express.js.map +1 -1
  15. package/dist/fastify.cjs +179 -0
  16. package/dist/fastify.cjs.map +1 -0
  17. package/dist/fastify.d.cts +29 -0
  18. package/dist/fastify.d.ts +29 -0
  19. package/dist/fastify.js +177 -0
  20. package/dist/fastify.js.map +1 -0
  21. package/dist/hono.cjs +189 -0
  22. package/dist/hono.cjs.map +1 -0
  23. package/dist/hono.d.cts +27 -0
  24. package/dist/hono.d.ts +27 -0
  25. package/dist/hono.js +187 -0
  26. package/dist/hono.js.map +1 -0
  27. package/dist/index.cjs +132 -31
  28. package/dist/index.cjs.map +1 -1
  29. package/dist/index.d.cts +4 -2
  30. package/dist/index.d.ts +4 -2
  31. package/dist/index.js +130 -32
  32. package/dist/index.js.map +1 -1
  33. package/dist/next.cjs +30 -16
  34. package/dist/next.cjs.map +1 -1
  35. package/dist/next.d.cts +3 -54
  36. package/dist/next.d.ts +3 -54
  37. package/dist/next.js +30 -16
  38. package/dist/next.js.map +1 -1
  39. package/dist/presets.cjs +28 -1
  40. package/dist/presets.cjs.map +1 -1
  41. package/dist/presets.d.cts +3 -0
  42. package/dist/presets.d.ts +3 -0
  43. package/dist/presets.js +28 -1
  44. package/dist/presets.js.map +1 -1
  45. package/dist/types.cjs.map +1 -1
  46. package/dist/types.d.cts +13 -1
  47. package/dist/types.d.ts +13 -1
  48. package/dist/types.js.map +1 -1
  49. package/package.json +48 -6
package/dist/hono.js ADDED
@@ -0,0 +1,187 @@
1
+ // src/types.ts
2
+ var ChaosConfigError = class extends Error {
3
+ name = "ChaosConfigError";
4
+ constructor(message) {
5
+ super(message);
6
+ Object.setPrototypeOf(this, new.target.prototype);
7
+ }
8
+ };
9
+
10
+ // src/core.ts
11
+ function validateChaosOptions(options) {
12
+ if (options === null || typeof options !== "object") {
13
+ throw new ChaosConfigError("ChaosOptions must be a plain object.");
14
+ }
15
+ const o = options;
16
+ if (typeof o["baseDelay"] !== "number" || !Number.isFinite(o["baseDelay"])) {
17
+ throw new ChaosConfigError(
18
+ `ChaosOptions.baseDelay must be a finite number, got: ${String(o["baseDelay"])}`
19
+ );
20
+ }
21
+ if (o["baseDelay"] < 0) {
22
+ throw new ChaosConfigError(
23
+ `ChaosOptions.baseDelay must be \u2265 0, got: ${String(o["baseDelay"])}`
24
+ );
25
+ }
26
+ if (typeof o["jitter"] !== "number" || !Number.isFinite(o["jitter"])) {
27
+ throw new ChaosConfigError(
28
+ `ChaosOptions.jitter must be a finite number, got: ${String(o["jitter"])}`
29
+ );
30
+ }
31
+ if (o["jitter"] < 0) {
32
+ throw new ChaosConfigError(
33
+ `ChaosOptions.jitter must be \u2265 0, got: ${String(o["jitter"])}`
34
+ );
35
+ }
36
+ if (o["wavePeriod"] !== void 0) {
37
+ if (typeof o["wavePeriod"] !== "number" || !Number.isFinite(o["wavePeriod"])) {
38
+ throw new ChaosConfigError(
39
+ `ChaosOptions.wavePeriod must be a finite number when provided, got: ${String(o["wavePeriod"])}`
40
+ );
41
+ }
42
+ if (o["wavePeriod"] <= 0) {
43
+ throw new ChaosConfigError(
44
+ `ChaosOptions.wavePeriod must be > 0 when provided, got: ${String(o["wavePeriod"])}`
45
+ );
46
+ }
47
+ }
48
+ if (typeof o["failureRate"] !== "number" || !Number.isFinite(o["failureRate"])) {
49
+ throw new ChaosConfigError(
50
+ `ChaosOptions.failureRate must be a finite number, got: ${String(o["failureRate"])}`
51
+ );
52
+ }
53
+ if (o["failureRate"] < 0 || o["failureRate"] > 1) {
54
+ throw new ChaosConfigError(
55
+ `ChaosOptions.failureRate must be in [0, 1], got: ${String(o["failureRate"])}`
56
+ );
57
+ }
58
+ const validFailureTypes = /* @__PURE__ */ new Set(["http-error", "tcp-drop", "random"]);
59
+ if (typeof o["failureType"] !== "string" || !validFailureTypes.has(o["failureType"])) {
60
+ throw new ChaosConfigError(
61
+ `ChaosOptions.failureType must be one of "http-error" | "tcp-drop" | "random", got: ${String(o["failureType"])}`
62
+ );
63
+ }
64
+ if (!Array.isArray(o["errorCodes"])) {
65
+ throw new ChaosConfigError(
66
+ `ChaosOptions.errorCodes must be an array, got: ${typeof o["errorCodes"]}`
67
+ );
68
+ }
69
+ if (o["errorCodes"].length === 0) {
70
+ throw new ChaosConfigError(
71
+ "ChaosOptions.errorCodes must contain at least one HTTP status code."
72
+ );
73
+ }
74
+ for (const code of o["errorCodes"]) {
75
+ if (typeof code !== "number" || !Number.isInteger(code) || code < 100 || code > 599) {
76
+ throw new ChaosConfigError(
77
+ `ChaosOptions.errorCodes contains invalid HTTP status code: ${String(code)}. Each code must be an integer in [100, 599].`
78
+ );
79
+ }
80
+ }
81
+ return {
82
+ baseDelay: o["baseDelay"],
83
+ jitter: o["jitter"],
84
+ ...o["wavePeriod"] !== void 0 ? { wavePeriod: o["wavePeriod"] } : {},
85
+ failureRate: o["failureRate"],
86
+ failureType: o["failureType"],
87
+ errorCodes: o["errorCodes"]
88
+ };
89
+ }
90
+ function calculateDelay(options) {
91
+ const { baseDelay, jitter, wavePeriod } = options;
92
+ const randomJitter = (Math.random() * 2 - 1) * jitter;
93
+ let waveFluctuation = 0;
94
+ if (wavePeriod !== void 0) {
95
+ const tSeconds = Date.now() / 1e3;
96
+ const phase = tSeconds * (2 * Math.PI) / wavePeriod;
97
+ waveFluctuation = Math.sin(phase) * jitter * 0.5;
98
+ }
99
+ const raw = baseDelay + randomJitter + waveFluctuation;
100
+ return Math.max(0, raw);
101
+ }
102
+ function shouldFail(options) {
103
+ if (options.failureRate === 0) return false;
104
+ if (options.failureRate === 1) return true;
105
+ return Math.random() < options.failureRate;
106
+ }
107
+ function pickErrorCode(options) {
108
+ const { errorCodes } = options;
109
+ if (errorCodes.length === 0) {
110
+ throw new ChaosConfigError(
111
+ "Cannot pick an error code from an empty errorCodes array."
112
+ );
113
+ }
114
+ const index = Math.floor(Math.random() * errorCodes.length);
115
+ return errorCodes[index];
116
+ }
117
+ function resolveFailureType(options) {
118
+ if (options.failureType === "random") {
119
+ return Math.random() < 0.5 ? "http-error" : "tcp-drop";
120
+ }
121
+ return options.failureType;
122
+ }
123
+ function decideChaos(options) {
124
+ const delay = calculateDelay(options);
125
+ if (!shouldFail(options)) {
126
+ return { outcome: "pass", delay };
127
+ }
128
+ if (resolveFailureType(options) === "tcp-drop") {
129
+ return { outcome: "tcp-drop", delay };
130
+ }
131
+ return {
132
+ outcome: "http-error",
133
+ delay,
134
+ statusCode: pickErrorCode(options)
135
+ };
136
+ }
137
+ function sleep(ms) {
138
+ if (ms <= 0) return Promise.resolve();
139
+ return new Promise((resolve) => {
140
+ setTimeout(resolve, ms);
141
+ });
142
+ }
143
+ function isExcluded(pathname, excludeRoutes) {
144
+ return excludeRoutes.some((prefix) => {
145
+ if (pathname === prefix) return true;
146
+ return pathname.startsWith(prefix.endsWith("/") ? prefix : `${prefix}/`) || pathname.startsWith(prefix);
147
+ });
148
+ }
149
+
150
+ // src/hono.ts
151
+ function buildErrorResponse(statusCode, headers) {
152
+ const merged = new Headers(headers);
153
+ merged.set("Content-Type", "application/json");
154
+ merged.set("X-Chaos-Injected", "1");
155
+ return new Response(
156
+ JSON.stringify({
157
+ error: "Chaos injected error",
158
+ status: statusCode
159
+ }),
160
+ { status: statusCode, headers: merged }
161
+ );
162
+ }
163
+ function honoChaos(options) {
164
+ const validated = validateChaosOptions(options);
165
+ const excludeRoutes = options.excludeRoutes ?? [];
166
+ return async (context, next) => {
167
+ if (excludeRoutes.length > 0 && isExcluded(context.req.path, excludeRoutes)) {
168
+ await next();
169
+ return;
170
+ }
171
+ const decision = decideChaos(validated);
172
+ await sleep(decision.delay);
173
+ if (decision.outcome === "tcp-drop") {
174
+ return buildErrorResponse(503, {
175
+ "X-Chaos-Tcp-Drop": "1"
176
+ });
177
+ }
178
+ if (decision.outcome === "http-error") {
179
+ return buildErrorResponse(decision.statusCode);
180
+ }
181
+ await next();
182
+ };
183
+ }
184
+
185
+ export { honoChaos };
186
+ //# sourceMappingURL=hono.js.map
187
+ //# sourceMappingURL=hono.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/types.ts","../src/core.ts","../src/hono.ts"],"names":[],"mappings":"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","file":"hono.js","sourcesContent":["/**\n * How a simulated failure is expressed to the client.\n *\n * - `'http-error'` — Respond with an HTTP error status code drawn from `errorCodes`.\n * - `'tcp-drop'` — Approximate a TCP connection drop by destroying the socket\n * (Express) or returning a 503 (Next.js, where true socket\n * destruction is unavailable in App Router handlers).\n * - `'random'` — Randomly choose between `'http-error'` and `'tcp-drop'`\n * each time a failure occurs.\n */\nexport type FailureType = 'http-error' | 'tcp-drop' | 'random';\n\n/**\n * Resolved failure type after `'random'` has been evaluated.\n * Never `'random'` — always a concrete action.\n */\nexport type ResolvedFailureType = Exclude<FailureType, 'random'>;\n\n/** Resolved action for one request after all randomness has been evaluated. */\nexport type ChaosDecision =\n | { outcome: 'pass'; delay: number }\n | { outcome: 'http-error'; delay: number; statusCode: number }\n | { outcome: 'tcp-drop'; delay: number };\n\n/**\n * Core chaos configuration.\n *\n * All time values are in **milliseconds** unless otherwise noted.\n */\nexport interface ChaosOptions {\n /**\n * Base latency added to every request in milliseconds.\n * Must be ≥ 0.\n */\n baseDelay: number;\n\n /**\n * Maximum magnitude of random jitter added to or subtracted from\n * `baseDelay` in milliseconds. Must be ≥ 0.\n *\n * Actual jitter per request is sampled uniformly from `[-jitter, +jitter]`.\n */\n jitter: number;\n\n /**\n * Period of a sine-wave fluctuation applied on top of jitter, in **seconds**.\n *\n * This simulates slowly oscillating network quality (e.g., a roaming device\n * moving in and out of signal). When omitted, no wave fluctuation is applied.\n *\n * Must be > 0 when provided.\n */\n wavePeriod?: number;\n\n /**\n * Probability that a given request results in a simulated failure.\n * Must be in the range [0, 1].\n *\n * - `0` → failures never occur\n * - `1` → every request fails\n * - `0.1` → ~10% of requests fail\n */\n failureRate: number;\n\n /**\n * Determines how simulated failures are expressed to callers.\n */\n failureType: FailureType;\n\n /**\n * Pool of HTTP status codes to choose from when responding with an HTTP error.\n * Must contain at least one entry.\n *\n * Only used when `failureType` resolves to `'http-error'`.\n */\n errorCodes: number[];\n}\n\n/**\n * Options passed to framework-level middleware / handler wrappers.\n * Extends `ChaosOptions` with request-filtering capabilities.\n */\nexport interface MiddlewareOptions extends ChaosOptions {\n /**\n * List of URL path prefixes that should bypass chaos injection entirely.\n *\n * Matching is prefix-based and case-sensitive.\n *\n * @example\n * excludeRoutes: ['/health', '/metrics', '/_next']\n */\n excludeRoutes?: string[];\n}\n\n/**\n * Structured error thrown when a `ChaosOptions` or `MiddlewareOptions`\n * object fails validation.\n */\nexport class ChaosConfigError extends Error {\n override readonly name = 'ChaosConfigError';\n\n constructor(message: string) {\n super(message);\n // Maintain proper prototype chain in transpiled output\n Object.setPrototypeOf(this, new.target.prototype);\n }\n}\n","import { ChaosConfigError } from './types.js';\nimport type {\n ChaosDecision,\n ChaosOptions,\n ResolvedFailureType,\n} from './types.js';\n\n// ---------------------------------------------------------------------------\n// Validation\n// ---------------------------------------------------------------------------\n\n/**\n * Validates a raw object as a `ChaosOptions`. Throws `ChaosConfigError`\n * with a descriptive message if any field is invalid or missing.\n *\n * This is the single source of truth for option validation — all public\n * entry-points (middleware factories, `withChaos`, etc.) should call this\n * before storing or using options.\n */\nexport function validateChaosOptions(options: unknown): ChaosOptions {\n if (options === null || typeof options !== 'object') {\n throw new ChaosConfigError('ChaosOptions must be a plain object.');\n }\n\n const o = options as Record<string, unknown>;\n\n // --- baseDelay -----------------------------------------------------------\n if (typeof o['baseDelay'] !== 'number' || !Number.isFinite(o['baseDelay'])) {\n throw new ChaosConfigError(\n `ChaosOptions.baseDelay must be a finite number, got: ${String(o['baseDelay'])}`,\n );\n }\n if (o['baseDelay'] < 0) {\n throw new ChaosConfigError(\n `ChaosOptions.baseDelay must be ≥ 0, got: ${String(o['baseDelay'])}`,\n );\n }\n\n // --- jitter --------------------------------------------------------------\n if (typeof o['jitter'] !== 'number' || !Number.isFinite(o['jitter'])) {\n throw new ChaosConfigError(\n `ChaosOptions.jitter must be a finite number, got: ${String(o['jitter'])}`,\n );\n }\n if (o['jitter'] < 0) {\n throw new ChaosConfigError(\n `ChaosOptions.jitter must be ≥ 0, got: ${String(o['jitter'])}`,\n );\n }\n\n // --- wavePeriod (optional) -----------------------------------------------\n if (o['wavePeriod'] !== undefined) {\n if (typeof o['wavePeriod'] !== 'number' || !Number.isFinite(o['wavePeriod'])) {\n throw new ChaosConfigError(\n `ChaosOptions.wavePeriod must be a finite number when provided, got: ${String(o['wavePeriod'])}`,\n );\n }\n if (o['wavePeriod'] <= 0) {\n throw new ChaosConfigError(\n `ChaosOptions.wavePeriod must be > 0 when provided, got: ${String(o['wavePeriod'])}`,\n );\n }\n }\n\n // --- failureRate ---------------------------------------------------------\n if (typeof o['failureRate'] !== 'number' || !Number.isFinite(o['failureRate'])) {\n throw new ChaosConfigError(\n `ChaosOptions.failureRate must be a finite number, got: ${String(o['failureRate'])}`,\n );\n }\n if (o['failureRate'] < 0 || o['failureRate'] > 1) {\n throw new ChaosConfigError(\n `ChaosOptions.failureRate must be in [0, 1], got: ${String(o['failureRate'])}`,\n );\n }\n\n // --- failureType ---------------------------------------------------------\n const validFailureTypes = new Set<string>(['http-error', 'tcp-drop', 'random']);\n if (typeof o['failureType'] !== 'string' || !validFailureTypes.has(o['failureType'])) {\n throw new ChaosConfigError(\n `ChaosOptions.failureType must be one of \"http-error\" | \"tcp-drop\" | \"random\", ` +\n `got: ${String(o['failureType'])}`,\n );\n }\n\n // --- errorCodes ----------------------------------------------------------\n if (!Array.isArray(o['errorCodes'])) {\n throw new ChaosConfigError(\n `ChaosOptions.errorCodes must be an array, got: ${typeof o['errorCodes']}`,\n );\n }\n if (o['errorCodes'].length === 0) {\n throw new ChaosConfigError(\n 'ChaosOptions.errorCodes must contain at least one HTTP status code.',\n );\n }\n for (const code of o['errorCodes'] as unknown[]) {\n if (typeof code !== 'number' || !Number.isInteger(code) || code < 100 || code > 599) {\n throw new ChaosConfigError(\n `ChaosOptions.errorCodes contains invalid HTTP status code: ${String(code)}. ` +\n 'Each code must be an integer in [100, 599].',\n );\n }\n }\n\n return {\n baseDelay: o['baseDelay'] as number,\n jitter: o['jitter'] as number,\n ...(o['wavePeriod'] !== undefined ? { wavePeriod: o['wavePeriod'] as number } : {}),\n failureRate: o['failureRate'] as number,\n failureType: o['failureType'] as ChaosOptions['failureType'],\n errorCodes: o['errorCodes'] as number[],\n };\n}\n\n// ---------------------------------------------------------------------------\n// Delay calculation\n// ---------------------------------------------------------------------------\n\n/**\n * Compute a realistic delay for a single request, in milliseconds.\n *\n * Formula:\n * ```\n * delay = baseDelay + randomJitter + waveFluctuation\n * ```\n *\n * - **randomJitter**: sampled uniformly from `[-jitter, +jitter]`\n * - **waveFluctuation**: `sin(t * 2π / wavePeriod) * jitter * 0.5` where\n * `t = Date.now() / 1000` in seconds (zero when `wavePeriod` is omitted)\n * - Result is clamped to `≥ 0` (negative delays are meaningless)\n *\n * @param options - Validated `ChaosOptions`.\n * @returns Delay in milliseconds (always ≥ 0).\n */\nexport function calculateDelay(options: ChaosOptions): number {\n const { baseDelay, jitter, wavePeriod } = options;\n\n // Uniform random jitter: value in [-jitter, +jitter]\n const randomJitter = (Math.random() * 2 - 1) * jitter;\n\n // Sine-wave fluctuation — models slow oscillation in network quality\n let waveFluctuation = 0;\n if (wavePeriod !== undefined) {\n const tSeconds = Date.now() / 1000;\n const phase = (tSeconds * (2 * Math.PI)) / wavePeriod;\n // Scale by half the jitter magnitude so the wave amplitude stays within\n // the same order of magnitude as the random jitter component.\n waveFluctuation = Math.sin(phase) * jitter * 0.5;\n }\n\n const raw = baseDelay + randomJitter + waveFluctuation;\n return Math.max(0, raw);\n}\n\n// ---------------------------------------------------------------------------\n// Failure logic\n// ---------------------------------------------------------------------------\n\n/**\n * Returns `true` with probability `options.failureRate`.\n *\n * Uses `Math.random()` — suitable for non-cryptographic simulation purposes.\n *\n * @param options - Validated `ChaosOptions`.\n */\nexport function shouldFail(options: ChaosOptions): boolean {\n if (options.failureRate === 0) return false;\n if (options.failureRate === 1) return true;\n return Math.random() < options.failureRate;\n}\n\n/**\n * Picks a random HTTP status code from `options.errorCodes`.\n *\n * Assumes `options.errorCodes` is non-empty (enforced by `validateChaosOptions`).\n *\n * @param options - Validated `ChaosOptions`.\n * @returns A status code from the configured pool.\n */\nexport function pickErrorCode(options: ChaosOptions): number {\n const { errorCodes } = options;\n if (errorCodes.length === 0) {\n // Guard: this should never happen after validation, but we protect anyway.\n throw new ChaosConfigError(\n 'Cannot pick an error code from an empty errorCodes array.',\n );\n }\n const index = Math.floor(Math.random() * errorCodes.length);\n // Non-null assertion is safe: index is always in [0, errorCodes.length - 1]\n return errorCodes[index]!;\n}\n\n/**\n * Resolves the configured `failureType` to a concrete action.\n *\n * When `failureType` is `'random'`, randomly selects between `'http-error'`\n * and `'tcp-drop'` with equal probability.\n *\n * @param options - Validated `ChaosOptions`.\n * @returns A `ResolvedFailureType` — never `'random'`.\n */\nexport function resolveFailureType(options: ChaosOptions): ResolvedFailureType {\n if (options.failureType === 'random') {\n return Math.random() < 0.5 ? 'http-error' : 'tcp-drop';\n }\n return options.failureType;\n}\n\n/** Resolves the complete chaos outcome for one request. */\nexport function decideChaos(options: ChaosOptions): ChaosDecision {\n const delay = calculateDelay(options);\n\n if (!shouldFail(options)) {\n return { outcome: 'pass', delay };\n }\n\n if (resolveFailureType(options) === 'tcp-drop') {\n return { outcome: 'tcp-drop', delay };\n }\n\n return {\n outcome: 'http-error',\n delay,\n statusCode: pickErrorCode(options),\n };\n}\n\n// ---------------------------------------------------------------------------\n// Async utilities\n// ---------------------------------------------------------------------------\n\n/**\n * Non-blocking async sleep.\n *\n * Uses `setTimeout` under the hood — never busy-waits, never blocks the\n * event loop. Safe to `await` from any async context.\n *\n * @param ms - Duration to sleep in milliseconds. Values ≤ 0 resolve immediately.\n */\nexport function sleep(ms: number): Promise<void> {\n if (ms <= 0) return Promise.resolve();\n return new Promise<void>((resolve) => {\n setTimeout(resolve, ms);\n });\n}\n\n// ---------------------------------------------------------------------------\n// Route exclusion helper\n// ---------------------------------------------------------------------------\n\n/**\n * Returns `true` if the given URL path matches any of the excluded route\n * prefixes.\n *\n * Matching is prefix-based and case-sensitive. A trailing slash on the\n * prefix is not required — `/health` excludes `/health`, `/health/`, and\n * `/health/check`.\n *\n * @param pathname - The incoming request path (e.g. `/api/users`).\n * @param excludeRoutes - Array of path prefixes to exclude.\n */\nexport function isExcluded(pathname: string, excludeRoutes: readonly string[]): boolean {\n return excludeRoutes.some((prefix) => {\n if (pathname === prefix) return true;\n // Ensure we match the prefix at a path boundary\n return pathname.startsWith(prefix.endsWith('/') ? prefix : `${prefix}/`) ||\n pathname.startsWith(prefix);\n });\n}\n","/**\n * Hono middleware adapter for latency-lab.\n */\n\nimport { decideChaos, isExcluded, sleep, validateChaosOptions } from './core.js';\nimport type { MiddlewareOptions } from './types.js';\n\n/** Structural subset of HonoRequest used by the adapter. */\nexport interface HonoRequestLike {\n readonly path: string;\n}\n\n/** Structural subset of Hono Context used by the adapter. */\nexport interface HonoContextLike {\n readonly req: HonoRequestLike;\n}\n\n/** Hono-compatible next callback. */\nexport type HonoNext = () => Promise<void>;\n\n/** Hono-compatible middleware signature. */\nexport type HonoMiddleware = (\n context: HonoContextLike,\n next: HonoNext,\n) => Promise<Response | void>;\n\nfunction buildErrorResponse(statusCode: number, headers?: HeadersInit): Response {\n const merged = new Headers(headers);\n merged.set('Content-Type', 'application/json');\n merged.set('X-Chaos-Injected', '1');\n\n return new Response(\n JSON.stringify({\n error: 'Chaos injected error',\n status: statusCode,\n }),\n { status: statusCode, headers: merged },\n );\n}\n\n/**\n * Creates Hono middleware with chaos injection.\n *\n * @example\n * app.use('*', honoChaos(presets.slow3g));\n */\nexport function honoChaos(options: MiddlewareOptions): HonoMiddleware {\n const validated = validateChaosOptions(options);\n const excludeRoutes: readonly string[] = options.excludeRoutes ?? [];\n\n return async (context, next): Promise<Response | void> => {\n if (\n excludeRoutes.length > 0 &&\n isExcluded(context.req.path, excludeRoutes)\n ) {\n await next();\n return;\n }\n\n const decision = decideChaos(validated);\n await sleep(decision.delay);\n\n if (decision.outcome === 'tcp-drop') {\n return buildErrorResponse(503, {\n 'X-Chaos-Tcp-Drop': '1',\n });\n }\n\n if (decision.outcome === 'http-error') {\n return buildErrorResponse(decision.statusCode);\n }\n\n await next();\n };\n}\n"]}
package/dist/index.cjs CHANGED
@@ -122,6 +122,20 @@ function resolveFailureType(options) {
122
122
  }
123
123
  return options.failureType;
124
124
  }
125
+ function decideChaos(options) {
126
+ const delay = calculateDelay(options);
127
+ if (!shouldFail(options)) {
128
+ return { outcome: "pass", delay };
129
+ }
130
+ if (resolveFailureType(options) === "tcp-drop") {
131
+ return { outcome: "tcp-drop", delay };
132
+ }
133
+ return {
134
+ outcome: "http-error",
135
+ delay,
136
+ statusCode: pickErrorCode(options)
137
+ };
138
+ }
125
139
  function sleep(ms) {
126
140
  if (ms <= 0) return Promise.resolve();
127
141
  return new Promise((resolve) => {
@@ -168,11 +182,38 @@ var congestedStadium = Object.freeze({
168
182
  failureType: "random",
169
183
  errorCodes: [429, 503, 504, 520]
170
184
  });
185
+ var satelliteLink = Object.freeze({
186
+ baseDelay: 600,
187
+ jitter: 50,
188
+ wavePeriod: 120,
189
+ failureRate: 0.01,
190
+ failureType: "http-error",
191
+ errorCodes: [408, 504]
192
+ });
193
+ var mobileDataRoaming = Object.freeze({
194
+ baseDelay: 250,
195
+ jitter: 350,
196
+ wavePeriod: 15,
197
+ failureRate: 0.08,
198
+ failureType: "random",
199
+ errorCodes: [408, 429, 502, 503, 504]
200
+ });
201
+ var corpVPN = Object.freeze({
202
+ baseDelay: 120,
203
+ jitter: 80,
204
+ wavePeriod: 45,
205
+ failureRate: 0.03,
206
+ failureType: "tcp-drop",
207
+ errorCodes: [502, 503, 504]
208
+ });
171
209
  var presets = Object.freeze({
172
210
  subwayTunnel,
173
211
  flakyCafeWifi,
174
212
  slow3g,
175
- congestedStadium
213
+ congestedStadium,
214
+ satelliteLink,
215
+ mobileDataRoaming,
216
+ corpVPN
176
217
  });
177
218
 
178
219
  // src/express.ts
@@ -198,43 +239,42 @@ function sendHttpError(res, statusCode) {
198
239
  function chaosMiddleware(options) {
199
240
  const validated = validateChaosOptions(options);
200
241
  const excludeRoutes = options.excludeRoutes ?? [];
201
- const middleware = (req, res, next) => {
242
+ return (req, res, next) => {
202
243
  (async () => {
203
244
  const pathname = req.url ?? "/";
204
245
  if (excludeRoutes.length > 0 && isExcluded(pathname, excludeRoutes)) {
205
246
  next();
206
247
  return;
207
248
  }
208
- const delay = calculateDelay(validated);
209
- await sleep(delay);
210
- if (shouldFail(validated)) {
211
- const failureType = resolveFailureType(validated);
212
- if (failureType === "tcp-drop") {
213
- dropTcpConnection(res);
214
- return;
215
- }
216
- const statusCode = pickErrorCode(validated);
217
- sendHttpError(res, statusCode);
249
+ const decision = decideChaos(validated);
250
+ await sleep(decision.delay);
251
+ if (decision.outcome === "tcp-drop") {
252
+ dropTcpConnection(res);
253
+ return;
254
+ }
255
+ if (decision.outcome === "http-error") {
256
+ sendHttpError(res, decision.statusCode);
218
257
  return;
219
258
  }
220
259
  next();
221
- })().catch((err) => {
222
- next(err);
260
+ })().catch((error) => {
261
+ next(error);
223
262
  });
224
263
  };
225
- return middleware;
226
264
  }
227
265
 
228
266
  // src/next.ts
229
267
  function buildErrorResponse(statusCode, headers) {
230
- const body = JSON.stringify({
231
- error: "Chaos injected error",
232
- status: statusCode
233
- });
234
268
  const merged = new Headers(headers);
235
269
  merged.set("Content-Type", "application/json");
236
270
  merged.set("X-Chaos-Injected", "1");
237
- return new Response(body, { status: statusCode, headers: merged });
271
+ return new Response(
272
+ JSON.stringify({
273
+ error: "Chaos injected error",
274
+ status: statusCode
275
+ }),
276
+ { status: statusCode, headers: merged }
277
+ );
238
278
  }
239
279
  function pathnameFrom(url) {
240
280
  try {
@@ -252,25 +292,86 @@ function withChaos(handler, options) {
252
292
  if (excludeRoutes.length > 0 && isExcluded(pathname, excludeRoutes)) {
253
293
  return handler(req, ctx);
254
294
  }
255
- const delay = calculateDelay(validated);
256
- await sleep(delay);
257
- if (shouldFail(validated)) {
258
- const failureType = resolveFailureType(validated);
259
- if (failureType === "tcp-drop") {
260
- return buildErrorResponse(503, {
261
- "X-Chaos-Tcp-Drop": "1"
262
- });
263
- }
264
- const statusCode = pickErrorCode(validated);
265
- return buildErrorResponse(statusCode);
295
+ const decision = decideChaos(validated);
296
+ await sleep(decision.delay);
297
+ if (decision.outcome === "tcp-drop") {
298
+ return buildErrorResponse(503, {
299
+ "X-Chaos-Tcp-Drop": "1"
300
+ });
301
+ }
302
+ if (decision.outcome === "http-error") {
303
+ return buildErrorResponse(decision.statusCode);
266
304
  }
267
305
  return handler(req, ctx);
268
306
  };
269
307
  }
270
308
 
309
+ // src/fastify.ts
310
+ function fastifyChaos(options) {
311
+ const validated = validateChaosOptions(options);
312
+ const excludeRoutes = options.excludeRoutes ?? [];
313
+ return async (request, reply) => {
314
+ if (excludeRoutes.length > 0 && isExcluded(request.url, excludeRoutes)) {
315
+ return;
316
+ }
317
+ const decision = decideChaos(validated);
318
+ await sleep(decision.delay);
319
+ if (decision.outcome === "tcp-drop") {
320
+ if (!request.raw.socket.destroyed) {
321
+ request.raw.socket.destroy();
322
+ }
323
+ return;
324
+ }
325
+ if (decision.outcome === "http-error") {
326
+ reply.code(decision.statusCode).header("Content-Type", "application/json").header("X-Chaos-Injected", "1").send({
327
+ error: "Chaos injected error",
328
+ status: decision.statusCode
329
+ });
330
+ }
331
+ };
332
+ }
333
+
334
+ // src/hono.ts
335
+ function buildErrorResponse2(statusCode, headers) {
336
+ const merged = new Headers(headers);
337
+ merged.set("Content-Type", "application/json");
338
+ merged.set("X-Chaos-Injected", "1");
339
+ return new Response(
340
+ JSON.stringify({
341
+ error: "Chaos injected error",
342
+ status: statusCode
343
+ }),
344
+ { status: statusCode, headers: merged }
345
+ );
346
+ }
347
+ function honoChaos(options) {
348
+ const validated = validateChaosOptions(options);
349
+ const excludeRoutes = options.excludeRoutes ?? [];
350
+ return async (context, next) => {
351
+ if (excludeRoutes.length > 0 && isExcluded(context.req.path, excludeRoutes)) {
352
+ await next();
353
+ return;
354
+ }
355
+ const decision = decideChaos(validated);
356
+ await sleep(decision.delay);
357
+ if (decision.outcome === "tcp-drop") {
358
+ return buildErrorResponse2(503, {
359
+ "X-Chaos-Tcp-Drop": "1"
360
+ });
361
+ }
362
+ if (decision.outcome === "http-error") {
363
+ return buildErrorResponse2(decision.statusCode);
364
+ }
365
+ await next();
366
+ };
367
+ }
368
+
271
369
  exports.ChaosConfigError = ChaosConfigError;
272
370
  exports.calculateDelay = calculateDelay;
273
371
  exports.chaosMiddleware = chaosMiddleware;
372
+ exports.decideChaos = decideChaos;
373
+ exports.fastifyChaos = fastifyChaos;
374
+ exports.honoChaos = honoChaos;
274
375
  exports.isExcluded = isExcluded;
275
376
  exports.pickErrorCode = pickErrorCode;
276
377
  exports.presets = presets;
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/types.ts","../src/core.ts","../src/presets.ts","../src/express.ts","../src/next.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["/**\n * How a simulated failure is expressed to the client.\n *\n * - `'http-error'` — Respond with an HTTP error status code drawn from `errorCodes`.\n * - `'tcp-drop'` — Approximate a TCP connection drop by destroying the socket\n * (Express) or returning a 503 (Next.js, where true socket\n * destruction is unavailable in App Router handlers).\n * - `'random'` — Randomly choose between `'http-error'` and `'tcp-drop'`\n * each time a failure occurs.\n */\nexport type FailureType = 'http-error' | 'tcp-drop' | 'random';\n\n/**\n * Resolved failure type after `'random'` has been evaluated.\n * Never `'random'` — always a concrete action.\n */\nexport type ResolvedFailureType = Exclude<FailureType, 'random'>;\n\n/**\n * Core chaos configuration.\n *\n * All time values are in **milliseconds** unless otherwise noted.\n */\nexport interface ChaosOptions {\n /**\n * Base latency added to every request in milliseconds.\n * Must be ≥ 0.\n */\n baseDelay: number;\n\n /**\n * Maximum magnitude of random jitter added to or subtracted from\n * `baseDelay` in milliseconds. Must be ≥ 0.\n *\n * Actual jitter per request is sampled uniformly from `[-jitter, +jitter]`.\n */\n jitter: number;\n\n /**\n * Period of a sine-wave fluctuation applied on top of jitter, in **seconds**.\n *\n * This simulates slowly oscillating network quality (e.g., a roaming device\n * moving in and out of signal). When omitted, no wave fluctuation is applied.\n *\n * Must be > 0 when provided.\n */\n wavePeriod?: number;\n\n /**\n * Probability that a given request results in a simulated failure.\n * Must be in the range [0, 1].\n *\n * - `0` → failures never occur\n * - `1` → every request fails\n * - `0.1` → ~10% of requests fail\n */\n failureRate: number;\n\n /**\n * Determines how simulated failures are expressed to callers.\n */\n failureType: FailureType;\n\n /**\n * Pool of HTTP status codes to choose from when responding with an HTTP error.\n * Must contain at least one entry.\n *\n * Only used when `failureType` resolves to `'http-error'`.\n */\n errorCodes: number[];\n}\n\n/**\n * Options passed to framework-level middleware / handler wrappers.\n * Extends `ChaosOptions` with request-filtering capabilities.\n */\nexport interface MiddlewareOptions extends ChaosOptions {\n /**\n * List of URL path prefixes that should bypass chaos injection entirely.\n *\n * Matching is prefix-based and case-sensitive.\n *\n * @example\n * excludeRoutes: ['/health', '/metrics', '/_next']\n */\n excludeRoutes?: string[];\n}\n\n/**\n * Structured error thrown when a `ChaosOptions` or `MiddlewareOptions`\n * object fails validation.\n */\nexport class ChaosConfigError extends Error {\n override readonly name = 'ChaosConfigError';\n\n constructor(message: string) {\n super(message);\n // Maintain proper prototype chain in transpiled output\n Object.setPrototypeOf(this, new.target.prototype);\n }\n}\n","import { ChaosConfigError } from './types.js';\nimport type { ChaosOptions, ResolvedFailureType } from './types.js';\n\n// ---------------------------------------------------------------------------\n// Validation\n// ---------------------------------------------------------------------------\n\n/**\n * Validates a raw object as a `ChaosOptions`. Throws `ChaosConfigError`\n * with a descriptive message if any field is invalid or missing.\n *\n * This is the single source of truth for option validation — all public\n * entry-points (middleware factories, `withChaos`, etc.) should call this\n * before storing or using options.\n */\nexport function validateChaosOptions(options: unknown): ChaosOptions {\n if (options === null || typeof options !== 'object') {\n throw new ChaosConfigError('ChaosOptions must be a plain object.');\n }\n\n const o = options as Record<string, unknown>;\n\n // --- baseDelay -----------------------------------------------------------\n if (typeof o['baseDelay'] !== 'number' || !Number.isFinite(o['baseDelay'])) {\n throw new ChaosConfigError(\n `ChaosOptions.baseDelay must be a finite number, got: ${String(o['baseDelay'])}`,\n );\n }\n if (o['baseDelay'] < 0) {\n throw new ChaosConfigError(\n `ChaosOptions.baseDelay must be ≥ 0, got: ${String(o['baseDelay'])}`,\n );\n }\n\n // --- jitter --------------------------------------------------------------\n if (typeof o['jitter'] !== 'number' || !Number.isFinite(o['jitter'])) {\n throw new ChaosConfigError(\n `ChaosOptions.jitter must be a finite number, got: ${String(o['jitter'])}`,\n );\n }\n if (o['jitter'] < 0) {\n throw new ChaosConfigError(\n `ChaosOptions.jitter must be ≥ 0, got: ${String(o['jitter'])}`,\n );\n }\n\n // --- wavePeriod (optional) -----------------------------------------------\n if (o['wavePeriod'] !== undefined) {\n if (typeof o['wavePeriod'] !== 'number' || !Number.isFinite(o['wavePeriod'])) {\n throw new ChaosConfigError(\n `ChaosOptions.wavePeriod must be a finite number when provided, got: ${String(o['wavePeriod'])}`,\n );\n }\n if (o['wavePeriod'] <= 0) {\n throw new ChaosConfigError(\n `ChaosOptions.wavePeriod must be > 0 when provided, got: ${String(o['wavePeriod'])}`,\n );\n }\n }\n\n // --- failureRate ---------------------------------------------------------\n if (typeof o['failureRate'] !== 'number' || !Number.isFinite(o['failureRate'])) {\n throw new ChaosConfigError(\n `ChaosOptions.failureRate must be a finite number, got: ${String(o['failureRate'])}`,\n );\n }\n if (o['failureRate'] < 0 || o['failureRate'] > 1) {\n throw new ChaosConfigError(\n `ChaosOptions.failureRate must be in [0, 1], got: ${String(o['failureRate'])}`,\n );\n }\n\n // --- failureType ---------------------------------------------------------\n const validFailureTypes = new Set<string>(['http-error', 'tcp-drop', 'random']);\n if (typeof o['failureType'] !== 'string' || !validFailureTypes.has(o['failureType'])) {\n throw new ChaosConfigError(\n `ChaosOptions.failureType must be one of \"http-error\" | \"tcp-drop\" | \"random\", ` +\n `got: ${String(o['failureType'])}`,\n );\n }\n\n // --- errorCodes ----------------------------------------------------------\n if (!Array.isArray(o['errorCodes'])) {\n throw new ChaosConfigError(\n `ChaosOptions.errorCodes must be an array, got: ${typeof o['errorCodes']}`,\n );\n }\n if (o['errorCodes'].length === 0) {\n throw new ChaosConfigError(\n 'ChaosOptions.errorCodes must contain at least one HTTP status code.',\n );\n }\n for (const code of o['errorCodes'] as unknown[]) {\n if (typeof code !== 'number' || !Number.isInteger(code) || code < 100 || code > 599) {\n throw new ChaosConfigError(\n `ChaosOptions.errorCodes contains invalid HTTP status code: ${String(code)}. ` +\n 'Each code must be an integer in [100, 599].',\n );\n }\n }\n\n return {\n baseDelay: o['baseDelay'] as number,\n jitter: o['jitter'] as number,\n ...(o['wavePeriod'] !== undefined ? { wavePeriod: o['wavePeriod'] as number } : {}),\n failureRate: o['failureRate'] as number,\n failureType: o['failureType'] as ChaosOptions['failureType'],\n errorCodes: o['errorCodes'] as number[],\n };\n}\n\n// ---------------------------------------------------------------------------\n// Delay calculation\n// ---------------------------------------------------------------------------\n\n/**\n * Compute a realistic delay for a single request, in milliseconds.\n *\n * Formula:\n * ```\n * delay = baseDelay + randomJitter + waveFluctuation\n * ```\n *\n * - **randomJitter**: sampled uniformly from `[-jitter, +jitter]`\n * - **waveFluctuation**: `sin(t * 2π / wavePeriod) * jitter * 0.5` where\n * `t = Date.now() / 1000` in seconds (zero when `wavePeriod` is omitted)\n * - Result is clamped to `≥ 0` (negative delays are meaningless)\n *\n * @param options - Validated `ChaosOptions`.\n * @returns Delay in milliseconds (always ≥ 0).\n */\nexport function calculateDelay(options: ChaosOptions): number {\n const { baseDelay, jitter, wavePeriod } = options;\n\n // Uniform random jitter: value in [-jitter, +jitter]\n const randomJitter = (Math.random() * 2 - 1) * jitter;\n\n // Sine-wave fluctuation — models slow oscillation in network quality\n let waveFluctuation = 0;\n if (wavePeriod !== undefined) {\n const tSeconds = Date.now() / 1000;\n const phase = (tSeconds * (2 * Math.PI)) / wavePeriod;\n // Scale by half the jitter magnitude so the wave amplitude stays within\n // the same order of magnitude as the random jitter component.\n waveFluctuation = Math.sin(phase) * jitter * 0.5;\n }\n\n const raw = baseDelay + randomJitter + waveFluctuation;\n return Math.max(0, raw);\n}\n\n// ---------------------------------------------------------------------------\n// Failure logic\n// ---------------------------------------------------------------------------\n\n/**\n * Returns `true` with probability `options.failureRate`.\n *\n * Uses `Math.random()` — suitable for non-cryptographic simulation purposes.\n *\n * @param options - Validated `ChaosOptions`.\n */\nexport function shouldFail(options: ChaosOptions): boolean {\n if (options.failureRate === 0) return false;\n if (options.failureRate === 1) return true;\n return Math.random() < options.failureRate;\n}\n\n/**\n * Picks a random HTTP status code from `options.errorCodes`.\n *\n * Assumes `options.errorCodes` is non-empty (enforced by `validateChaosOptions`).\n *\n * @param options - Validated `ChaosOptions`.\n * @returns A status code from the configured pool.\n */\nexport function pickErrorCode(options: ChaosOptions): number {\n const { errorCodes } = options;\n if (errorCodes.length === 0) {\n // Guard: this should never happen after validation, but we protect anyway.\n throw new ChaosConfigError(\n 'Cannot pick an error code from an empty errorCodes array.',\n );\n }\n const index = Math.floor(Math.random() * errorCodes.length);\n // Non-null assertion is safe: index is always in [0, errorCodes.length - 1]\n return errorCodes[index]!;\n}\n\n/**\n * Resolves the configured `failureType` to a concrete action.\n *\n * When `failureType` is `'random'`, randomly selects between `'http-error'`\n * and `'tcp-drop'` with equal probability.\n *\n * @param options - Validated `ChaosOptions`.\n * @returns A `ResolvedFailureType` — never `'random'`.\n */\nexport function resolveFailureType(options: ChaosOptions): ResolvedFailureType {\n if (options.failureType === 'random') {\n return Math.random() < 0.5 ? 'http-error' : 'tcp-drop';\n }\n return options.failureType;\n}\n\n// ---------------------------------------------------------------------------\n// Async utilities\n// ---------------------------------------------------------------------------\n\n/**\n * Non-blocking async sleep.\n *\n * Uses `setTimeout` under the hood — never busy-waits, never blocks the\n * event loop. Safe to `await` from any async context.\n *\n * @param ms - Duration to sleep in milliseconds. Values ≤ 0 resolve immediately.\n */\nexport function sleep(ms: number): Promise<void> {\n if (ms <= 0) return Promise.resolve();\n return new Promise<void>((resolve) => {\n setTimeout(resolve, ms);\n });\n}\n\n// ---------------------------------------------------------------------------\n// Route exclusion helper\n// ---------------------------------------------------------------------------\n\n/**\n * Returns `true` if the given URL path matches any of the excluded route\n * prefixes.\n *\n * Matching is prefix-based and case-sensitive. A trailing slash on the\n * prefix is not required — `/health` excludes `/health`, `/health/`, and\n * `/health/check`.\n *\n * @param pathname - The incoming request path (e.g. `/api/users`).\n * @param excludeRoutes - Array of path prefixes to exclude.\n */\nexport function isExcluded(pathname: string, excludeRoutes: readonly string[]): boolean {\n return excludeRoutes.some((prefix) => {\n if (pathname === prefix) return true;\n // Ensure we match the prefix at a path boundary\n return pathname.startsWith(prefix.endsWith('/') ? prefix : `${prefix}/`) ||\n pathname.startsWith(prefix);\n });\n}\n","import type { ChaosOptions } from './types.js';\n\n// ---------------------------------------------------------------------------\n// Named network condition presets\n// ---------------------------------------------------------------------------\n\n/**\n * Simulates a subway tunnel or underground environment.\n *\n * Characteristics:\n * - Very high base latency\n * - Significant jitter (signal drops and recovers)\n * - Fast sine-wave cycle (8 s) — connection oscillates rapidly\n * - High failure rate with TCP drops (abrupt disconnection)\n */\nconst subwayTunnel: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 800,\n jitter: 600,\n wavePeriod: 8,\n failureRate: 0.2,\n failureType: 'tcp-drop',\n errorCodes: [503, 504],\n} satisfies ChaosOptions);\n\n/**\n * Simulates a flaky café Wi-Fi connection.\n *\n * Characteristics:\n * - Moderate base latency (mostly usable)\n * - High burst jitter (sudden quality drops)\n * - Medium wave period (20 s) — quality drifts slowly\n * - Low-to-moderate failure rate, mixed failure types\n */\nconst flakyCafeWifi: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 150,\n jitter: 300,\n wavePeriod: 20,\n failureRate: 0.08,\n failureType: 'random',\n errorCodes: [502, 503, 504],\n} satisfies ChaosOptions);\n\n/**\n * Simulates a classic slow 3G mobile connection.\n *\n * Characteristics:\n * - High base latency (~400 ms RTT)\n * - Low jitter (3G is slow but predictable)\n * - Long wave period (60 s) — signal quality shifts gradually\n * - Low failure rate, HTTP errors only (timeouts / service unavailable)\n */\nconst slow3g: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 400,\n jitter: 100,\n wavePeriod: 60,\n failureRate: 0.03,\n failureType: 'http-error',\n errorCodes: [408, 503],\n} satisfies ChaosOptions);\n\n/**\n * Simulates a heavily congested stadium or event venue network.\n *\n * Characteristics:\n * - High base latency (hundreds of users sharing bandwidth)\n * - Extremely high jitter (burst congestion causes wild swings)\n * - Very short wave period (5 s) — network quality ping-pongs rapidly\n * - Very high failure rate, all failure types possible\n */\nconst congestedStadium: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 600,\n jitter: 800,\n wavePeriod: 5,\n failureRate: 0.3,\n failureType: 'random',\n errorCodes: [429, 503, 504, 520],\n} satisfies ChaosOptions);\n\n/**\n * Collection of all built-in network chaos presets.\n *\n * All values are `readonly` — spread them to extend:\n *\n * @example\n * ```ts\n * import { presets } from 'latency-lab';\n *\n * const myOptions = {\n * ...presets.slow3g,\n * failureRate: 0.15,\n * excludeRoutes: ['/health'],\n * };\n * ```\n */\nexport const presets = Object.freeze({\n subwayTunnel,\n flakyCafeWifi,\n slow3g,\n congestedStadium,\n} as const);\n\nexport type PresetName = keyof typeof presets;\n","/**\n * Express / Connect adapter for latency-lab.\n *\n * This module introduces zero runtime dependencies on Express. Types are\n * inlined so that `express` remains a peer / optional dependency — the\n * middleware works with any framework that honours the Connect signature:\n *\n * (req: IncomingMessage, res: ServerResponse, next: (err?: unknown) => void) => void\n *\n * Usage:\n * ```ts\n * import express from 'express';\n * import { chaosMiddleware, presets } from 'latency-lab';\n *\n * const app = express();\n * app.use(chaosMiddleware(presets.flakyCafeWifi));\n * ```\n */\n\nimport type { IncomingMessage, ServerResponse } from 'node:http';\nimport type { Socket } from 'node:net';\nimport type { MiddlewareOptions } from './types.js';\nimport {\n calculateDelay,\n isExcluded,\n pickErrorCode,\n resolveFailureType,\n shouldFail,\n sleep,\n validateChaosOptions,\n} from './core.js';\n\n// ---------------------------------------------------------------------------\n// Internal types\n// ---------------------------------------------------------------------------\n\n/**\n * Minimal Connect-compatible middleware signature.\n * Compatible with Express 4/5 and raw `node:http` middleware stacks.\n */\nexport type ConnectMiddleware = (\n req: IncomingMessage,\n res: ServerResponse,\n next: (err?: unknown) => void,\n) => void;\n\n/**\n * Shape of a socket that optionally exposes `.destroy()`.\n * We avoid importing from `node:net` at the call-site to stay tree-shakeable.\n */\ntype DestroyableSocket = Socket & { destroyed: boolean };\n\n// ---------------------------------------------------------------------------\n// Helper — TCP drop approximation\n// ---------------------------------------------------------------------------\n\n/**\n * Approximates a TCP connection drop by destroying the underlying socket.\n *\n * **Limitations:**\n * - Calling `socket.destroy()` sends a TCP RST to the peer.\n * - Some HTTP clients (including Node's own `http.request`) will surface this\n * as an `ECONNRESET` error and may retry automatically.\n * - HTTP/2 connections share a multiplexed socket — destroying it affects all\n * streams, not just the current request.\n */\nfunction dropTcpConnection(res: ServerResponse): void {\n const socket = res.socket as DestroyableSocket | null;\n if (socket !== null && !socket.destroyed) {\n socket.destroy();\n }\n}\n\n// ---------------------------------------------------------------------------\n// Helper — send HTTP error\n// ---------------------------------------------------------------------------\n\nfunction sendHttpError(res: ServerResponse, statusCode: number): void {\n if (res.headersSent) return;\n res.writeHead(statusCode, {\n 'Content-Type': 'application/json',\n 'X-Chaos-Injected': '1',\n });\n res.end(\n JSON.stringify({\n error: 'Chaos injected error',\n status: statusCode,\n }),\n );\n}\n\n// ---------------------------------------------------------------------------\n// Public factory\n// ---------------------------------------------------------------------------\n\n/**\n * Creates a Connect/Express-compatible chaos middleware.\n *\n * The middleware:\n * 1. Skips excluded routes immediately (calls `next()`).\n * 2. Calculates a realistic delay and `await`s it.\n * 3. Optionally injects a failure (HTTP error or TCP drop).\n * 4. Calls `next()` to hand off to the application for normal requests.\n *\n * @param options - Chaos configuration. Validated eagerly at factory time.\n * @returns A Connect-compatible middleware function.\n *\n * @example\n * ```ts\n * app.use(chaosMiddleware({\n * baseDelay: 200,\n * jitter: 80,\n * failureRate: 0.05,\n * failureType: 'http-error',\n * errorCodes: [503],\n * excludeRoutes: ['/health'],\n * }));\n * ```\n */\nexport function chaosMiddleware(options: MiddlewareOptions): ConnectMiddleware {\n // Validate at factory time so misconfiguration surfaces immediately on\n // startup rather than on the first request.\n const validated = validateChaosOptions(options);\n const excludeRoutes: readonly string[] = options.excludeRoutes ?? [];\n\n const middleware: ConnectMiddleware = (req, res, next) => {\n // Async work is wrapped in an IIFE so the middleware signature stays\n // synchronous (required by Connect) while still using async/await internally.\n (async (): Promise<void> => {\n const pathname = req.url ?? '/';\n\n // --- Route exclusion -------------------------------------------------\n if (excludeRoutes.length > 0 && isExcluded(pathname, excludeRoutes)) {\n next();\n return;\n }\n\n // --- Delay injection -------------------------------------------------\n const delay = calculateDelay(validated);\n await sleep(delay);\n\n // --- Failure injection -----------------------------------------------\n if (shouldFail(validated)) {\n const failureType = resolveFailureType(validated);\n\n if (failureType === 'tcp-drop') {\n dropTcpConnection(res);\n return; // do NOT call next() — connection is gone\n }\n\n // failureType === 'http-error'\n const statusCode = pickErrorCode(validated);\n sendHttpError(res, statusCode);\n return; // do NOT call next() — response already sent\n }\n\n // --- Pass through to application -------------------------------------\n next();\n })().catch((err: unknown) => {\n // Surface unexpected errors to Express's error handler\n next(err);\n });\n };\n\n return middleware;\n}\n","/**\n * Next.js App Router adapter for latency-lab.\n *\n * Wraps App Router route handlers (`GET`, `POST`, etc.) with chaos injection.\n *\n * **TCP drop limitation:**\n * App Router handlers run in a higher-level abstraction — the raw socket is\n * not accessible inside a route handler. `tcp-drop` is therefore approximated\n * by returning a 503 response with an `X-Chaos-Tcp-Drop: 1` header so callers\n * can distinguish it from a real 503 during testing.\n *\n * Usage:\n * ```ts\n * // app/api/users/route.ts\n * import { withChaos, presets } from 'latency-lab/next';\n * import { NextRequest, NextResponse } from 'next/server';\n *\n * async function GET(_req: NextRequest): Promise<NextResponse> {\n * return NextResponse.json({ users: [] });\n * }\n *\n * export const GET = withChaos(GET, presets.slow3g);\n * ```\n */\n\nimport type { MiddlewareOptions } from './types.js';\nimport {\n calculateDelay,\n isExcluded,\n pickErrorCode,\n resolveFailureType,\n shouldFail,\n sleep,\n validateChaosOptions,\n} from './core.js';\n\n// ---------------------------------------------------------------------------\n// Minimal Next.js type stubs\n//\n// We deliberately avoid importing from 'next/server' so that `next` remains\n// a peer dependency. The shapes below are structurally compatible with the\n// real `NextRequest` / `NextResponse` from Next.js 14 and 15.\n// ---------------------------------------------------------------------------\n\n/**\n * Structural subset of `NextRequest` used internally.\n * Fully compatible with the real `NextRequest` from `next/server`.\n */\nexport interface NextRequestLike {\n readonly url: string;\n readonly method: string;\n readonly headers: Headers;\n}\n\n/**\n * Structural subset of `NextResponse` used internally.\n * Fully compatible with the real `NextResponse` from `next/server`.\n */\nexport interface NextResponseLike extends Response {\n readonly status: number;\n readonly headers: Headers;\n}\n\n/**\n * A Next.js App Router route handler.\n *\n * The generic `Req` and `Res` parameters let callers use the real\n * `NextRequest` / `NextResponse` types without this library depending on them.\n */\nexport type NextRouteHandler<\n Req extends NextRequestLike = NextRequestLike,\n Res extends NextResponseLike = NextResponseLike,\n> = (req: Req, ctx?: unknown) => Promise<Res>;\n\n// ---------------------------------------------------------------------------\n// Internal helpers\n// ---------------------------------------------------------------------------\n\n/**\n * Builds a minimal JSON error Response compatible with `NextResponse.json()`.\n *\n * We construct a plain `Response` instead of calling `NextResponse.json()` to\n * avoid importing from `next/server` at runtime.\n */\nfunction buildErrorResponse(statusCode: number, headers?: HeadersInit): Response {\n const body = JSON.stringify({\n error: 'Chaos injected error',\n status: statusCode,\n });\n const merged = new Headers(headers);\n merged.set('Content-Type', 'application/json');\n merged.set('X-Chaos-Injected', '1');\n return new Response(body, { status: statusCode, headers: merged });\n}\n\n/**\n * Extracts the pathname from a URL string.\n * Falls back to the full string if parsing fails (non-standard environments).\n */\nfunction pathnameFrom(url: string): string {\n try {\n return new URL(url).pathname;\n } catch {\n // If the URL is relative or malformed, treat the whole value as the path\n const questionMark = url.indexOf('?');\n return questionMark === -1 ? url : url.slice(0, questionMark);\n }\n}\n\n// ---------------------------------------------------------------------------\n// Public factory\n// ---------------------------------------------------------------------------\n\n/**\n * Wraps a Next.js App Router route handler with chaos injection.\n *\n * The returned handler has the same signature as the original, so it can be\n * re-exported directly:\n *\n * ```ts\n * export const GET = withChaos(myHandler, presets.flakyCafeWifi);\n * ```\n *\n * Behaviour:\n * 1. Routes matching `excludeRoutes` are passed through immediately.\n * 2. A realistic delay is injected via `sleep()`.\n * 3. When a failure is triggered:\n * - `'http-error'` → returns a Response with a status from `errorCodes`\n * - `'tcp-drop'` → returns a 503 with `X-Chaos-Tcp-Drop: 1` (limitation noted above)\n * 4. Otherwise, the original handler is called and its response is returned.\n *\n * @param handler - The original App Router route handler.\n * @param options - Chaos configuration. Validated eagerly.\n * @returns A wrapped handler with the same signature.\n */\nexport function withChaos<\n Req extends NextRequestLike,\n Res extends NextResponseLike,\n>(\n handler: NextRouteHandler<Req, Res>,\n options: MiddlewareOptions,\n): NextRouteHandler<Req, Res> {\n // Validate at wrap time so misconfiguration fails fast at module load,\n // not on the first incoming request.\n const validated = validateChaosOptions(options);\n const excludeRoutes: readonly string[] = options.excludeRoutes ?? [];\n\n return async (req: Req, ctx?: unknown): Promise<Res> => {\n const pathname = pathnameFrom(req.url);\n\n // --- Route exclusion ---------------------------------------------------\n if (excludeRoutes.length > 0 && isExcluded(pathname, excludeRoutes)) {\n return handler(req, ctx);\n }\n\n // --- Delay injection ---------------------------------------------------\n const delay = calculateDelay(validated);\n await sleep(delay);\n\n // --- Failure injection -------------------------------------------------\n if (shouldFail(validated)) {\n const failureType = resolveFailureType(validated);\n\n if (failureType === 'tcp-drop') {\n // True TCP drop is not possible inside an App Router handler.\n // We approximate it with a 503 and a marker header so test suites\n // can detect the simulated drop.\n return buildErrorResponse(503, {\n 'X-Chaos-Tcp-Drop': '1',\n }) as unknown as Res;\n }\n\n // failureType === 'http-error'\n const statusCode = pickErrorCode(validated);\n return buildErrorResponse(statusCode) as unknown as Res;\n }\n\n // --- Delegate to original handler -------------------------------------\n return handler(req, ctx);\n };\n}\n"]}
1
+ {"version":3,"sources":["../src/types.ts","../src/core.ts","../src/presets.ts","../src/express.ts","../src/next.ts","../src/fastify.ts","../src/hono.ts"],"names":["buildErrorResponse"],"mappings":"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","file":"index.cjs","sourcesContent":["/**\n * How a simulated failure is expressed to the client.\n *\n * - `'http-error'` — Respond with an HTTP error status code drawn from `errorCodes`.\n * - `'tcp-drop'` — Approximate a TCP connection drop by destroying the socket\n * (Express) or returning a 503 (Next.js, where true socket\n * destruction is unavailable in App Router handlers).\n * - `'random'` — Randomly choose between `'http-error'` and `'tcp-drop'`\n * each time a failure occurs.\n */\nexport type FailureType = 'http-error' | 'tcp-drop' | 'random';\n\n/**\n * Resolved failure type after `'random'` has been evaluated.\n * Never `'random'` — always a concrete action.\n */\nexport type ResolvedFailureType = Exclude<FailureType, 'random'>;\n\n/** Resolved action for one request after all randomness has been evaluated. */\nexport type ChaosDecision =\n | { outcome: 'pass'; delay: number }\n | { outcome: 'http-error'; delay: number; statusCode: number }\n | { outcome: 'tcp-drop'; delay: number };\n\n/**\n * Core chaos configuration.\n *\n * All time values are in **milliseconds** unless otherwise noted.\n */\nexport interface ChaosOptions {\n /**\n * Base latency added to every request in milliseconds.\n * Must be ≥ 0.\n */\n baseDelay: number;\n\n /**\n * Maximum magnitude of random jitter added to or subtracted from\n * `baseDelay` in milliseconds. Must be ≥ 0.\n *\n * Actual jitter per request is sampled uniformly from `[-jitter, +jitter]`.\n */\n jitter: number;\n\n /**\n * Period of a sine-wave fluctuation applied on top of jitter, in **seconds**.\n *\n * This simulates slowly oscillating network quality (e.g., a roaming device\n * moving in and out of signal). When omitted, no wave fluctuation is applied.\n *\n * Must be > 0 when provided.\n */\n wavePeriod?: number;\n\n /**\n * Probability that a given request results in a simulated failure.\n * Must be in the range [0, 1].\n *\n * - `0` → failures never occur\n * - `1` → every request fails\n * - `0.1` → ~10% of requests fail\n */\n failureRate: number;\n\n /**\n * Determines how simulated failures are expressed to callers.\n */\n failureType: FailureType;\n\n /**\n * Pool of HTTP status codes to choose from when responding with an HTTP error.\n * Must contain at least one entry.\n *\n * Only used when `failureType` resolves to `'http-error'`.\n */\n errorCodes: number[];\n}\n\n/**\n * Options passed to framework-level middleware / handler wrappers.\n * Extends `ChaosOptions` with request-filtering capabilities.\n */\nexport interface MiddlewareOptions extends ChaosOptions {\n /**\n * List of URL path prefixes that should bypass chaos injection entirely.\n *\n * Matching is prefix-based and case-sensitive.\n *\n * @example\n * excludeRoutes: ['/health', '/metrics', '/_next']\n */\n excludeRoutes?: string[];\n}\n\n/**\n * Structured error thrown when a `ChaosOptions` or `MiddlewareOptions`\n * object fails validation.\n */\nexport class ChaosConfigError extends Error {\n override readonly name = 'ChaosConfigError';\n\n constructor(message: string) {\n super(message);\n // Maintain proper prototype chain in transpiled output\n Object.setPrototypeOf(this, new.target.prototype);\n }\n}\n","import { ChaosConfigError } from './types.js';\nimport type {\n ChaosDecision,\n ChaosOptions,\n ResolvedFailureType,\n} from './types.js';\n\n// ---------------------------------------------------------------------------\n// Validation\n// ---------------------------------------------------------------------------\n\n/**\n * Validates a raw object as a `ChaosOptions`. Throws `ChaosConfigError`\n * with a descriptive message if any field is invalid or missing.\n *\n * This is the single source of truth for option validation — all public\n * entry-points (middleware factories, `withChaos`, etc.) should call this\n * before storing or using options.\n */\nexport function validateChaosOptions(options: unknown): ChaosOptions {\n if (options === null || typeof options !== 'object') {\n throw new ChaosConfigError('ChaosOptions must be a plain object.');\n }\n\n const o = options as Record<string, unknown>;\n\n // --- baseDelay -----------------------------------------------------------\n if (typeof o['baseDelay'] !== 'number' || !Number.isFinite(o['baseDelay'])) {\n throw new ChaosConfigError(\n `ChaosOptions.baseDelay must be a finite number, got: ${String(o['baseDelay'])}`,\n );\n }\n if (o['baseDelay'] < 0) {\n throw new ChaosConfigError(\n `ChaosOptions.baseDelay must be ≥ 0, got: ${String(o['baseDelay'])}`,\n );\n }\n\n // --- jitter --------------------------------------------------------------\n if (typeof o['jitter'] !== 'number' || !Number.isFinite(o['jitter'])) {\n throw new ChaosConfigError(\n `ChaosOptions.jitter must be a finite number, got: ${String(o['jitter'])}`,\n );\n }\n if (o['jitter'] < 0) {\n throw new ChaosConfigError(\n `ChaosOptions.jitter must be ≥ 0, got: ${String(o['jitter'])}`,\n );\n }\n\n // --- wavePeriod (optional) -----------------------------------------------\n if (o['wavePeriod'] !== undefined) {\n if (typeof o['wavePeriod'] !== 'number' || !Number.isFinite(o['wavePeriod'])) {\n throw new ChaosConfigError(\n `ChaosOptions.wavePeriod must be a finite number when provided, got: ${String(o['wavePeriod'])}`,\n );\n }\n if (o['wavePeriod'] <= 0) {\n throw new ChaosConfigError(\n `ChaosOptions.wavePeriod must be > 0 when provided, got: ${String(o['wavePeriod'])}`,\n );\n }\n }\n\n // --- failureRate ---------------------------------------------------------\n if (typeof o['failureRate'] !== 'number' || !Number.isFinite(o['failureRate'])) {\n throw new ChaosConfigError(\n `ChaosOptions.failureRate must be a finite number, got: ${String(o['failureRate'])}`,\n );\n }\n if (o['failureRate'] < 0 || o['failureRate'] > 1) {\n throw new ChaosConfigError(\n `ChaosOptions.failureRate must be in [0, 1], got: ${String(o['failureRate'])}`,\n );\n }\n\n // --- failureType ---------------------------------------------------------\n const validFailureTypes = new Set<string>(['http-error', 'tcp-drop', 'random']);\n if (typeof o['failureType'] !== 'string' || !validFailureTypes.has(o['failureType'])) {\n throw new ChaosConfigError(\n `ChaosOptions.failureType must be one of \"http-error\" | \"tcp-drop\" | \"random\", ` +\n `got: ${String(o['failureType'])}`,\n );\n }\n\n // --- errorCodes ----------------------------------------------------------\n if (!Array.isArray(o['errorCodes'])) {\n throw new ChaosConfigError(\n `ChaosOptions.errorCodes must be an array, got: ${typeof o['errorCodes']}`,\n );\n }\n if (o['errorCodes'].length === 0) {\n throw new ChaosConfigError(\n 'ChaosOptions.errorCodes must contain at least one HTTP status code.',\n );\n }\n for (const code of o['errorCodes'] as unknown[]) {\n if (typeof code !== 'number' || !Number.isInteger(code) || code < 100 || code > 599) {\n throw new ChaosConfigError(\n `ChaosOptions.errorCodes contains invalid HTTP status code: ${String(code)}. ` +\n 'Each code must be an integer in [100, 599].',\n );\n }\n }\n\n return {\n baseDelay: o['baseDelay'] as number,\n jitter: o['jitter'] as number,\n ...(o['wavePeriod'] !== undefined ? { wavePeriod: o['wavePeriod'] as number } : {}),\n failureRate: o['failureRate'] as number,\n failureType: o['failureType'] as ChaosOptions['failureType'],\n errorCodes: o['errorCodes'] as number[],\n };\n}\n\n// ---------------------------------------------------------------------------\n// Delay calculation\n// ---------------------------------------------------------------------------\n\n/**\n * Compute a realistic delay for a single request, in milliseconds.\n *\n * Formula:\n * ```\n * delay = baseDelay + randomJitter + waveFluctuation\n * ```\n *\n * - **randomJitter**: sampled uniformly from `[-jitter, +jitter]`\n * - **waveFluctuation**: `sin(t * 2π / wavePeriod) * jitter * 0.5` where\n * `t = Date.now() / 1000` in seconds (zero when `wavePeriod` is omitted)\n * - Result is clamped to `≥ 0` (negative delays are meaningless)\n *\n * @param options - Validated `ChaosOptions`.\n * @returns Delay in milliseconds (always ≥ 0).\n */\nexport function calculateDelay(options: ChaosOptions): number {\n const { baseDelay, jitter, wavePeriod } = options;\n\n // Uniform random jitter: value in [-jitter, +jitter]\n const randomJitter = (Math.random() * 2 - 1) * jitter;\n\n // Sine-wave fluctuation — models slow oscillation in network quality\n let waveFluctuation = 0;\n if (wavePeriod !== undefined) {\n const tSeconds = Date.now() / 1000;\n const phase = (tSeconds * (2 * Math.PI)) / wavePeriod;\n // Scale by half the jitter magnitude so the wave amplitude stays within\n // the same order of magnitude as the random jitter component.\n waveFluctuation = Math.sin(phase) * jitter * 0.5;\n }\n\n const raw = baseDelay + randomJitter + waveFluctuation;\n return Math.max(0, raw);\n}\n\n// ---------------------------------------------------------------------------\n// Failure logic\n// ---------------------------------------------------------------------------\n\n/**\n * Returns `true` with probability `options.failureRate`.\n *\n * Uses `Math.random()` — suitable for non-cryptographic simulation purposes.\n *\n * @param options - Validated `ChaosOptions`.\n */\nexport function shouldFail(options: ChaosOptions): boolean {\n if (options.failureRate === 0) return false;\n if (options.failureRate === 1) return true;\n return Math.random() < options.failureRate;\n}\n\n/**\n * Picks a random HTTP status code from `options.errorCodes`.\n *\n * Assumes `options.errorCodes` is non-empty (enforced by `validateChaosOptions`).\n *\n * @param options - Validated `ChaosOptions`.\n * @returns A status code from the configured pool.\n */\nexport function pickErrorCode(options: ChaosOptions): number {\n const { errorCodes } = options;\n if (errorCodes.length === 0) {\n // Guard: this should never happen after validation, but we protect anyway.\n throw new ChaosConfigError(\n 'Cannot pick an error code from an empty errorCodes array.',\n );\n }\n const index = Math.floor(Math.random() * errorCodes.length);\n // Non-null assertion is safe: index is always in [0, errorCodes.length - 1]\n return errorCodes[index]!;\n}\n\n/**\n * Resolves the configured `failureType` to a concrete action.\n *\n * When `failureType` is `'random'`, randomly selects between `'http-error'`\n * and `'tcp-drop'` with equal probability.\n *\n * @param options - Validated `ChaosOptions`.\n * @returns A `ResolvedFailureType` — never `'random'`.\n */\nexport function resolveFailureType(options: ChaosOptions): ResolvedFailureType {\n if (options.failureType === 'random') {\n return Math.random() < 0.5 ? 'http-error' : 'tcp-drop';\n }\n return options.failureType;\n}\n\n/** Resolves the complete chaos outcome for one request. */\nexport function decideChaos(options: ChaosOptions): ChaosDecision {\n const delay = calculateDelay(options);\n\n if (!shouldFail(options)) {\n return { outcome: 'pass', delay };\n }\n\n if (resolveFailureType(options) === 'tcp-drop') {\n return { outcome: 'tcp-drop', delay };\n }\n\n return {\n outcome: 'http-error',\n delay,\n statusCode: pickErrorCode(options),\n };\n}\n\n// ---------------------------------------------------------------------------\n// Async utilities\n// ---------------------------------------------------------------------------\n\n/**\n * Non-blocking async sleep.\n *\n * Uses `setTimeout` under the hood — never busy-waits, never blocks the\n * event loop. Safe to `await` from any async context.\n *\n * @param ms - Duration to sleep in milliseconds. Values ≤ 0 resolve immediately.\n */\nexport function sleep(ms: number): Promise<void> {\n if (ms <= 0) return Promise.resolve();\n return new Promise<void>((resolve) => {\n setTimeout(resolve, ms);\n });\n}\n\n// ---------------------------------------------------------------------------\n// Route exclusion helper\n// ---------------------------------------------------------------------------\n\n/**\n * Returns `true` if the given URL path matches any of the excluded route\n * prefixes.\n *\n * Matching is prefix-based and case-sensitive. A trailing slash on the\n * prefix is not required — `/health` excludes `/health`, `/health/`, and\n * `/health/check`.\n *\n * @param pathname - The incoming request path (e.g. `/api/users`).\n * @param excludeRoutes - Array of path prefixes to exclude.\n */\nexport function isExcluded(pathname: string, excludeRoutes: readonly string[]): boolean {\n return excludeRoutes.some((prefix) => {\n if (pathname === prefix) return true;\n // Ensure we match the prefix at a path boundary\n return pathname.startsWith(prefix.endsWith('/') ? prefix : `${prefix}/`) ||\n pathname.startsWith(prefix);\n });\n}\n","import type { ChaosOptions } from './types.js';\n\n// ---------------------------------------------------------------------------\n// Named network condition presets\n// ---------------------------------------------------------------------------\n\n/**\n * Simulates a subway tunnel or underground environment.\n *\n * Characteristics:\n * - Very high base latency\n * - Significant jitter (signal drops and recovers)\n * - Fast sine-wave cycle (8 s) — connection oscillates rapidly\n * - High failure rate with TCP drops (abrupt disconnection)\n */\nconst subwayTunnel: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 800,\n jitter: 600,\n wavePeriod: 8,\n failureRate: 0.2,\n failureType: 'tcp-drop',\n errorCodes: [503, 504],\n} satisfies ChaosOptions);\n\n/**\n * Simulates a flaky café Wi-Fi connection.\n *\n * Characteristics:\n * - Moderate base latency (mostly usable)\n * - High burst jitter (sudden quality drops)\n * - Medium wave period (20 s) — quality drifts slowly\n * - Low-to-moderate failure rate, mixed failure types\n */\nconst flakyCafeWifi: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 150,\n jitter: 300,\n wavePeriod: 20,\n failureRate: 0.08,\n failureType: 'random',\n errorCodes: [502, 503, 504],\n} satisfies ChaosOptions);\n\n/**\n * Simulates a classic slow 3G mobile connection.\n *\n * Characteristics:\n * - High base latency (~400 ms RTT)\n * - Low jitter (3G is slow but predictable)\n * - Long wave period (60 s) — signal quality shifts gradually\n * - Low failure rate, HTTP errors only (timeouts / service unavailable)\n */\nconst slow3g: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 400,\n jitter: 100,\n wavePeriod: 60,\n failureRate: 0.03,\n failureType: 'http-error',\n errorCodes: [408, 503],\n} satisfies ChaosOptions);\n\n/**\n * Simulates a heavily congested stadium or event venue network.\n *\n * Characteristics:\n * - High base latency (hundreds of users sharing bandwidth)\n * - Extremely high jitter (burst congestion causes wild swings)\n * - Very short wave period (5 s) — network quality ping-pongs rapidly\n * - Very high failure rate, all failure types possible\n */\nconst congestedStadium: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 600,\n jitter: 800,\n wavePeriod: 5,\n failureRate: 0.3,\n failureType: 'random',\n errorCodes: [429, 503, 504, 520],\n} satisfies ChaosOptions);\n\n/** Stable but inherently high-latency satellite internet. */\nconst satelliteLink: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 600,\n jitter: 50,\n wavePeriod: 120,\n failureRate: 0.01,\n failureType: 'http-error',\n errorCodes: [408, 504],\n} satisfies ChaosOptions);\n\n/** International mobile roaming with bursts and mixed failures. */\nconst mobileDataRoaming: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 250,\n jitter: 350,\n wavePeriod: 15,\n failureRate: 0.08,\n failureType: 'random',\n errorCodes: [408, 429, 502, 503, 504],\n} satisfies ChaosOptions);\n\n/** Corporate VPN latency with occasional abrupt connection loss. */\nconst corpVPN: Readonly<ChaosOptions> = Object.freeze({\n baseDelay: 120,\n jitter: 80,\n wavePeriod: 45,\n failureRate: 0.03,\n failureType: 'tcp-drop',\n errorCodes: [502, 503, 504],\n} satisfies ChaosOptions);\n\n/**\n * Collection of all built-in network chaos presets.\n *\n * All values are `readonly` — spread them to extend:\n *\n * @example\n * ```ts\n * import { presets } from 'latency-lab';\n *\n * const myOptions = {\n * ...presets.slow3g,\n * failureRate: 0.15,\n * excludeRoutes: ['/health'],\n * };\n * ```\n */\nexport const presets = Object.freeze({\n subwayTunnel,\n flakyCafeWifi,\n slow3g,\n congestedStadium,\n satelliteLink,\n mobileDataRoaming,\n corpVPN,\n} as const);\n\nexport type PresetName = keyof typeof presets;\n","/**\n * Express / Connect adapter for latency-lab.\n */\n\nimport type { IncomingMessage, ServerResponse } from 'node:http';\nimport type { Socket } from 'node:net';\nimport { decideChaos, isExcluded, sleep, validateChaosOptions } from './core.js';\nimport type { MiddlewareOptions } from './types.js';\n\n/** Minimal Connect-compatible middleware signature. */\nexport type ConnectMiddleware = (\n req: IncomingMessage,\n res: ServerResponse,\n next: (err?: unknown) => void,\n) => void;\n\ntype DestroyableSocket = Socket & { destroyed: boolean };\n\nfunction dropTcpConnection(res: ServerResponse): void {\n const socket = res.socket as DestroyableSocket | null;\n if (socket !== null && !socket.destroyed) {\n socket.destroy();\n }\n}\n\nfunction sendHttpError(res: ServerResponse, statusCode: number): void {\n if (res.headersSent) return;\n\n res.writeHead(statusCode, {\n 'Content-Type': 'application/json',\n 'X-Chaos-Injected': '1',\n });\n res.end(\n JSON.stringify({\n error: 'Chaos injected error',\n status: statusCode,\n }),\n );\n}\n\n/**\n * Creates a Connect/Express-compatible chaos middleware.\n */\nexport function chaosMiddleware(options: MiddlewareOptions): ConnectMiddleware {\n const validated = validateChaosOptions(options);\n const excludeRoutes: readonly string[] = options.excludeRoutes ?? [];\n\n return (req, res, next): void => {\n (async (): Promise<void> => {\n const pathname = req.url ?? '/';\n if (excludeRoutes.length > 0 && isExcluded(pathname, excludeRoutes)) {\n next();\n return;\n }\n\n const decision = decideChaos(validated);\n await sleep(decision.delay);\n\n if (decision.outcome === 'tcp-drop') {\n dropTcpConnection(res);\n return;\n }\n\n if (decision.outcome === 'http-error') {\n sendHttpError(res, decision.statusCode);\n return;\n }\n\n next();\n })().catch((error: unknown) => {\n next(error);\n });\n };\n}\n","/**\n * Next.js App Router adapter for latency-lab.\n */\n\nimport { decideChaos, isExcluded, sleep, validateChaosOptions } from './core.js';\nimport type { MiddlewareOptions } from './types.js';\n\n/** Structural subset of NextRequest used by the adapter. */\nexport interface NextRequestLike {\n readonly url: string;\n readonly method: string;\n readonly headers: Headers;\n}\n\n/** Structural subset of NextResponse used by the adapter. */\nexport interface NextResponseLike extends Response {\n readonly status: number;\n readonly headers: Headers;\n}\n\n/** Next.js App Router route handler signature. */\nexport type NextRouteHandler<\n Req extends NextRequestLike = NextRequestLike,\n Res extends NextResponseLike = NextResponseLike,\n> = (req: Req, ctx?: unknown) => Promise<Res>;\n\nfunction buildErrorResponse(statusCode: number, headers?: HeadersInit): Response {\n const merged = new Headers(headers);\n merged.set('Content-Type', 'application/json');\n merged.set('X-Chaos-Injected', '1');\n\n return new Response(\n JSON.stringify({\n error: 'Chaos injected error',\n status: statusCode,\n }),\n { status: statusCode, headers: merged },\n );\n}\n\nfunction pathnameFrom(url: string): string {\n try {\n return new URL(url).pathname;\n } catch {\n const questionMark = url.indexOf('?');\n return questionMark === -1 ? url : url.slice(0, questionMark);\n }\n}\n\n/**\n * Wraps a Next.js App Router route handler with chaos injection.\n */\nexport function withChaos<\n Req extends NextRequestLike,\n Res extends NextResponseLike,\n>(\n handler: NextRouteHandler<Req, Res>,\n options: MiddlewareOptions,\n): NextRouteHandler<Req, Res> {\n const validated = validateChaosOptions(options);\n const excludeRoutes: readonly string[] = options.excludeRoutes ?? [];\n\n return async (req: Req, ctx?: unknown): Promise<Res> => {\n const pathname = pathnameFrom(req.url);\n if (excludeRoutes.length > 0 && isExcluded(pathname, excludeRoutes)) {\n return handler(req, ctx);\n }\n\n const decision = decideChaos(validated);\n await sleep(decision.delay);\n\n if (decision.outcome === 'tcp-drop') {\n return buildErrorResponse(503, {\n 'X-Chaos-Tcp-Drop': '1',\n }) as unknown as Res;\n }\n\n if (decision.outcome === 'http-error') {\n return buildErrorResponse(decision.statusCode) as unknown as Res;\n }\n\n return handler(req, ctx);\n };\n}\n","/**\n * Fastify onRequest hook adapter for latency-lab.\n */\n\nimport type { IncomingMessage } from 'node:http';\nimport { decideChaos, isExcluded, sleep, validateChaosOptions } from './core.js';\nimport type { MiddlewareOptions } from './types.js';\n\n/** Structural subset of FastifyRequest used by the adapter. */\nexport interface FastifyRequestLike {\n readonly url: string;\n readonly raw: IncomingMessage;\n}\n\n/** Structural subset of FastifyReply used by the adapter. */\nexport interface FastifyReplyLike {\n code(statusCode: number): FastifyReplyLike;\n header(name: string, value: string): FastifyReplyLike;\n send(payload: unknown): unknown;\n}\n\n/** Fastify-compatible async onRequest hook. */\nexport type FastifyOnRequestHook = (\n request: FastifyRequestLike,\n reply: FastifyReplyLike,\n) => Promise<void>;\n\n/**\n * Creates a Fastify onRequest hook with chaos injection.\n *\n * @example\n * app.addHook('onRequest', fastifyChaos(presets.flakyCafeWifi));\n */\nexport function fastifyChaos(options: MiddlewareOptions): FastifyOnRequestHook {\n const validated = validateChaosOptions(options);\n const excludeRoutes: readonly string[] = options.excludeRoutes ?? [];\n\n return async (request, reply): Promise<void> => {\n if (\n excludeRoutes.length > 0 &&\n isExcluded(request.url, excludeRoutes)\n ) {\n return;\n }\n\n const decision = decideChaos(validated);\n await sleep(decision.delay);\n\n if (decision.outcome === 'tcp-drop') {\n if (!request.raw.socket.destroyed) {\n request.raw.socket.destroy();\n }\n return;\n }\n\n if (decision.outcome === 'http-error') {\n reply\n .code(decision.statusCode)\n .header('Content-Type', 'application/json')\n .header('X-Chaos-Injected', '1')\n .send({\n error: 'Chaos injected error',\n status: decision.statusCode,\n });\n }\n };\n}\n","/**\n * Hono middleware adapter for latency-lab.\n */\n\nimport { decideChaos, isExcluded, sleep, validateChaosOptions } from './core.js';\nimport type { MiddlewareOptions } from './types.js';\n\n/** Structural subset of HonoRequest used by the adapter. */\nexport interface HonoRequestLike {\n readonly path: string;\n}\n\n/** Structural subset of Hono Context used by the adapter. */\nexport interface HonoContextLike {\n readonly req: HonoRequestLike;\n}\n\n/** Hono-compatible next callback. */\nexport type HonoNext = () => Promise<void>;\n\n/** Hono-compatible middleware signature. */\nexport type HonoMiddleware = (\n context: HonoContextLike,\n next: HonoNext,\n) => Promise<Response | void>;\n\nfunction buildErrorResponse(statusCode: number, headers?: HeadersInit): Response {\n const merged = new Headers(headers);\n merged.set('Content-Type', 'application/json');\n merged.set('X-Chaos-Injected', '1');\n\n return new Response(\n JSON.stringify({\n error: 'Chaos injected error',\n status: statusCode,\n }),\n { status: statusCode, headers: merged },\n );\n}\n\n/**\n * Creates Hono middleware with chaos injection.\n *\n * @example\n * app.use('*', honoChaos(presets.slow3g));\n */\nexport function honoChaos(options: MiddlewareOptions): HonoMiddleware {\n const validated = validateChaosOptions(options);\n const excludeRoutes: readonly string[] = options.excludeRoutes ?? [];\n\n return async (context, next): Promise<Response | void> => {\n if (\n excludeRoutes.length > 0 &&\n isExcluded(context.req.path, excludeRoutes)\n ) {\n await next();\n return;\n }\n\n const decision = decideChaos(validated);\n await sleep(decision.delay);\n\n if (decision.outcome === 'tcp-drop') {\n return buildErrorResponse(503, {\n 'X-Chaos-Tcp-Drop': '1',\n });\n }\n\n if (decision.outcome === 'http-error') {\n return buildErrorResponse(decision.statusCode);\n }\n\n await next();\n };\n}\n"]}