1
0
mirror of https://github.com/redis/node-redis.git synced 2025-12-11 09:22:35 +03:00
Files
node-redis/packages/client/lib/tests/test-scenario/fault-injector-client.ts
Pavel Pashov b97bbbe8c6 refactor(test): improve test scenario reliability and maintainability (#3077)
* refactor(test): improve test scenario reliability and maintainability

* tests: add resp3 check test (#1)

* test: refactor connection handoff tests with enhanced spy utility (#2)

* test: add comprehensive push notification disabled scenarios (#3)

* tests: add params config tests (#4)

* tests: add feature enablement tests (#5)

---------

Co-authored-by: Nikolay Karadzhov <nikolay.karadzhov@redis.com>
2025-09-18 12:45:55 +03:00

177 lines
4.2 KiB
TypeScript

import { setTimeout } from "node:timers/promises";
export type ActionType =
| "dmc_restart"
| "failover"
| "reshard"
| "sequence_of_actions"
| "network_failure"
| "execute_rlutil_command"
| "execute_rladmin_command"
| "migrate"
| "bind"
| "update_cluster_config";
export interface ActionRequest {
type: ActionType;
parameters?: {
bdb_id?: string;
[key: string]: unknown;
};
}
export interface ActionStatus {
status: string;
error: unknown;
output: string;
}
export class FaultInjectorClient {
private baseUrl: string;
#fetch: typeof fetch;
constructor(baseUrl: string, fetchImpl: typeof fetch = fetch) {
this.baseUrl = baseUrl.replace(/\/+$/, ""); // trim trailing slash
this.#fetch = fetchImpl;
}
/**
* Lists all available actions.
* @throws {Error} When the HTTP request fails or response cannot be parsed as JSON
*/
public listActions<T = unknown>(): Promise<T> {
return this.#request<T>("GET", "/action");
}
/**
* Triggers a specific action.
* @param action The action request to trigger
* @throws {Error} When the HTTP request fails or response cannot be parsed as JSON
*/
public triggerAction<T extends { action_id: string }>(
action: ActionRequest
): Promise<T> {
return this.#request<T>("POST", "/action", action);
}
/**
* Gets the status of a specific action.
* @param actionId The ID of the action to check
* @throws {Error} When the HTTP request fails or response cannot be parsed as JSON
*/
public getActionStatus<T = ActionStatus>(actionId: string): Promise<T> {
return this.#request<T>("GET", `/action/${actionId}`);
}
/**
* Waits for an action to complete.
* @param actionId The ID of the action to wait for
* @param options Optional timeout and max wait time
* @throws {Error} When the action does not complete within the max wait time
*/
public async waitForAction(
actionId: string,
{
timeoutMs,
maxWaitTimeMs,
}: {
timeoutMs?: number;
maxWaitTimeMs?: number;
} = {}
): Promise<ActionStatus> {
const timeout = timeoutMs || 1000;
const maxWaitTime = maxWaitTimeMs || 60000;
const startTime = Date.now();
while (Date.now() - startTime < maxWaitTime) {
const action = await this.getActionStatus<ActionStatus>(actionId);
if (["finished", "failed", "success"].includes(action.status)) {
return action;
}
await setTimeout(timeout);
}
throw new Error(`Timeout waiting for action ${actionId}`);
}
async migrateAndBindAction({
bdbId,
clusterIndex,
}: {
bdbId: string | number;
clusterIndex: string | number;
}) {
const bdbIdStr = bdbId.toString();
const clusterIndexStr = clusterIndex.toString();
return this.triggerAction<{
action_id: string;
}>({
type: "sequence_of_actions",
parameters: {
bdbId: bdbIdStr,
actions: [
{
type: "migrate",
params: {
cluster_index: clusterIndexStr,
},
},
{
type: "bind",
params: {
cluster_index: clusterIndexStr,
bdb_id: bdbIdStr,
},
},
],
},
});
}
async #request<T>(
method: string,
path: string,
body?: Object | string
): Promise<T> {
const url = `${this.baseUrl}${path}`;
const headers: Record<string, string> = {
"Content-Type": "application/json",
};
let payload: string | undefined;
if (body) {
if (typeof body === "string") {
headers["Content-Type"] = "text/plain";
payload = body;
} else {
headers["Content-Type"] = "application/json";
payload = JSON.stringify(body);
}
}
const response = await this.#fetch(url, { method, headers, body: payload });
if (!response.ok) {
try {
const text = await response.text();
throw new Error(`HTTP ${response.status} - ${text}`);
} catch {
throw new Error(`HTTP ${response.status}`);
}
}
try {
return (await response.json()) as T;
} catch {
throw new Error(
`HTTP ${response.status} - Unable to parse response as JSON`
);
}
}
}