mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* Extract client SDK package * Polish SDK client identity defaults * Build client before dependent CI jobs * Restore daemon client server export * Extract protocol and client SDK packages * Fix provider override schema validation * Fix app test daemon client imports * Simplify workspace build targets * Fix CLI test server build bootstrap * Run SDK package tests in CI * Fix rebase package split drift * Restore lockfile registry metadata * Update SDK config test for prompt default * Move terminal stream router test to client package * Fix rebase drift for protocol imports * Fix SDK agent capability fixture * Restore legacy server client exports * Fix server export compatibility test * Advertise custom mode icon client capability * Remove server daemon-client exports * Format rebased mode control import * Fix rebase drift for protocol imports Files added by upstream PRs (#893, #1147, #1154) referenced the pre-split shared/ paths that this branch moves into @getpaseo/protocol. Redirect those imports to the protocol package so typecheck stays green after the rebase.
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
/**
|
|
* @vitest-environment jsdom
|
|
*/
|
|
import { act, renderHook } from "@testing-library/react";
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { useCreateFlowStore } from "@/stores/create-flow-store";
|
|
import type { UserMessageImageAttachment } from "@/types/stream";
|
|
import type { AgentAttachment } from "@getpaseo/protocol/messages";
|
|
import { useDraftAgentCreateFlow, type DraftCreateAttempt } from "./create-flow";
|
|
|
|
describe("useDraftAgentCreateFlow", () => {
|
|
beforeEach(() => {
|
|
useCreateFlowStore.setState({ pendingByDraftId: {} });
|
|
});
|
|
|
|
it("renders a prepared new-workspace create attempt as optimistic chat before continuing it", async () => {
|
|
const image: UserMessageImageAttachment = {
|
|
id: "image-1",
|
|
mimeType: "image/png",
|
|
storageType: "web-indexeddb",
|
|
storageKey: "image-key",
|
|
createdAt: 123,
|
|
};
|
|
const attachment = {
|
|
type: "review",
|
|
cwd: "/repo",
|
|
summary: "Review",
|
|
} as unknown as AgentAttachment;
|
|
const attempt: DraftCreateAttempt = {
|
|
clientMessageId: "msg-prepared",
|
|
text: "build this",
|
|
timestamp: new Date("2026-05-25T00:00:00.000Z"),
|
|
images: [image],
|
|
attachments: [attachment],
|
|
};
|
|
const createRequest = vi.fn(
|
|
async (ctx: {
|
|
attempt: DraftCreateAttempt;
|
|
text: string;
|
|
images?: UserMessageImageAttachment[];
|
|
attachments?: AgentAttachment[];
|
|
cwd: string;
|
|
}) => ({
|
|
agentId: "agent-1",
|
|
result: { id: "agent-1", ctx },
|
|
}),
|
|
);
|
|
const onCreateSuccess = vi.fn();
|
|
|
|
const { result } = renderHook(() =>
|
|
useDraftAgentCreateFlow({
|
|
draftId: "draft-1",
|
|
getPendingServerId: () => "server-1",
|
|
initialAttempt: attempt,
|
|
buildDraftAgent: (currentAttempt) => ({ currentAttempt }),
|
|
createRequest,
|
|
onCreateSuccess,
|
|
}),
|
|
);
|
|
|
|
expect(result.current.isSubmitting).toBe(true);
|
|
expect(result.current.draftAgent).toEqual({ currentAttempt: attempt });
|
|
expect(result.current.optimisticStreamItems).toEqual([
|
|
{
|
|
kind: "user_message",
|
|
id: "msg-prepared",
|
|
text: "build this",
|
|
timestamp: attempt.timestamp,
|
|
optimistic: true,
|
|
images: [image],
|
|
attachments: [attachment],
|
|
},
|
|
]);
|
|
expect(createRequest).not.toHaveBeenCalled();
|
|
|
|
await act(async () => {
|
|
await result.current.continueCreateFromAttempt({ attempt, cwd: "/repo" });
|
|
});
|
|
|
|
expect(createRequest).toHaveBeenCalledTimes(1);
|
|
expect(createRequest).toHaveBeenCalledWith({
|
|
attempt,
|
|
text: "build this",
|
|
images: [image],
|
|
attachments: [attachment],
|
|
cwd: "/repo",
|
|
});
|
|
expect(onCreateSuccess).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|