latency-lab 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,54 @@
1
+ import { IncomingMessage, ServerResponse } from 'node:http';
2
+ import { MiddlewareOptions } from './types.js';
3
+
4
+ /**
5
+ * Express / Connect adapter for latency-lab.
6
+ *
7
+ * This module introduces zero runtime dependencies on Express. Types are
8
+ * inlined so that `express` remains a peer / optional dependency — the
9
+ * middleware works with any framework that honours the Connect signature:
10
+ *
11
+ * (req: IncomingMessage, res: ServerResponse, next: (err?: unknown) => void) => void
12
+ *
13
+ * Usage:
14
+ * ```ts
15
+ * import express from 'express';
16
+ * import { chaosMiddleware, presets } from 'latency-lab';
17
+ *
18
+ * const app = express();
19
+ * app.use(chaosMiddleware(presets.flakyCafeWifi));
20
+ * ```
21
+ */
22
+
23
+ /**
24
+ * Minimal Connect-compatible middleware signature.
25
+ * Compatible with Express 4/5 and raw `node:http` middleware stacks.
26
+ */
27
+ type ConnectMiddleware = (req: IncomingMessage, res: ServerResponse, next: (err?: unknown) => void) => void;
28
+ /**
29
+ * Creates a Connect/Express-compatible chaos middleware.
30
+ *
31
+ * The middleware:
32
+ * 1. Skips excluded routes immediately (calls `next()`).
33
+ * 2. Calculates a realistic delay and `await`s it.
34
+ * 3. Optionally injects a failure (HTTP error or TCP drop).
35
+ * 4. Calls `next()` to hand off to the application for normal requests.
36
+ *
37
+ * @param options - Chaos configuration. Validated eagerly at factory time.
38
+ * @returns A Connect-compatible middleware function.
39
+ *
40
+ * @example
41
+ * ```ts
42
+ * app.use(chaosMiddleware({
43
+ * baseDelay: 200,
44
+ * jitter: 80,
45
+ * failureRate: 0.05,
46
+ * failureType: 'http-error',
47
+ * errorCodes: [503],
48
+ * excludeRoutes: ['/health'],
49
+ * }));
50
+ * ```
51
+ */
52
+ declare function chaosMiddleware(options: MiddlewareOptions): ConnectMiddleware;
53
+
54
+ export { type ConnectMiddleware, chaosMiddleware };
@@ -0,0 +1,188 @@
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 sleep(ms) {
124
+ if (ms <= 0) return Promise.resolve();
125
+ return new Promise((resolve) => {
126
+ setTimeout(resolve, ms);
127
+ });
128
+ }
129
+ function isExcluded(pathname, excludeRoutes) {
130
+ return excludeRoutes.some((prefix) => {
131
+ if (pathname === prefix) return true;
132
+ return pathname.startsWith(prefix.endsWith("/") ? prefix : `${prefix}/`) || pathname.startsWith(prefix);
133
+ });
134
+ }
135
+
136
+ // src/express.ts
137
+ function dropTcpConnection(res) {
138
+ const socket = res.socket;
139
+ if (socket !== null && !socket.destroyed) {
140
+ socket.destroy();
141
+ }
142
+ }
143
+ function sendHttpError(res, statusCode) {
144
+ if (res.headersSent) return;
145
+ res.writeHead(statusCode, {
146
+ "Content-Type": "application/json",
147
+ "X-Chaos-Injected": "1"
148
+ });
149
+ res.end(
150
+ JSON.stringify({
151
+ error: "Chaos injected error",
152
+ status: statusCode
153
+ })
154
+ );
155
+ }
156
+ function chaosMiddleware(options) {
157
+ const validated = validateChaosOptions(options);
158
+ const excludeRoutes = options.excludeRoutes ?? [];
159
+ const middleware = (req, res, next) => {
160
+ (async () => {
161
+ const pathname = req.url ?? "/";
162
+ if (excludeRoutes.length > 0 && isExcluded(pathname, excludeRoutes)) {
163
+ next();
164
+ return;
165
+ }
166
+ const delay = calculateDelay(validated);
167
+ await sleep(delay);
168
+ if (shouldFail(validated)) {
169
+ const failureType = resolveFailureType(validated);
170
+ if (failureType === "tcp-drop") {
171
+ dropTcpConnection(res);
172
+ return;
173
+ }
174
+ const statusCode = pickErrorCode(validated);
175
+ sendHttpError(res, statusCode);
176
+ return;
177
+ }
178
+ next();
179
+ })().catch((err) => {
180
+ next(err);
181
+ });
182
+ };
183
+ return middleware;
184
+ }
185
+
186
+ export { chaosMiddleware };
187
+ //# sourceMappingURL=express.js.map
188
+ //# sourceMappingURL=express.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/types.ts","../src/core.ts","../src/express.ts"],"names":[],"mappings":"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","file":"express.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/**\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","/**\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"]}
package/dist/index.cjs ADDED
@@ -0,0 +1,283 @@
1
+ 'use strict';
2
+
3
+ // src/types.ts
4
+ var ChaosConfigError = class extends Error {
5
+ name = "ChaosConfigError";
6
+ constructor(message) {
7
+ super(message);
8
+ Object.setPrototypeOf(this, new.target.prototype);
9
+ }
10
+ };
11
+
12
+ // src/core.ts
13
+ function validateChaosOptions(options) {
14
+ if (options === null || typeof options !== "object") {
15
+ throw new ChaosConfigError("ChaosOptions must be a plain object.");
16
+ }
17
+ const o = options;
18
+ if (typeof o["baseDelay"] !== "number" || !Number.isFinite(o["baseDelay"])) {
19
+ throw new ChaosConfigError(
20
+ `ChaosOptions.baseDelay must be a finite number, got: ${String(o["baseDelay"])}`
21
+ );
22
+ }
23
+ if (o["baseDelay"] < 0) {
24
+ throw new ChaosConfigError(
25
+ `ChaosOptions.baseDelay must be \u2265 0, got: ${String(o["baseDelay"])}`
26
+ );
27
+ }
28
+ if (typeof o["jitter"] !== "number" || !Number.isFinite(o["jitter"])) {
29
+ throw new ChaosConfigError(
30
+ `ChaosOptions.jitter must be a finite number, got: ${String(o["jitter"])}`
31
+ );
32
+ }
33
+ if (o["jitter"] < 0) {
34
+ throw new ChaosConfigError(
35
+ `ChaosOptions.jitter must be \u2265 0, got: ${String(o["jitter"])}`
36
+ );
37
+ }
38
+ if (o["wavePeriod"] !== void 0) {
39
+ if (typeof o["wavePeriod"] !== "number" || !Number.isFinite(o["wavePeriod"])) {
40
+ throw new ChaosConfigError(
41
+ `ChaosOptions.wavePeriod must be a finite number when provided, got: ${String(o["wavePeriod"])}`
42
+ );
43
+ }
44
+ if (o["wavePeriod"] <= 0) {
45
+ throw new ChaosConfigError(
46
+ `ChaosOptions.wavePeriod must be > 0 when provided, got: ${String(o["wavePeriod"])}`
47
+ );
48
+ }
49
+ }
50
+ if (typeof o["failureRate"] !== "number" || !Number.isFinite(o["failureRate"])) {
51
+ throw new ChaosConfigError(
52
+ `ChaosOptions.failureRate must be a finite number, got: ${String(o["failureRate"])}`
53
+ );
54
+ }
55
+ if (o["failureRate"] < 0 || o["failureRate"] > 1) {
56
+ throw new ChaosConfigError(
57
+ `ChaosOptions.failureRate must be in [0, 1], got: ${String(o["failureRate"])}`
58
+ );
59
+ }
60
+ const validFailureTypes = /* @__PURE__ */ new Set(["http-error", "tcp-drop", "random"]);
61
+ if (typeof o["failureType"] !== "string" || !validFailureTypes.has(o["failureType"])) {
62
+ throw new ChaosConfigError(
63
+ `ChaosOptions.failureType must be one of "http-error" | "tcp-drop" | "random", got: ${String(o["failureType"])}`
64
+ );
65
+ }
66
+ if (!Array.isArray(o["errorCodes"])) {
67
+ throw new ChaosConfigError(
68
+ `ChaosOptions.errorCodes must be an array, got: ${typeof o["errorCodes"]}`
69
+ );
70
+ }
71
+ if (o["errorCodes"].length === 0) {
72
+ throw new ChaosConfigError(
73
+ "ChaosOptions.errorCodes must contain at least one HTTP status code."
74
+ );
75
+ }
76
+ for (const code of o["errorCodes"]) {
77
+ if (typeof code !== "number" || !Number.isInteger(code) || code < 100 || code > 599) {
78
+ throw new ChaosConfigError(
79
+ `ChaosOptions.errorCodes contains invalid HTTP status code: ${String(code)}. Each code must be an integer in [100, 599].`
80
+ );
81
+ }
82
+ }
83
+ return {
84
+ baseDelay: o["baseDelay"],
85
+ jitter: o["jitter"],
86
+ ...o["wavePeriod"] !== void 0 ? { wavePeriod: o["wavePeriod"] } : {},
87
+ failureRate: o["failureRate"],
88
+ failureType: o["failureType"],
89
+ errorCodes: o["errorCodes"]
90
+ };
91
+ }
92
+ function calculateDelay(options) {
93
+ const { baseDelay, jitter, wavePeriod } = options;
94
+ const randomJitter = (Math.random() * 2 - 1) * jitter;
95
+ let waveFluctuation = 0;
96
+ if (wavePeriod !== void 0) {
97
+ const tSeconds = Date.now() / 1e3;
98
+ const phase = tSeconds * (2 * Math.PI) / wavePeriod;
99
+ waveFluctuation = Math.sin(phase) * jitter * 0.5;
100
+ }
101
+ const raw = baseDelay + randomJitter + waveFluctuation;
102
+ return Math.max(0, raw);
103
+ }
104
+ function shouldFail(options) {
105
+ if (options.failureRate === 0) return false;
106
+ if (options.failureRate === 1) return true;
107
+ return Math.random() < options.failureRate;
108
+ }
109
+ function pickErrorCode(options) {
110
+ const { errorCodes } = options;
111
+ if (errorCodes.length === 0) {
112
+ throw new ChaosConfigError(
113
+ "Cannot pick an error code from an empty errorCodes array."
114
+ );
115
+ }
116
+ const index = Math.floor(Math.random() * errorCodes.length);
117
+ return errorCodes[index];
118
+ }
119
+ function resolveFailureType(options) {
120
+ if (options.failureType === "random") {
121
+ return Math.random() < 0.5 ? "http-error" : "tcp-drop";
122
+ }
123
+ return options.failureType;
124
+ }
125
+ function sleep(ms) {
126
+ if (ms <= 0) return Promise.resolve();
127
+ return new Promise((resolve) => {
128
+ setTimeout(resolve, ms);
129
+ });
130
+ }
131
+ function isExcluded(pathname, excludeRoutes) {
132
+ return excludeRoutes.some((prefix) => {
133
+ if (pathname === prefix) return true;
134
+ return pathname.startsWith(prefix.endsWith("/") ? prefix : `${prefix}/`) || pathname.startsWith(prefix);
135
+ });
136
+ }
137
+
138
+ // src/presets.ts
139
+ var subwayTunnel = Object.freeze({
140
+ baseDelay: 800,
141
+ jitter: 600,
142
+ wavePeriod: 8,
143
+ failureRate: 0.2,
144
+ failureType: "tcp-drop",
145
+ errorCodes: [503, 504]
146
+ });
147
+ var flakyCafeWifi = Object.freeze({
148
+ baseDelay: 150,
149
+ jitter: 300,
150
+ wavePeriod: 20,
151
+ failureRate: 0.08,
152
+ failureType: "random",
153
+ errorCodes: [502, 503, 504]
154
+ });
155
+ var slow3g = Object.freeze({
156
+ baseDelay: 400,
157
+ jitter: 100,
158
+ wavePeriod: 60,
159
+ failureRate: 0.03,
160
+ failureType: "http-error",
161
+ errorCodes: [408, 503]
162
+ });
163
+ var congestedStadium = Object.freeze({
164
+ baseDelay: 600,
165
+ jitter: 800,
166
+ wavePeriod: 5,
167
+ failureRate: 0.3,
168
+ failureType: "random",
169
+ errorCodes: [429, 503, 504, 520]
170
+ });
171
+ var presets = Object.freeze({
172
+ subwayTunnel,
173
+ flakyCafeWifi,
174
+ slow3g,
175
+ congestedStadium
176
+ });
177
+
178
+ // src/express.ts
179
+ function dropTcpConnection(res) {
180
+ const socket = res.socket;
181
+ if (socket !== null && !socket.destroyed) {
182
+ socket.destroy();
183
+ }
184
+ }
185
+ function sendHttpError(res, statusCode) {
186
+ if (res.headersSent) return;
187
+ res.writeHead(statusCode, {
188
+ "Content-Type": "application/json",
189
+ "X-Chaos-Injected": "1"
190
+ });
191
+ res.end(
192
+ JSON.stringify({
193
+ error: "Chaos injected error",
194
+ status: statusCode
195
+ })
196
+ );
197
+ }
198
+ function chaosMiddleware(options) {
199
+ const validated = validateChaosOptions(options);
200
+ const excludeRoutes = options.excludeRoutes ?? [];
201
+ const middleware = (req, res, next) => {
202
+ (async () => {
203
+ const pathname = req.url ?? "/";
204
+ if (excludeRoutes.length > 0 && isExcluded(pathname, excludeRoutes)) {
205
+ next();
206
+ return;
207
+ }
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);
218
+ return;
219
+ }
220
+ next();
221
+ })().catch((err) => {
222
+ next(err);
223
+ });
224
+ };
225
+ return middleware;
226
+ }
227
+
228
+ // src/next.ts
229
+ function buildErrorResponse(statusCode, headers) {
230
+ const body = JSON.stringify({
231
+ error: "Chaos injected error",
232
+ status: statusCode
233
+ });
234
+ const merged = new Headers(headers);
235
+ merged.set("Content-Type", "application/json");
236
+ merged.set("X-Chaos-Injected", "1");
237
+ return new Response(body, { status: statusCode, headers: merged });
238
+ }
239
+ function pathnameFrom(url) {
240
+ try {
241
+ return new URL(url).pathname;
242
+ } catch {
243
+ const questionMark = url.indexOf("?");
244
+ return questionMark === -1 ? url : url.slice(0, questionMark);
245
+ }
246
+ }
247
+ function withChaos(handler, options) {
248
+ const validated = validateChaosOptions(options);
249
+ const excludeRoutes = options.excludeRoutes ?? [];
250
+ return async (req, ctx) => {
251
+ const pathname = pathnameFrom(req.url);
252
+ if (excludeRoutes.length > 0 && isExcluded(pathname, excludeRoutes)) {
253
+ return handler(req, ctx);
254
+ }
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);
266
+ }
267
+ return handler(req, ctx);
268
+ };
269
+ }
270
+
271
+ exports.ChaosConfigError = ChaosConfigError;
272
+ exports.calculateDelay = calculateDelay;
273
+ exports.chaosMiddleware = chaosMiddleware;
274
+ exports.isExcluded = isExcluded;
275
+ exports.pickErrorCode = pickErrorCode;
276
+ exports.presets = presets;
277
+ exports.resolveFailureType = resolveFailureType;
278
+ exports.shouldFail = shouldFail;
279
+ exports.sleep = sleep;
280
+ exports.validateChaosOptions = validateChaosOptions;
281
+ exports.withChaos = withChaos;
282
+ //# sourceMappingURL=index.cjs.map
283
+ //# sourceMappingURL=index.cjs.map