c9789c2148
* Add agents * Agent * Added agents management * Polish agent wizard and release blockers. Finalize the office agent management flow by aligning the gateway fallback behavior, cleaning up UI semantics, and updating tests so the branch is ready to ship. Made-with: Cursor --------- Co-authored-by: iamlukethedev <iamlukethedev@users.noreply.github.com> Co-authored-by: iamlukethedev <lucas.guilherme@smartwayslfl.com>
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import { resolveGatewayAutoRetryDelayMs } from "@/lib/gateway/GatewayClient";
|
|
|
|
describe("resolveGatewayAutoRetryDelayMs", () => {
|
|
it("does not retry when upstream gateway url is missing on Studio host", () => {
|
|
const delay = resolveGatewayAutoRetryDelayMs({
|
|
status: "disconnected",
|
|
didAutoConnect: true,
|
|
hasConnectedOnce: true,
|
|
wasManualDisconnect: false,
|
|
gatewayUrl: "wss://remote.example",
|
|
errorMessage: "Gateway error (studio.gateway_url_missing): Upstream gateway URL is missing.",
|
|
connectErrorCode: "studio.gateway_url_missing",
|
|
attempt: 0,
|
|
});
|
|
|
|
expect(delay).toBeNull();
|
|
});
|
|
|
|
it("does not retry when the upstream websocket upgrade fails", () => {
|
|
const delay = resolveGatewayAutoRetryDelayMs({
|
|
status: "disconnected",
|
|
didAutoConnect: true,
|
|
hasConnectedOnce: true,
|
|
wasManualDisconnect: false,
|
|
gatewayUrl: "wss://remote.example",
|
|
errorMessage:
|
|
"Gateway error (studio.upstream_error): Failed to connect to upstream gateway WebSocket.",
|
|
connectErrorCode: "studio.upstream_error",
|
|
attempt: 0,
|
|
});
|
|
|
|
expect(delay).toBeNull();
|
|
});
|
|
});
|
|
|