mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
* [870467e6] Frontend: page-scoped refresh provider, hook, and navbar button (#347) * [55376b8a] Create page-scoped refresh provider and context (#327) * [55376b8a] feat(panel): add page-scoped refresh context and provider * [55376b8a] docs(frontend): add page-refresh-provider component documentation --------- Co-authored-by: Frontend Developer 1 <fe-dev-1@roboco.tech> Co-authored-by: Frontend Documenter <fe-doc@roboco.tech> * [a0c02d0f] Add public usePageRefresh hook (#332) * [a0c02d0f] test(hooks): assert usePageRefresh is exported from hooks barrel * [a0c02d0f] feat(hooks): add public usePageRefresh hook with provider and tests * [a0c02d0f] fix(panel): move hook test wrappers to components and rename providers.tsx to unshadow barrel * [a0c02d0f] docs(panel): document usePageRefresh hook and PageRefreshProvider API --------- Co-authored-by: Frontend Developer 2 <fe-dev-2@roboco.tech> Co-authored-by: Frontend Documenter <fe-doc@roboco.tech> Co-authored-by: Renn F <rennf93@users.noreply.github.com> * [5f28dd9b] Add navbar refresh button and remove inline dashboard refresh buttons (#336) * [5f28dd9b] Align PageRefreshProvider with active hook API and remove inline dashboard refresh buttons * [5f28dd9b] Remove unused scope-keyed PageRefreshProvider, context, and associated tests * [5f28dd9b] Address QA revision: add header refresh tests, page-scoped label, remove dead provider code and .venv symlink, revert formatting-only changes * [5f28dd9b] Remove remaining inline dashboard refresh buttons and committed .venv symlink * [5f28dd9b] docs(frontend): update page-refresh provider docs and panel README for navbar refresh button * [5f28dd9b] fix(panel): remove .venv symlink, ignore root .venv entries, and thin task-detail page data fetch into useTaskDetail hook * [5f28dd9b] Extract GitBrowser data fetching into useGitBrowser hook and add tests; verify .venv cleanup and task-detail thin hook usage * [5f28dd9b] fix(panel): remove root .venv symlink, restore .gitignore anchored rule, and revert lifecycle.json formatting noise * Delete .venv --------- Co-authored-by: Frontend Developer 2 <fe-dev-2@roboco.tech> Co-authored-by: Frontend Documenter <fe-doc@roboco.tech> --------- Co-authored-by: Frontend Developer 1 <fe-dev-1@roboco.tech> Co-authored-by: Frontend Documenter <fe-doc@roboco.tech> Co-authored-by: Frontend Developer 2 <fe-dev-2@roboco.tech> Co-authored-by: Renn F <rennf93@users.noreply.github.com> * [b8e1de1b] Fix navbar refresh button disabled state when registry is empty (#356) (#358) * [b8e1de1b] fix(panel): derive navbar refresh disabled state from registry, not unused prop PageRefreshProvider now computes `disabled` from whether any refresh callback is currently registered (registry size > 0) instead of a static, never-passed `disabled` prop that left the button permanently enabled. header.tsx now destructures `disabled` from usePageRefresh() and disables the button on `disabled || loading`. Updated the tests that asserted the old always-enabled-by-default behavior and added a new header test asserting the button is disabled with zero registered callbacks. * [b8e1de1b] docs(panel): document PageRefreshProvider disabled state derived from registry Updated documentation to reflect the refactored PageRefreshProvider behavior: the `disabled` state is now derived from whether any refresh callbacks are currently registered (empty registry = disabled), rather than a static `disabled` prop. Clarified in both panel/README.md and the full component guide that the navbar refresh button disables when no callbacks are registered and when a refresh cycle is in progress. Updated API documentation to remove the now-removed `disabled` prop from PageRefreshProviderProps and updated code examples and test coverage descriptions to reflect the new callback-driven semantics. --------- Co-authored-by: Frontend Developer 1 <fe-dev-1@roboco.tech> Co-authored-by: Frontend Documenter <fe-doc@roboco.tech> * test(panel): mock usePageRefresh in tests predating the provider Merge-skew: the page-refresh feature makes CommandCenter and the agent detail page call usePageRefresh; three tests merged from master render them without the new provider. Mock the hook module, matching the files' stub-everything style. --------- Co-authored-by: Frontend Developer 1 <fe-dev-1@roboco.tech> Co-authored-by: Frontend Documenter <fe-doc@roboco.tech> Co-authored-by: Frontend Developer 2 <fe-dev-2@roboco.tech> Co-authored-by: Renn F <rennf93@users.noreply.github.com>
119 lines
4.0 KiB
TypeScript
119 lines
4.0 KiB
TypeScript
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
|
|
import { NextRequest } from "next/server";
|
|
|
|
describe("proxy", () => {
|
|
const originalFetch = global.fetch;
|
|
|
|
afterEach(() => {
|
|
global.fetch = originalFetch;
|
|
vi.resetModules();
|
|
});
|
|
|
|
it("passes through when cloud auth is off", async () => {
|
|
global.fetch = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: async () => ({ cloud_auth_enabled: false }),
|
|
}) as unknown as typeof fetch;
|
|
const { proxy } = await import("../proxy");
|
|
|
|
const res = await proxy(new NextRequest("http://localhost:3000/overview"));
|
|
expect(res.status).toBe(200);
|
|
});
|
|
|
|
it("redirects to /login when cloud auth is on and no session cookie", async () => {
|
|
global.fetch = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: async () => ({ cloud_auth_enabled: true }),
|
|
}) as unknown as typeof fetch;
|
|
const { proxy } = await import("../proxy");
|
|
|
|
const res = await proxy(new NextRequest("http://localhost:3000/overview"));
|
|
expect(res.status).toBe(307);
|
|
expect(res.headers.get("location")).toContain("/login");
|
|
});
|
|
|
|
it("passes through when cloud auth is on and a session cookie is present", async () => {
|
|
global.fetch = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
json: async () => ({ cloud_auth_enabled: true }),
|
|
}) as unknown as typeof fetch;
|
|
const { proxy } = await import("../proxy");
|
|
|
|
const req = new NextRequest("http://localhost:3000/overview", {
|
|
headers: { cookie: "roboco_session=abc123" },
|
|
});
|
|
const res = await proxy(req);
|
|
expect(res.status).toBe(200);
|
|
});
|
|
|
|
it("fails open (passes through) when the status probe errors", async () => {
|
|
global.fetch = vi.fn().mockRejectedValue(new Error("network down"));
|
|
const { proxy } = await import("../proxy");
|
|
|
|
const res = await proxy(new NextRequest("http://localhost:3000/overview"));
|
|
expect(res.status).toBe(200);
|
|
});
|
|
|
|
it("fails open when the status probe returns a non-ok response", async () => {
|
|
global.fetch = vi
|
|
.fn()
|
|
.mockResolvedValue({ ok: false }) as unknown as typeof fetch;
|
|
const { proxy } = await import("../proxy");
|
|
|
|
const res = await proxy(new NextRequest("http://localhost:3000/overview"));
|
|
expect(res.status).toBe(200);
|
|
});
|
|
});
|
|
|
|
describe("isCloudAuthEnabled last-known-good", () => {
|
|
type MockResponse = { ok: boolean; json?: () => Promise<unknown> };
|
|
|
|
beforeEach(() => {
|
|
vi.resetModules();
|
|
vi.useFakeTimers();
|
|
});
|
|
afterEach(() => {
|
|
vi.useRealTimers();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
it("caches a successful probe and reuses it when the next probe fails", async () => {
|
|
const fetchMock = vi
|
|
.fn()
|
|
.mockResolvedValueOnce({
|
|
ok: true,
|
|
json: async () => ({ cloud_auth_enabled: true }),
|
|
} as MockResponse)
|
|
.mockResolvedValueOnce({ ok: false } as MockResponse);
|
|
global.fetch = fetchMock as unknown as typeof fetch;
|
|
const { isCloudAuthEnabled } = await import("../proxy");
|
|
expect(await isCloudAuthEnabled()).toBe(true);
|
|
// next probe fails — should fall back to cached true, not false
|
|
expect(await isCloudAuthEnabled()).toBe(true);
|
|
expect(fetchMock).toHaveBeenCalledTimes(2);
|
|
});
|
|
|
|
it("fails open to false only when no fresh cache exists", async () => {
|
|
global.fetch = vi.fn().mockResolvedValue({
|
|
ok: false,
|
|
} as MockResponse) as unknown as typeof fetch;
|
|
const { isCloudAuthEnabled } = await import("../proxy");
|
|
expect(await isCloudAuthEnabled()).toBe(false);
|
|
});
|
|
|
|
it("treats a cached value older than the TTL as stale", async () => {
|
|
const fetchMock = vi
|
|
.fn()
|
|
.mockResolvedValueOnce({
|
|
ok: true,
|
|
json: async () => ({ cloud_auth_enabled: true }),
|
|
} as MockResponse)
|
|
.mockResolvedValueOnce({ ok: false } as MockResponse);
|
|
global.fetch = fetchMock as unknown as typeof fetch;
|
|
const { isCloudAuthEnabled } = await import("../proxy");
|
|
expect(await isCloudAuthEnabled()).toBe(true);
|
|
vi.advanceTimersByTime(31_000);
|
|
expect(await isCloudAuthEnabled()).toBe(false); // cache expired
|
|
});
|
|
});
|