2026-08-23 08:31:39 -07:00
|
|
|
import { describe, it, expect, vi, beforeEach } from "vitest";
|
|
|
|
|
import { render, screen, fireEvent, waitFor } from "@testing-library/react";
|
|
|
|
|
import AuthBridgeRow, { bridgeIndicator } from "./AuthBridgeRow";
|
|
|
|
|
import type { AuthBridgeStatus, Project } from "../../../../lib/types";
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The bridge shipped with a working backend, a typed IPC wrapper, and no way to
|
|
|
|
|
* reach either: `setAuthBridgeEnabled` had zero call sites, and the
|
|
|
|
|
* `auth-bridge-changed` event had no listener — so a host port the bridge could
|
|
|
|
|
* not take was a silent failure that presented as a login that simply hung.
|
|
|
|
|
* These tests hold both halves down.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
const getAuthBridgeStatus = vi.fn<() => Promise<AuthBridgeStatus>>();
|
|
|
|
|
const setAuthBridgeEnabled = vi.fn<(id: string, on: boolean) => Promise<AuthBridgeStatus>>();
|
|
|
|
|
|
|
|
|
|
vi.mock("../../../../lib/tauri-commands", () => ({
|
|
|
|
|
getAuthBridgeStatus: () => getAuthBridgeStatus(),
|
|
|
|
|
setAuthBridgeEnabled: (id: string, on: boolean) => setAuthBridgeEnabled(id, on),
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
/** Captured so a test can push an `auth-bridge-changed` payload by hand. */
|
|
|
|
|
let emit: ((payload: unknown) => void) | null = null;
|
|
|
|
|
|
|
|
|
|
vi.mock("@tauri-apps/api/event", () => ({
|
|
|
|
|
listen: vi.fn(async (_name: string, handler: (e: { payload: unknown }) => void) => {
|
|
|
|
|
emit = (payload) => handler({ payload });
|
|
|
|
|
return () => {
|
|
|
|
|
emit = null;
|
|
|
|
|
};
|
|
|
|
|
}),
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
const OFF: AuthBridgeStatus = { enabled: false, active_ports: [], conflicts: [] };
|
|
|
|
|
|
|
|
|
|
const project = {
|
|
|
|
|
id: "p1",
|
|
|
|
|
name: "api",
|
|
|
|
|
status: "running",
|
|
|
|
|
auth_bridge_enabled: false,
|
|
|
|
|
} as unknown as Project;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
vi.clearAllMocks();
|
|
|
|
|
getAuthBridgeStatus.mockResolvedValue(OFF);
|
|
|
|
|
setAuthBridgeEnabled.mockResolvedValue({ ...OFF, enabled: true });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe("AuthBridgeRow", () => {
|
|
|
|
|
it("turns the bridge on through its own command, not the project save", async () => {
|
|
|
|
|
// The dedicated command exists so this can be flipped while the container
|
|
|
|
|
// runs — which is exactly when a user discovers they need it. Routing it
|
|
|
|
|
// through the Config tab's stopped-only save would make it unreachable at
|
|
|
|
|
// the only moment it matters.
|
|
|
|
|
render(<AuthBridgeRow project={project} />);
|
|
|
|
|
await waitFor(() => expect(getAuthBridgeStatus).toHaveBeenCalled());
|
|
|
|
|
|
|
|
|
|
fireEvent.click(screen.getByRole("switch", { name: "Auth bridge" }));
|
|
|
|
|
|
|
|
|
|
await waitFor(() =>
|
|
|
|
|
expect(setAuthBridgeEnabled).toHaveBeenCalledWith("p1", true),
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("stays usable while the container is running", async () => {
|
|
|
|
|
render(<AuthBridgeRow project={project} />);
|
|
|
|
|
await waitFor(() => expect(getAuthBridgeStatus).toHaveBeenCalled());
|
|
|
|
|
expect(screen.getByRole("switch", { name: "Auth bridge" })).not.toBeDisabled();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("reports a port conflict the poller emitted", async () => {
|
|
|
|
|
getAuthBridgeStatus.mockResolvedValue({ ...OFF, enabled: true });
|
|
|
|
|
render(<AuthBridgeRow project={project} />);
|
|
|
|
|
await waitFor(() => expect(emit).not.toBeNull());
|
|
|
|
|
|
|
|
|
|
emit!({
|
|
|
|
|
project_id: "p1",
|
|
|
|
|
status: {
|
|
|
|
|
enabled: true,
|
|
|
|
|
active_ports: [],
|
|
|
|
|
conflicts: [
|
|
|
|
|
{ port: 54545, reason: "Host port 54545 is already in use (…); not bridged." },
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(await screen.findByText(/Port 54545/)).toBeInTheDocument();
|
|
|
|
|
expect(screen.getByText("Port conflict")).toBeInTheDocument();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("ignores an event for a different project", async () => {
|
|
|
|
|
getAuthBridgeStatus.mockResolvedValue({ ...OFF, enabled: true });
|
|
|
|
|
render(<AuthBridgeRow project={project} />);
|
|
|
|
|
await waitFor(() => expect(emit).not.toBeNull());
|
|
|
|
|
|
|
|
|
|
emit!({
|
|
|
|
|
project_id: "other",
|
|
|
|
|
status: { enabled: true, active_ports: [], conflicts: [{ port: 1, reason: "nope" }] },
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
expect(screen.queryByText(/Port 1:/)).not.toBeInTheDocument();
|
|
|
|
|
});
|
|
|
|
|
|
2026-08-23 11:11:43 -07:00
|
|
|
/**
|
|
|
|
|
* The two halves of this row disagree about *when*, not about *what*.
|
|
|
|
|
*
|
|
|
|
|
* `set_auth_bridge_enabled` resolves with a status sampled as it returned;
|
|
|
|
|
* the poller's event carries one sampled afterwards. Writing the awaited
|
|
|
|
|
* value unconditionally therefore rolls the row back in time whenever the
|
|
|
|
|
* two overlap — the row says "Watching" while a port is bound, which is the
|
|
|
|
|
* exact silent failure the event subscription was added to end. These two
|
|
|
|
|
* hold the ordering down from both the resolve and the reject side.
|
|
|
|
|
*/
|
|
|
|
|
describe("a pushed event outranks an older awaited result", () => {
|
|
|
|
|
/** A toggle that will not settle until the test says so. */
|
|
|
|
|
function deferToggle() {
|
|
|
|
|
let settle!: (s: AuthBridgeStatus) => void;
|
|
|
|
|
let fail!: (e: unknown) => void;
|
|
|
|
|
setAuthBridgeEnabled.mockImplementation(
|
|
|
|
|
() =>
|
|
|
|
|
new Promise<AuthBridgeStatus>((resolve, reject) => {
|
|
|
|
|
settle = resolve;
|
|
|
|
|
fail = reject;
|
|
|
|
|
}),
|
|
|
|
|
);
|
|
|
|
|
return { settle: (s: AuthBridgeStatus) => settle(s), fail: (e: unknown) => fail(e) };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const BRIDGING: AuthBridgeStatus = {
|
|
|
|
|
enabled: true,
|
|
|
|
|
active_ports: [{ port: 54545, family: "v4", bridged_at: "", ipv6_warning: null }],
|
|
|
|
|
conflicts: [],
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
async function startToggleThenPush() {
|
|
|
|
|
render(<AuthBridgeRow project={project} />);
|
|
|
|
|
await waitFor(() => expect(getAuthBridgeStatus).toHaveBeenCalled());
|
|
|
|
|
await waitFor(() => expect(emit).not.toBeNull());
|
|
|
|
|
|
|
|
|
|
fireEvent.click(screen.getByRole("switch", { name: "Auth bridge" }));
|
|
|
|
|
await waitFor(() => expect(setAuthBridgeEnabled).toHaveBeenCalledWith("p1", true));
|
|
|
|
|
|
|
|
|
|
// The poller binds a port while the command is still in flight.
|
|
|
|
|
emit!({ project_id: "p1", status: BRIDGING });
|
|
|
|
|
expect(await screen.findByText("Bridging 1 port")).toBeInTheDocument();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
it("keeps the newer state when the command settles with the older one", async () => {
|
|
|
|
|
const toggle = deferToggle();
|
|
|
|
|
await startToggleThenPush();
|
|
|
|
|
|
|
|
|
|
// …and only now returns the snapshot it took *before* that port existed.
|
|
|
|
|
toggle.settle({ enabled: true, active_ports: [], conflicts: [] });
|
|
|
|
|
|
|
|
|
|
await waitFor(() =>
|
|
|
|
|
expect(screen.getByRole("switch", { name: "Auth bridge" })).not.toBeDisabled(),
|
|
|
|
|
);
|
|
|
|
|
expect(screen.getByText("Bridging 1 port")).toBeInTheDocument();
|
|
|
|
|
expect(screen.getByText("127.0.0.1:54545")).toBeInTheDocument();
|
|
|
|
|
expect(screen.queryByText("Watching")).not.toBeInTheDocument();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("does not let the rollback undo a status pushed while it was failing", async () => {
|
|
|
|
|
// The command failed, so the error belongs on screen — but the bridge
|
|
|
|
|
// demonstrably came up, and reverting the switch to off would contradict
|
|
|
|
|
// the port listed right beside it.
|
|
|
|
|
const toggle = deferToggle();
|
|
|
|
|
await startToggleThenPush();
|
|
|
|
|
|
|
|
|
|
toggle.fail("bridge probe timed out");
|
|
|
|
|
|
|
|
|
|
expect(await screen.findByText(/probe timed out/)).toBeInTheDocument();
|
|
|
|
|
expect(screen.getByText("Bridging 1 port")).toBeInTheDocument();
|
|
|
|
|
expect(screen.getByRole("switch", { name: "Auth bridge" })).toBeChecked();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2026-08-23 08:31:39 -07:00
|
|
|
it("puts the switch back if the command rejects", async () => {
|
|
|
|
|
setAuthBridgeEnabled.mockRejectedValue("Project p1 not found");
|
|
|
|
|
render(<AuthBridgeRow project={project} />);
|
|
|
|
|
await waitFor(() => expect(getAuthBridgeStatus).toHaveBeenCalled());
|
|
|
|
|
|
|
|
|
|
fireEvent.click(screen.getByRole("switch", { name: "Auth bridge" }));
|
|
|
|
|
|
|
|
|
|
expect(await screen.findByText(/not found/)).toBeInTheDocument();
|
|
|
|
|
expect(screen.getByRole("switch", { name: "Auth bridge" })).not.toBeChecked();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
describe("bridgeIndicator", () => {
|
|
|
|
|
// Every branch is a glyph plus a word — status is never colour alone.
|
|
|
|
|
it("says nothing is on when it is off", () => {
|
|
|
|
|
expect(bridgeIndicator(OFF, true)).toEqual({ tone: "off", label: "Off" });
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("puts a conflict ahead of everything else", () => {
|
|
|
|
|
expect(
|
|
|
|
|
bridgeIndicator(
|
|
|
|
|
{
|
|
|
|
|
enabled: true,
|
|
|
|
|
active_ports: [
|
|
|
|
|
{ port: 1, family: "v4", bridged_at: "", ipv6_warning: null },
|
|
|
|
|
],
|
|
|
|
|
conflicts: [{ port: 2, reason: "taken" }],
|
|
|
|
|
},
|
|
|
|
|
true,
|
|
|
|
|
).tone,
|
|
|
|
|
).toBe("error");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("flags a port that only took the IPv4 half", () => {
|
|
|
|
|
// Node resolves `localhost` to IPv6 first on Linux, so a v4-only listener
|
|
|
|
|
// is a callback that never arrives in front of a bridge reporting healthy.
|
|
|
|
|
expect(
|
|
|
|
|
bridgeIndicator(
|
|
|
|
|
{
|
|
|
|
|
enabled: true,
|
|
|
|
|
active_ports: [
|
|
|
|
|
{ port: 1, family: "v6", bridged_at: "", ipv6_warning: "no ::1" },
|
|
|
|
|
],
|
|
|
|
|
conflicts: [],
|
|
|
|
|
},
|
|
|
|
|
true,
|
|
|
|
|
).label,
|
|
|
|
|
).toBe("IPv4 only");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("counts the ports it is holding", () => {
|
|
|
|
|
expect(
|
|
|
|
|
bridgeIndicator(
|
|
|
|
|
{
|
|
|
|
|
enabled: true,
|
|
|
|
|
active_ports: [
|
|
|
|
|
{ port: 1, family: "v4", bridged_at: "", ipv6_warning: null },
|
|
|
|
|
{ port: 2, family: "v4", bridged_at: "", ipv6_warning: null },
|
|
|
|
|
],
|
|
|
|
|
conflicts: [],
|
|
|
|
|
},
|
|
|
|
|
true,
|
|
|
|
|
).label,
|
|
|
|
|
).toBe("Bridging 2 ports");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it("says it is waiting when the container is not running", () => {
|
|
|
|
|
// Enabled and holding nothing is normal; enabled with no container is a
|
|
|
|
|
// different thing, and saying so stops it reading as a failure.
|
|
|
|
|
expect(bridgeIndicator({ ...OFF, enabled: true }, false).label).toBe(
|
|
|
|
|
"Waiting for the container",
|
|
|
|
|
);
|
|
|
|
|
expect(bridgeIndicator({ ...OFF, enabled: true }, true).label).toBe("Watching");
|
|
|
|
|
});
|
|
|
|
|
});
|