Add regression coverage and stale-workflow fallback for workflow-aware dashboard selection. - Cover cached board-workflow hydration across remounted Header and Graph switchers. - Verify Header and Graph selections remain isolated while Graph task filtering follows the Graph selection. - Treat deleted workflow assignments as default-workflow tasks so they remain visible. - Add hook coverage for cache hydration, project changes, selection fallbacks, disabled workflow mode, and consumer isolation. - Add a patch changeset for the stale Graph workflow filtering fix. Files changed: .changeset/fn-7057-graph-workflow-filter.md | 7 + .../workflow-selection-cross-surface.test.tsx | 184 +++++++++++++++++++++ .../app/components/GraphWorkflowSwitcherSlot.tsx | 11 +- .../__tests__/GraphWorkflowSwitcherSlot.test.tsx | 1 + .../app/hooks/__tests__/useBoardWorkflows.test.ts | 133 ++++++++++++++- 5 files changed, 330 insertions(+), 6 deletions(-) Fusion-Task-Id: FN-7057 Fusion-Task-Lineage: 52e6682a-576e-4ed6-92d5-03e0e9b5896c
186 lines
7.3 KiB
TypeScript
186 lines
7.3 KiB
TypeScript
import { fireEvent, render, screen, waitFor } from "@testing-library/react";
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import type { BoardWorkflowDefinition, BoardWorkflowsPayload } from "../../api";
|
|
import { filterTasksByGraphWorkflowSelection, GraphWorkflowSwitcherSlot, type GraphWorkflowSelection } from "../GraphWorkflowSwitcherSlot";
|
|
|
|
const fetchBoardWorkflowsMock = vi.fn();
|
|
const subscribeSseMock = vi.fn(() => vi.fn());
|
|
|
|
vi.mock("../../api", () => ({
|
|
fetchBoardWorkflows: (...args: unknown[]) => fetchBoardWorkflowsMock(...args),
|
|
}));
|
|
|
|
vi.mock("../../sse-bus", () => ({
|
|
subscribeSse: (...args: unknown[]) => subscribeSseMock(...args),
|
|
}));
|
|
|
|
const DEFAULT_WORKFLOW: BoardWorkflowDefinition = {
|
|
id: "builtin:coding",
|
|
name: "Coding",
|
|
columns: [],
|
|
};
|
|
|
|
const CUSTOM_WORKFLOW: BoardWorkflowDefinition = {
|
|
id: "wf-review",
|
|
name: "Review",
|
|
columns: [],
|
|
};
|
|
|
|
function workflowPayload(overrides: Partial<BoardWorkflowsPayload> = {}): BoardWorkflowsPayload {
|
|
return {
|
|
flagEnabled: true,
|
|
defaultWorkflowId: DEFAULT_WORKFLOW.id,
|
|
workflows: [DEFAULT_WORKFLOW, CUSTOM_WORKFLOW],
|
|
taskWorkflowIds: {},
|
|
...overrides,
|
|
};
|
|
}
|
|
|
|
function appendHeaderWorkflowSlot() {
|
|
const slot = document.createElement("div");
|
|
slot.id = "header-workflow-slot";
|
|
slot.className = "header-workflow-slot";
|
|
document.body.appendChild(slot);
|
|
return slot;
|
|
}
|
|
|
|
beforeEach(() => {
|
|
sessionStorage.clear();
|
|
fetchBoardWorkflowsMock.mockReset();
|
|
subscribeSseMock.mockClear();
|
|
fetchBoardWorkflowsMock.mockResolvedValue(workflowPayload());
|
|
vi.spyOn(HTMLCanvasElement.prototype, "getContext").mockReturnValue(null);
|
|
});
|
|
|
|
afterEach(() => {
|
|
document.getElementById("header-workflow-slot")?.remove();
|
|
vi.restoreAllMocks();
|
|
});
|
|
|
|
describe("filterTasksByGraphWorkflowSelection", () => {
|
|
it("uses task workflow assignments with default fallback for graph scoping", () => {
|
|
const tasks = [
|
|
{ id: "FN-default" },
|
|
{ id: "FN-unassigned" },
|
|
{ id: "FN-review" },
|
|
{ id: "FN-unknown" },
|
|
];
|
|
const selection: GraphWorkflowSelection = {
|
|
boardWorkflows: workflowPayload({
|
|
taskWorkflowIds: {
|
|
"FN-review": CUSTOM_WORKFLOW.id,
|
|
"FN-unknown": "wf-missing",
|
|
},
|
|
}),
|
|
selectedWorkflow: DEFAULT_WORKFLOW,
|
|
};
|
|
|
|
expect(filterTasksByGraphWorkflowSelection(tasks, "project-graph", selection).map((task) => task.id)).toEqual([
|
|
"FN-default",
|
|
"FN-unassigned",
|
|
"FN-unknown",
|
|
]);
|
|
expect(filterTasksByGraphWorkflowSelection(tasks, "project-graph", { ...selection, selectedWorkflow: CUSTOM_WORKFLOW }).map((task) => task.id)).toEqual([
|
|
"FN-review",
|
|
]);
|
|
});
|
|
|
|
it("preserves unfiltered graph tasks without a project or workflow payload", () => {
|
|
const tasks = [{ id: "FN-a" }, { id: "FN-b" }];
|
|
const selection: GraphWorkflowSelection = {
|
|
boardWorkflows: workflowPayload({ taskWorkflowIds: { "FN-b": CUSTOM_WORKFLOW.id } }),
|
|
selectedWorkflow: CUSTOM_WORKFLOW,
|
|
};
|
|
|
|
expect(filterTasksByGraphWorkflowSelection(tasks, undefined, selection)).toBe(tasks);
|
|
expect(filterTasksByGraphWorkflowSelection(tasks, "project-graph", null)).toBe(tasks);
|
|
});
|
|
});
|
|
|
|
describe("GraphWorkflowSwitcherSlot", () => {
|
|
it("portals the shared workflow switcher into the header workflow slot", async () => {
|
|
const headerSlot = appendHeaderWorkflowSlot();
|
|
const onWorkflowSelectionChange = vi.fn();
|
|
|
|
render(<GraphWorkflowSwitcherSlot projectId="project-graph" onWorkflowSelectionChange={onWorkflowSelectionChange} />);
|
|
|
|
const selector = await screen.findByTestId("workflow-switcher");
|
|
expect(headerSlot.contains(selector)).toBe(true);
|
|
expect(headerSlot.querySelector(".board-workflow-toolbar")).not.toBeNull();
|
|
await waitFor(() => {
|
|
expect(onWorkflowSelectionChange).toHaveBeenLastCalledWith({
|
|
boardWorkflows: workflowPayload(),
|
|
selectedWorkflow: DEFAULT_WORKFLOW,
|
|
});
|
|
});
|
|
});
|
|
|
|
it("refreshes the board-workflows payload when the dropdown opens", async () => {
|
|
appendHeaderWorkflowSlot();
|
|
render(<GraphWorkflowSwitcherSlot projectId="project-refresh" />);
|
|
|
|
const selector = await screen.findByTestId("workflow-switcher");
|
|
await waitFor(() => expect(fetchBoardWorkflowsMock).toHaveBeenCalledTimes(1));
|
|
fireEvent.click(selector);
|
|
|
|
await waitFor(() => expect(fetchBoardWorkflowsMock).toHaveBeenCalledTimes(2));
|
|
expect(screen.getByRole("listbox", { name: "Workflow" })).toBeInTheDocument();
|
|
});
|
|
|
|
it("reports selection changes so App can scope graph tasks", async () => {
|
|
appendHeaderWorkflowSlot();
|
|
const onWorkflowSelectionChange = vi.fn();
|
|
render(<GraphWorkflowSwitcherSlot projectId="project-select" onWorkflowSelectionChange={onWorkflowSelectionChange} />);
|
|
|
|
fireEvent.click(await screen.findByTestId("workflow-switcher"));
|
|
fireEvent.click(screen.getByTestId("workflow-switcher-option-wf-review"));
|
|
|
|
await waitFor(() => {
|
|
const lastSelection = onWorkflowSelectionChange.mock.calls.at(-1)?.[0] as GraphWorkflowSelection | null;
|
|
expect(lastSelection?.selectedWorkflow.id).toBe("wf-review");
|
|
});
|
|
});
|
|
|
|
it("forwards dropdown edit workflow ids to the graph editor launcher", async () => {
|
|
appendHeaderWorkflowSlot();
|
|
const onOpenWorkflowEditor = vi.fn();
|
|
render(<GraphWorkflowSwitcherSlot projectId="project-edit" onOpenWorkflowEditor={onOpenWorkflowEditor} />);
|
|
|
|
fireEvent.click(await screen.findByTestId("workflow-switcher"));
|
|
fireEvent.click(screen.getByTestId("workflow-switcher-edit-wf-review"));
|
|
|
|
expect(onOpenWorkflowEditor).toHaveBeenCalledWith("wf-review");
|
|
});
|
|
|
|
it("renders no dropdown shell when the header slot is absent", async () => {
|
|
render(<GraphWorkflowSwitcherSlot projectId="project-no-slot" />);
|
|
|
|
await waitFor(() => expect(fetchBoardWorkflowsMock).toHaveBeenCalled());
|
|
expect(screen.queryByTestId("workflow-switcher")).toBeNull();
|
|
expect(document.querySelector(".board-workflow-toolbar")).toBeNull();
|
|
});
|
|
|
|
it("renders no dropdown shell when workflow mode is disabled, empty, or not switchable", async () => {
|
|
const headerSlot = appendHeaderWorkflowSlot();
|
|
const { rerender } = render(<GraphWorkflowSwitcherSlot projectId="project-disabled" />);
|
|
|
|
fetchBoardWorkflowsMock.mockResolvedValue(workflowPayload({ flagEnabled: false, workflows: [] }));
|
|
rerender(<GraphWorkflowSwitcherSlot projectId="project-disabled-next" />);
|
|
await waitFor(() => expect(fetchBoardWorkflowsMock).toHaveBeenCalledWith("project-disabled-next"));
|
|
expect(screen.queryByTestId("workflow-switcher")).toBeNull();
|
|
expect(headerSlot.childElementCount).toBe(0);
|
|
|
|
fetchBoardWorkflowsMock.mockResolvedValue(workflowPayload({ workflows: [] }));
|
|
rerender(<GraphWorkflowSwitcherSlot projectId="project-empty" />);
|
|
await waitFor(() => expect(fetchBoardWorkflowsMock).toHaveBeenCalledWith("project-empty"));
|
|
expect(screen.queryByTestId("workflow-switcher")).toBeNull();
|
|
expect(headerSlot.childElementCount).toBe(0);
|
|
|
|
fetchBoardWorkflowsMock.mockResolvedValue(workflowPayload({ workflows: [DEFAULT_WORKFLOW] }));
|
|
rerender(<GraphWorkflowSwitcherSlot projectId="project-single" />);
|
|
await waitFor(() => expect(fetchBoardWorkflowsMock).toHaveBeenCalledWith("project-single"));
|
|
expect(screen.queryByTestId("workflow-switcher")).toBeNull();
|
|
expect(headerSlot.childElementCount).toBe(0);
|
|
});
|
|
});
|