You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

426 lines
13 KiB

import { describe, it, expect, vi, beforeEach } from "vitest";
import { executeLlmGenerate } from "../llmGenerateExecutor";
import type { NodeExecutionContext } from "../types";
import type { WorkflowNode } from "@/types";
const mockFetch = vi.fn();
vi.stubGlobal("fetch", mockFetch);
const defaultProviderSettings = {
providers: {
gemini: { apiKey: "gkey" },
replicate: { apiKey: "" },
fal: { apiKey: "" },
kie: { apiKey: "" },
wavespeed: { apiKey: "" },
openai: { apiKey: "okey" },
anthropic: { apiKey: "" },
},
} as any;
function makeNode(data: Record<string, unknown> = {}): WorkflowNode {
return {
id: "llm-1",
type: "llmGenerate",
position: { x: 0, y: 0 },
data: {
outputText: null,
inputImages: [],
inputVideos: [],
inputPrompt: null,
status: null,
error: null,
provider: "google",
model: "gemini-2.5-flash",
temperature: 0.7,
maxTokens: 1024,
...data,
},
} as WorkflowNode;
}
function makeCtx(
node: WorkflowNode,
overrides: Partial<NodeExecutionContext> = {}
): NodeExecutionContext {
return {
node,
getConnectedInputs: vi.fn().mockReturnValue({
images: [],
videos: [],
audio: [],
text: "test llm prompt",
dynamicInputs: {},
easeCurve: null,
}),
updateNodeData: vi.fn(),
getFreshNode: vi.fn().mockReturnValue(node),
getEdges: vi.fn().mockReturnValue([]),
getNodes: vi.fn().mockReturnValue([node]),
providerSettings: defaultProviderSettings,
addIncurredCost: vi.fn(),
addToGlobalHistory: vi.fn(),
generationsPath: null,
saveDirectoryPath: null,
trackSaveGeneration: vi.fn(),
appendOutputGalleryImage: vi.fn(),
get: vi.fn(),
...overrides,
};
}
beforeEach(() => {
vi.clearAllMocks();
});
describe("executeLlmGenerate", () => {
it("should throw when no text input", async () => {
const node = makeNode();
const ctx = makeCtx(node, {
getConnectedInputs: vi.fn().mockReturnValue({
images: [],
videos: [],
audio: [],
text: null,
dynamicInputs: {},
easeCurve: null,
}),
});
await expect(executeLlmGenerate(ctx)).rejects.toThrow("Missing text input");
expect(ctx.updateNodeData).toHaveBeenCalledWith("llm-1", expect.objectContaining({
status: "error",
error: expect.stringContaining("Missing text input"),
}));
});
it("should set loading status before API call", async () => {
const node = makeNode();
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "generated text" }),
});
const ctx = makeCtx(node);
await executeLlmGenerate(ctx);
const calls = (ctx.updateNodeData as ReturnType<typeof vi.fn>).mock.calls;
const loadingCall = calls.find(
(c: unknown[]) => (c[1] as Record<string, unknown>).status === "loading"
);
expect(loadingCall).toBeDefined();
});
it("should call /api/llm with correct payload", async () => {
const node = makeNode();
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "result text" }),
});
const ctx = makeCtx(node);
await executeLlmGenerate(ctx);
expect(mockFetch).toHaveBeenCalledWith(
"/api/llm",
expect.objectContaining({
method: "POST",
})
);
const body = JSON.parse(mockFetch.mock.calls[0][1].body);
expect(body.prompt).toBe("test llm prompt");
expect(body.provider).toBe("google");
expect(body.model).toBe("gemini-2.5-flash");
expect(body.temperature).toBe(0.7);
expect(body.maxTokens).toBe(1024);
});
it("should include images in request when connected", async () => {
const node = makeNode();
const ctx = makeCtx(node, {
getConnectedInputs: vi.fn().mockReturnValue({
images: ["data:image/png;base64,img1"],
videos: [],
audio: [],
text: "describe this",
dynamicInputs: {},
easeCurve: null,
}),
});
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "description" }),
});
await executeLlmGenerate(ctx);
const body = JSON.parse(mockFetch.mock.calls[0][1].body);
expect(body.images).toEqual(["data:image/png;base64,img1"]);
});
it("should include videos in request when connected", async () => {
const node = makeNode();
const ctx = makeCtx(node, {
getConnectedInputs: vi.fn().mockReturnValue({
images: [],
videos: ["data:video/mp4;base64,vid1"],
audio: [],
text: "describe this video",
dynamicInputs: {},
easeCurve: null,
}),
});
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "description" }),
});
await executeLlmGenerate(ctx);
const body = JSON.parse(mockFetch.mock.calls[0][1].body);
expect(body.videos).toEqual(["data:video/mp4;base64,vid1"]);
const loadingCall = (ctx.updateNodeData as ReturnType<typeof vi.fn>).mock.calls.find(
(c: unknown[]) => (c[1] as Record<string, unknown>).status === "loading"
);
expect((loadingCall![1] as Record<string, unknown>).inputVideos).toEqual(["data:video/mp4;base64,vid1"]);
});
it("uploads Popiserver LLM media before calling /api/llm", async () => {
const node = makeNode({
selectedModel: {
provider: "popiserver",
modelId: "31",
displayName: "Kimi K2.6",
metadata: { aiModelId: 31 },
},
});
const ctx = makeCtx(node, {
providerSettings: {
providers: {
...defaultProviderSettings.providers,
popiserver: { enabled: true },
},
} as any,
getConnectedInputs: vi.fn().mockReturnValue({
images: ["data:image/png;base64,img1"],
videos: [],
audio: [],
text: "describe this",
dynamicInputs: {},
easeCurve: null,
}),
});
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, url: "https://static.popi.art/uploads/input.png" }),
});
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "description" }),
});
const originalMode = process.env.NEXT_PUBLIC_PROVIDER_MODE;
process.env.NEXT_PUBLIC_PROVIDER_MODE = "popi";
try {
await executeLlmGenerate(ctx);
} finally {
if (originalMode === undefined) {
delete process.env.NEXT_PUBLIC_PROVIDER_MODE;
} else {
process.env.NEXT_PUBLIC_PROVIDER_MODE = originalMode;
}
}
expect(mockFetch).toHaveBeenNthCalledWith(
1,
"/api/popi/media/upload",
expect.objectContaining({ method: "POST" })
);
expect(mockFetch).toHaveBeenNthCalledWith(
2,
"/api/llm",
expect.objectContaining({ method: "POST" })
);
const body = JSON.parse(mockFetch.mock.calls[1][1].body);
expect(body.provider).toBe("popiserver");
expect(body.images).toEqual(["https://static.popi.art/uploads/input.png"]);
expect(body.temperature).toBeUndefined();
expect(body.parameters.temperature).toBeUndefined();
});
it("should not include images field when none connected", async () => {
const node = makeNode();
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "result" }),
});
const ctx = makeCtx(node);
await executeLlmGenerate(ctx);
const body = JSON.parse(mockFetch.mock.calls[0][1].body);
expect(body.images).toBeUndefined();
expect(body.videos).toBeUndefined();
});
it("should update node with result text on success", async () => {
const node = makeNode();
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "generated output" }),
});
const ctx = makeCtx(node);
await executeLlmGenerate(ctx);
expect(ctx.updateNodeData).toHaveBeenCalledWith("llm-1", {
outputText: "generated output",
status: "complete",
error: null,
});
});
it("should throw on HTTP error", async () => {
const node = makeNode();
mockFetch.mockResolvedValueOnce({
ok: false,
status: 500,
text: () => Promise.resolve('{"error": "LLM down"}'),
});
const ctx = makeCtx(node);
await expect(executeLlmGenerate(ctx)).rejects.toThrow("LLM down");
});
it("should surface requestId from LLM API errors", async () => {
const node = makeNode();
mockFetch.mockResolvedValueOnce({
ok: false,
status: 500,
text: () => Promise.resolve('{"error": "LLM down", "requestId": "llm-request-1"}'),
});
const ctx = makeCtx(node);
await expect(executeLlmGenerate(ctx)).rejects.toThrow("requestId: llm-request-1");
expect(ctx.updateNodeData).toHaveBeenCalledWith("llm-1", expect.objectContaining({
status: "error",
error: "LLM down (requestId: llm-request-1)",
}));
});
it("should throw on API failure", async () => {
const node = makeNode();
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: false, error: "Token limit exceeded" }),
});
const ctx = makeCtx(node);
await expect(executeLlmGenerate(ctx)).rejects.toThrow("Token limit exceeded");
});
it("should use stored fallback in regenerate mode", async () => {
const node = makeNode({
inputImages: ["stored.png"],
inputPrompt: "stored llm prompt",
});
const ctx = makeCtx(node, {
getConnectedInputs: vi.fn().mockReturnValue({
images: [],
videos: [],
audio: [],
text: null,
dynamicInputs: {},
easeCurve: null,
}),
});
mockFetch.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "result" }),
});
await executeLlmGenerate(ctx, { useStoredFallback: true });
const body = JSON.parse(mockFetch.mock.calls[0][1].body);
expect(body.prompt).toBe("stored llm prompt");
expect(body.images).toEqual(["stored.png"]);
});
it("falls back on primary failure with provider mapping and stamps metadata", async () => {
// Primary is google/gemini-2.5-flash, fallback is stored as anthropic (no mapping needed)
const node = makeNode({
fallbackModel: {
provider: "anthropic",
modelId: "claude-sonnet-4.5",
displayName: "Claude Sonnet 4.5",
},
});
mockFetch
.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: false, error: "Primary LLM boom" }),
})
.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "fallback output" }),
});
const ctx = makeCtx(node);
await executeLlmGenerate(ctx);
expect(mockFetch).toHaveBeenCalledTimes(2);
// First call should use google/gemini-2.5-flash
const firstBody = JSON.parse(mockFetch.mock.calls[0][1].body);
expect(firstBody.provider).toBe("google");
expect(firstBody.model).toBe("gemini-2.5-flash");
// Second call (fallback) should use anthropic/claude-sonnet-4.5
const secondBody = JSON.parse(mockFetch.mock.calls[1][1].body);
expect(secondBody.provider).toBe("anthropic");
expect(secondBody.model).toBe("claude-sonnet-4.5");
const calls = (ctx.updateNodeData as ReturnType<typeof vi.fn>).mock.calls;
const stampCall = calls.find(
(c: unknown[]) => (c[1] as Record<string, unknown>).__usedFallback === true
);
expect(stampCall).toBeDefined();
expect((stampCall![1] as Record<string, unknown>).__fallbackModelUsed).toBe("Claude Sonnet 4.5");
expect((stampCall![1] as Record<string, unknown>).__primaryError).toBe("Primary LLM boom");
});
it("maps gemini->google when fallback is gemini", async () => {
const node = makeNode({
provider: "anthropic",
model: "claude-sonnet-4.5",
fallbackModel: {
provider: "gemini",
modelId: "gemini-2.5-flash",
displayName: "Gemini 2.5 Flash",
},
});
mockFetch
.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: false, error: "Claude down" }),
})
.mockResolvedValueOnce({
ok: true,
json: () => Promise.resolve({ success: true, text: "gemini result" }),
});
const ctx = makeCtx(node);
await executeLlmGenerate(ctx);
const secondBody = JSON.parse(mockFetch.mock.calls[1][1].body);
// Fallback provider "gemini" must be mapped to "google" for the /api/llm route
expect(secondBody.provider).toBe("google");
expect(secondBody.model).toBe("gemini-2.5-flash");
});
});