mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 12:22:14 +03:00
Integrated into release/v3.8.1 — applied review suggestion (deduplicate removeHeaderCaseInsensitive)
695 lines
22 KiB
TypeScript
695 lines
22 KiB
TypeScript
import { test } from "node:test";
|
|
import assert from "node:assert/strict";
|
|
|
|
import { AntigravityExecutor } from "../../open-sse/executors/antigravity.ts";
|
|
import { setCliCompatProviders } from "../../open-sse/config/cliFingerprints.ts";
|
|
import { scrubProxyAndFingerprintHeaders } from "../../open-sse/services/antigravityHeaderScrub.ts";
|
|
import {
|
|
clearAntigravityVersionCache,
|
|
seedAntigravityVersionCache,
|
|
} from "../../open-sse/services/antigravityVersion.ts";
|
|
|
|
type AntigravityTransformResult = Exclude<
|
|
Awaited<ReturnType<AntigravityExecutor["transformRequest"]>>,
|
|
Response
|
|
>;
|
|
|
|
type ErrorPayload = {
|
|
error: {
|
|
code?: string;
|
|
message: string;
|
|
};
|
|
retryAfterMs?: number;
|
|
};
|
|
|
|
type ChatCompletionPayload = {
|
|
object?: string;
|
|
choices: Array<{
|
|
message: { content: string };
|
|
finish_reason: string;
|
|
}>;
|
|
usage?: {
|
|
prompt_tokens: number;
|
|
completion_tokens: number;
|
|
total_tokens: number;
|
|
};
|
|
};
|
|
|
|
async function withEnv<T>(
|
|
name: string,
|
|
value: string | undefined,
|
|
fn: () => T | Promise<T>
|
|
): Promise<T> {
|
|
const previous = process.env[name];
|
|
if (value === undefined) {
|
|
delete process.env[name];
|
|
} else {
|
|
process.env[name] = value;
|
|
}
|
|
|
|
try {
|
|
return await fn();
|
|
} finally {
|
|
if (previous === undefined) {
|
|
delete process.env[name];
|
|
} else {
|
|
process.env[name] = previous;
|
|
}
|
|
}
|
|
}
|
|
|
|
test.afterEach(() => {
|
|
clearAntigravityVersionCache();
|
|
});
|
|
|
|
test("AntigravityExecutor.buildUrl always targets the streaming endpoint", () => {
|
|
const executor = new AntigravityExecutor();
|
|
assert.match(
|
|
executor.buildUrl("gemini-2.5-flash", true),
|
|
/\/v1internal:streamGenerateContent\?alt=sse$/
|
|
);
|
|
assert.equal(
|
|
executor.buildUrl("gemini-2.5-flash", false),
|
|
executor.buildUrl("gemini-2.5-flash", true)
|
|
);
|
|
});
|
|
|
|
test("AntigravityExecutor.buildHeaders includes native headers without OmniRoute internals", () => {
|
|
const executor = new AntigravityExecutor();
|
|
const headers = executor.buildHeaders({ accessToken: "ag-token" }, false);
|
|
|
|
assert.equal(headers.Authorization, "Bearer ag-token");
|
|
assert.equal(headers.Accept, "text/event-stream");
|
|
assert.match(headers["User-Agent"], /^Antigravity\/4\.2\.0 /);
|
|
assert.equal(headers["X-OmniRoute-Source"], undefined);
|
|
});
|
|
|
|
test("Antigravity header scrub removes OmniRoute internal headers", () => {
|
|
const headers = scrubProxyAndFingerprintHeaders({
|
|
Authorization: "Bearer ag-token",
|
|
"X-OmniRoute-Source": "omniroute",
|
|
"X-OmniRoute-No-Cache": "true",
|
|
"X-Forwarded-For": "127.0.0.1",
|
|
});
|
|
|
|
assert.equal(headers.Authorization, "Bearer ag-token");
|
|
assert.equal(headers["X-OmniRoute-Source"], undefined);
|
|
assert.equal(headers["X-OmniRoute-No-Cache"], undefined);
|
|
assert.equal(headers["X-Forwarded-For"], undefined);
|
|
assert.equal(headers["Accept-Encoding"], "gzip, deflate, br");
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest normalizes model, project and contents", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const body = {
|
|
request: {
|
|
contents: [
|
|
{
|
|
role: "model",
|
|
parts: [
|
|
{ thought: true, text: "skip me" },
|
|
{ thoughtSignature: "sig-only" },
|
|
{ text: "keep me" },
|
|
],
|
|
},
|
|
{
|
|
role: "model",
|
|
parts: [{ functionResponse: { name: "read_file", response: {} } }],
|
|
},
|
|
],
|
|
tools: [{ functionDeclarations: [{ name: "read_file" }] }],
|
|
},
|
|
};
|
|
|
|
const result = await executor.transformRequest("antigravity/gemini-3.1-pro", body, true, {
|
|
projectId: "project-1",
|
|
});
|
|
|
|
if (result instanceof Response) throw new Error("Unexpected Response from transformRequest");
|
|
assert.equal(result.project, "project-1");
|
|
assert.equal(result.model, "gemini-3.1-pro-low");
|
|
assert.deepEqual(Object.keys(result), [
|
|
"project",
|
|
"requestId",
|
|
"request",
|
|
"model",
|
|
"userAgent",
|
|
"requestType",
|
|
"enabledCreditTypes",
|
|
]);
|
|
assert.equal(result.userAgent, "antigravity");
|
|
assert.match(result.requestId, /^agent\/\d+\/[0-9a-f]{8}$/);
|
|
assert.deepEqual(result.enabledCreditTypes, ["GOOGLE_ONE_AI"]);
|
|
assert.ok(result.request.sessionId);
|
|
const request = result.request as { generationConfig?: { topK?: number; topP?: number } };
|
|
const generationConfig = request.generationConfig || {};
|
|
assert.equal(generationConfig.topK, 40);
|
|
assert.equal(generationConfig.topP, 1.0);
|
|
assert.deepEqual(result.request.toolConfig, {
|
|
functionCallingConfig: { mode: "VALIDATED" },
|
|
});
|
|
assert.deepEqual(result.request.contents[0].parts, [{ text: "keep me" }]);
|
|
assert.equal(result.request.contents[1].role, "user");
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest strips thinking config for Cloud Code models that do not support reasoning", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const body = {
|
|
reasoning_effort: "high",
|
|
request: {
|
|
generationConfig: {
|
|
thinkingConfig: {
|
|
thinkingBudget: 8192,
|
|
includeThoughts: true,
|
|
},
|
|
},
|
|
contents: [{ role: "user", parts: [{ text: "Hello" }] }],
|
|
},
|
|
};
|
|
|
|
const result = await executor.transformRequest("antigravity/claude-sonnet-4-6", body, true, {
|
|
projectId: "project-1",
|
|
});
|
|
|
|
if (result instanceof Response) throw new Error("Unexpected Response from transformRequest");
|
|
const generationConfig = result.request.generationConfig as {
|
|
thinkingConfig?: { thinkingBudget?: number; includeThoughts?: boolean };
|
|
};
|
|
assert.equal(result.reasoning_effort, undefined);
|
|
assert.equal(generationConfig.thinkingConfig, undefined);
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest preserves thinking config for supported Gemini models", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const body = {
|
|
request: {
|
|
generationConfig: {
|
|
thinkingConfig: {
|
|
thinkingBudget: 8192,
|
|
includeThoughts: true,
|
|
},
|
|
},
|
|
contents: [{ role: "user", parts: [{ text: "Hello" }] }],
|
|
},
|
|
};
|
|
|
|
const result = await executor.transformRequest("antigravity/gemini-3.1-pro-high", body, true, {
|
|
projectId: "project-1",
|
|
});
|
|
|
|
if (result instanceof Response) throw new Error("Unexpected Response from transformRequest");
|
|
const generationConfig = result.request.generationConfig as {
|
|
thinkingConfig: { thinkingBudget?: number; includeThoughts?: boolean };
|
|
};
|
|
assert.equal(generationConfig.thinkingConfig.thinkingBudget, 8192);
|
|
assert.equal(generationConfig.thinkingConfig.includeThoughts, true);
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest tolerates a missing body when projectId is present", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
|
|
const result = await executor.transformRequest("antigravity/gemini-3.1-pro", null, true, {
|
|
projectId: "project-1",
|
|
});
|
|
|
|
if (result instanceof Response) throw new Error("Unexpected Response from transformRequest");
|
|
assert.equal(result.project, "project-1");
|
|
assert.equal(result.model, "gemini-3.1-pro-low");
|
|
assert.ok(result.request.sessionId);
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest returns a structured error response when projectId is missing", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const result = await executor.transformRequest(
|
|
"gemini-2.5-flash",
|
|
{ request: { contents: [] } },
|
|
true,
|
|
{}
|
|
);
|
|
if (!(result instanceof Response)) throw new Error("Expected Response from transformRequest");
|
|
const payload = (await result.json()) as ErrorPayload;
|
|
|
|
assert.equal(result.status, 422);
|
|
assert.equal(payload.error.code, "missing_project_id");
|
|
assert.match(payload.error.message, /Missing Google projectId/);
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest prefers top-level credentials projectId over nested providerSpecificData", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const result = await executor.transformRequest(
|
|
"antigravity/gemini-2.5-pro",
|
|
{
|
|
project: "body-project",
|
|
request: {
|
|
contents: [{ role: "user", parts: [{ text: "Hello" }] }],
|
|
},
|
|
},
|
|
true,
|
|
{
|
|
projectId: "credential-project",
|
|
providerSpecificData: { projectId: "nested-project" },
|
|
}
|
|
);
|
|
|
|
if (result instanceof Response) throw new Error("Unexpected Response from transformRequest");
|
|
assert.equal(result.project, "credential-project");
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest uses nested providerSpecificData projectId when top-level is absent", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const result = await executor.transformRequest(
|
|
"antigravity/gemini-2.5-pro",
|
|
{
|
|
request: {
|
|
contents: [{ role: "user", parts: [{ text: "Hello" }] }],
|
|
},
|
|
},
|
|
true,
|
|
{
|
|
providerSpecificData: { projectId: "nested-project" },
|
|
}
|
|
);
|
|
|
|
if (result instanceof Response) throw new Error("Unexpected Response from transformRequest");
|
|
assert.equal(result.project, "nested-project");
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest treats whitespace-only project values as missing", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
|
|
const nestedFallback = await executor.transformRequest(
|
|
"antigravity/gemini-2.5-pro",
|
|
{
|
|
project: " ",
|
|
request: {
|
|
contents: [{ role: "user", parts: [{ text: "Hello" }] }],
|
|
},
|
|
},
|
|
true,
|
|
{
|
|
projectId: " ",
|
|
providerSpecificData: { projectId: " nested-project " },
|
|
}
|
|
);
|
|
|
|
if (nestedFallback instanceof Response)
|
|
throw new Error("Unexpected Response from transformRequest");
|
|
assert.equal(nestedFallback.project, "nested-project");
|
|
|
|
const bodyFallback = await executor.transformRequest(
|
|
"antigravity/gemini-2.5-pro",
|
|
{
|
|
project: " body-project ",
|
|
request: {
|
|
contents: [{ role: "user", parts: [{ text: "Hello" }] }],
|
|
},
|
|
},
|
|
true,
|
|
{
|
|
projectId: " ",
|
|
providerSpecificData: { projectId: " " },
|
|
}
|
|
);
|
|
|
|
if (bodyFallback instanceof Response)
|
|
throw new Error("Unexpected Response from transformRequest");
|
|
assert.equal(bodyFallback.project, "body-project");
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest allows body project overrides when the env flag is enabled", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
|
|
await withEnv("OMNIROUTE_ALLOW_BODY_PROJECT_OVERRIDE", "1", async () => {
|
|
const result = await executor.transformRequest(
|
|
"antigravity/gemini-2.5-pro",
|
|
{
|
|
project: "body-project",
|
|
request: {
|
|
contents: [{ role: "user", parts: [{ text: "Hello" }] }],
|
|
sessionId: "session-fixed",
|
|
},
|
|
},
|
|
true,
|
|
{ projectId: "credential-project" }
|
|
);
|
|
|
|
if (result instanceof Response) throw new Error("Unexpected Response from transformRequest");
|
|
assert.equal(result.project, "body-project");
|
|
assert.equal(result.request.sessionId, "session-fixed");
|
|
assert.equal(result.model, "gemini-2.5-pro");
|
|
});
|
|
});
|
|
|
|
test("AntigravityExecutor parses retry timing from headers and error strings", () => {
|
|
const executor = new AntigravityExecutor();
|
|
const headers = new Headers({
|
|
"retry-after": "120",
|
|
"x-ratelimit-reset-after": "30",
|
|
});
|
|
|
|
assert.equal(executor.parseRetryHeaders(headers), 120_000);
|
|
assert.equal(
|
|
executor.parseRetryFromErrorMessage("Your quota will reset after 2h7m23s"),
|
|
7_643_000
|
|
);
|
|
});
|
|
|
|
test("AntigravityExecutor.parseRetryHeaders falls back to reset-after and reset timestamps", () => {
|
|
const executor = new AntigravityExecutor();
|
|
const futureSeconds = Math.floor(Date.now() / 1000) + 90;
|
|
|
|
assert.equal(
|
|
executor.parseRetryHeaders(new Headers({ "x-ratelimit-reset-after": "45" })),
|
|
45_000
|
|
);
|
|
assert.ok(
|
|
executor.parseRetryHeaders(new Headers({ "x-ratelimit-reset": String(futureSeconds) })) >=
|
|
89_000
|
|
);
|
|
});
|
|
|
|
test("AntigravityExecutor.collectStreamToResponse turns SSE Gemini chunks into a chat completion", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const response = new Response(
|
|
[
|
|
'data: {"response":{"candidates":[{"content":{"parts":[{"text":"Hello "}]},"finishReason":"STOP"}]}}\n\n',
|
|
'data: {"response":{"candidates":[{"content":{"parts":[{"text":"world"}]},"finishReason":"STOP"}],"usageMetadata":{"promptTokenCount":5,"candidatesTokenCount":3,"totalTokenCount":8}}}\n\n',
|
|
].join(""),
|
|
{
|
|
status: 200,
|
|
headers: { "Content-Type": "text/event-stream" },
|
|
}
|
|
);
|
|
|
|
const result = await executor.collectStreamToResponse(
|
|
response,
|
|
"gemini-2.5-flash",
|
|
"https://example.com",
|
|
{ Authorization: "Bearer ag-token" },
|
|
{ request: {} }
|
|
);
|
|
const payload = (await result.response.json()) as ChatCompletionPayload;
|
|
|
|
assert.equal(result.response.status, 200);
|
|
assert.equal(payload.object, "chat.completion");
|
|
assert.equal(payload.choices[0].message.content, "Hello world");
|
|
assert.equal(payload.choices[0].finish_reason, "stop");
|
|
assert.deepEqual(payload.usage, {
|
|
prompt_tokens: 5,
|
|
completion_tokens: 3,
|
|
total_tokens: 8,
|
|
});
|
|
});
|
|
|
|
test("AntigravityExecutor.collectStreamToResponse parses fragmented SSE lines incrementally", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const encoder = new TextEncoder();
|
|
const streamText = [
|
|
`data: ${JSON.stringify({
|
|
response: {
|
|
candidates: [{ content: { parts: [{ text: "Frag" }] } }],
|
|
},
|
|
})}\n\n`,
|
|
`data: ${JSON.stringify({
|
|
response: {
|
|
candidates: [
|
|
{
|
|
content: { parts: [{ text: "mented" }] },
|
|
finishReason: "STOP",
|
|
},
|
|
],
|
|
usageMetadata: {
|
|
promptTokenCount: 9,
|
|
candidatesTokenCount: 4,
|
|
totalTokenCount: 13,
|
|
},
|
|
},
|
|
})}\n\n`,
|
|
].join("");
|
|
const response = new Response(
|
|
new ReadableStream({
|
|
start(controller) {
|
|
for (const chunk of [
|
|
streamText.slice(0, 6),
|
|
streamText.slice(6, 31),
|
|
streamText.slice(31, 79),
|
|
streamText.slice(79, 143),
|
|
streamText.slice(143),
|
|
]) {
|
|
controller.enqueue(encoder.encode(chunk));
|
|
}
|
|
controller.close();
|
|
},
|
|
}),
|
|
{
|
|
status: 200,
|
|
headers: { "Content-Type": "text/event-stream" },
|
|
}
|
|
);
|
|
|
|
const result = await executor.collectStreamToResponse(
|
|
response,
|
|
"gemini-2.5-flash",
|
|
"https://example.com",
|
|
{ Authorization: "Bearer ag-token" },
|
|
{ request: {} }
|
|
);
|
|
const payload = (await result.response.json()) as ChatCompletionPayload;
|
|
|
|
assert.equal(payload.choices[0].message.content, "Fragmented");
|
|
assert.equal(payload.choices[0].finish_reason, "stop");
|
|
assert.deepEqual(payload.usage, {
|
|
prompt_tokens: 9,
|
|
completion_tokens: 4,
|
|
total_tokens: 13,
|
|
});
|
|
});
|
|
|
|
test("AntigravityExecutor.refreshCredentials refreshes Google OAuth tokens", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const originalFetch = globalThis.fetch;
|
|
globalThis.fetch = async (url) => {
|
|
assert.match(String(url), /oauth2\.googleapis\.com\/token$/);
|
|
return new Response(
|
|
JSON.stringify({
|
|
access_token: "new-token",
|
|
refresh_token: "new-refresh",
|
|
expires_in: 3600,
|
|
}),
|
|
{ status: 200, headers: { "Content-Type": "application/json" } }
|
|
);
|
|
};
|
|
|
|
try {
|
|
const result = await executor.refreshCredentials(
|
|
{ refreshToken: "refresh", projectId: "project-1" },
|
|
null
|
|
);
|
|
assert.deepEqual(result, {
|
|
accessToken: "new-token",
|
|
refreshToken: "new-refresh",
|
|
expiresIn: 3600,
|
|
projectId: "project-1",
|
|
});
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
});
|
|
|
|
test("AntigravityExecutor.execute auto-retries short 429 responses and collects SSE for non-stream clients", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const originalFetch = globalThis.fetch;
|
|
const originalSetTimeout = globalThis.setTimeout;
|
|
const calls = [];
|
|
seedAntigravityVersionCache("2026.04.17-test");
|
|
|
|
globalThis.fetch = async (url) => {
|
|
calls.push(String(url));
|
|
|
|
if (calls.length === 1) {
|
|
return new Response(JSON.stringify({ error: { message: "rate limited" } }), {
|
|
status: 429,
|
|
headers: { "Content-Type": "application/json" },
|
|
});
|
|
}
|
|
|
|
return new Response(
|
|
[
|
|
'data: {"response":{"candidates":[{"content":{"parts":[{"text":"Hello "}]},"finishReason":"STOP"}]}}\n\n',
|
|
'data: {"response":{"candidates":[{"content":{"parts":[{"text":"again"}]},"finishReason":"STOP"}],"usageMetadata":{"promptTokenCount":2,"candidatesTokenCount":3,"totalTokenCount":5}}}\n\n',
|
|
].join(""),
|
|
{
|
|
status: 200,
|
|
headers: { "Content-Type": "text/event-stream" },
|
|
}
|
|
);
|
|
};
|
|
globalThis.setTimeout = ((callback) => {
|
|
(callback as () => void)();
|
|
return 0;
|
|
}) as typeof setTimeout;
|
|
|
|
try {
|
|
const result = await executor.execute({
|
|
model: "antigravity/gemini-2.5-flash",
|
|
body: { request: { contents: [] } },
|
|
stream: false,
|
|
credentials: { accessToken: "token", projectId: "project-1" },
|
|
log: { debug() {}, warn() {} },
|
|
});
|
|
const payload = (await result.response.json()) as ChatCompletionPayload;
|
|
|
|
assert.equal(calls.length, 2);
|
|
assert.equal(result.response.status, 200);
|
|
assert.equal(payload.choices[0].message.content, "Hello again");
|
|
assert.deepEqual(payload.usage, {
|
|
prompt_tokens: 2,
|
|
completion_tokens: 3,
|
|
total_tokens: 5,
|
|
});
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
globalThis.setTimeout = originalSetTimeout;
|
|
}
|
|
});
|
|
|
|
test("AntigravityExecutor.execute embeds retryAfterMs when the upstream asks for a long wait", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const originalFetch = globalThis.fetch;
|
|
seedAntigravityVersionCache("2026.04.17-test");
|
|
|
|
globalThis.fetch = async () =>
|
|
new Response(
|
|
JSON.stringify({
|
|
error: {
|
|
message: "Your quota will reset after 2h",
|
|
},
|
|
}),
|
|
{
|
|
status: 429,
|
|
headers: { "Content-Type": "application/json" },
|
|
}
|
|
);
|
|
|
|
try {
|
|
const result = await executor.execute({
|
|
model: "antigravity/gemini-2.5-flash",
|
|
body: { request: { contents: [] } },
|
|
stream: true,
|
|
credentials: { accessToken: "token", projectId: "project-1" },
|
|
log: { debug() {}, warn() {} },
|
|
});
|
|
const payload = (await result.response.json()) as ErrorPayload;
|
|
|
|
assert.equal(result.response.status, 429);
|
|
assert.equal(payload.retryAfterMs, 7_200_000);
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
});
|
|
|
|
test("AntigravityExecutor.execute applies CLI fingerprint when enabled", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const originalFetch = globalThis.fetch;
|
|
seedAntigravityVersionCache("2026.04.17-test");
|
|
setCliCompatProviders(["antigravity"]);
|
|
|
|
globalThis.fetch = async (_url, init) => {
|
|
const headers = init?.headers as Record<string, string>;
|
|
const parsedBody = JSON.parse(String(init?.body));
|
|
|
|
assert.equal(
|
|
headers["User-Agent"],
|
|
"Antigravity/2026.04.17-test (Macintosh; Intel Mac OS X 10_15_7) Chrome/132.0.6834.160 Electron/39.2.3"
|
|
);
|
|
assert.equal(headers["x-client-name"], "antigravity");
|
|
assert.equal(headers["x-client-version"], "2026.04.17-test");
|
|
assert.equal(headers["x-goog-user-project"], "project-1");
|
|
assert.deepEqual(Object.keys(parsedBody), [
|
|
"project",
|
|
"requestId",
|
|
"request",
|
|
"model",
|
|
"userAgent",
|
|
"requestType",
|
|
"enabledCreditTypes",
|
|
]);
|
|
|
|
return new Response(
|
|
'data: {"response":{"candidates":[{"content":{"parts":[{"text":"OK"}]},"finishReason":"STOP"}]}}\n\n',
|
|
{
|
|
status: 200,
|
|
headers: { "Content-Type": "text/event-stream" },
|
|
}
|
|
);
|
|
};
|
|
|
|
try {
|
|
const result = await withEnv("ANTIGRAVITY_CREDITS", "always", () =>
|
|
executor.execute({
|
|
model: "antigravity/gemini-2.5-flash",
|
|
body: { request: { contents: [] } },
|
|
stream: false,
|
|
credentials: { accessToken: "token", projectId: "project-1" },
|
|
log: { debug() {}, warn() {}, info() {} },
|
|
})
|
|
);
|
|
|
|
assert.equal(result.response.status, 200);
|
|
} finally {
|
|
setCliCompatProviders([]);
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
});
|
|
|
|
test("AntigravityExecutor.transformRequest maps Claude models through Gemini contents schema", async () => {
|
|
const executor = new AntigravityExecutor();
|
|
const body = {
|
|
project: "project-1",
|
|
model: "claude-sonnet-4-6",
|
|
userAgent: "antigravity",
|
|
requestId: "agent-123",
|
|
requestType: "agent",
|
|
request: {
|
|
contents: [{ role: "user", parts: [{ text: "Hello" }] }],
|
|
systemInstruction: { role: "system", parts: [{ text: "System prompt" }] },
|
|
generationConfig: {
|
|
temperature: 1,
|
|
maxOutputTokens: 16384,
|
|
},
|
|
messages: [{ role: "user", content: [{ type: "text", text: "Legacy Anthropic field" }] }],
|
|
system: [{ type: "text", text: "Legacy system field" }],
|
|
max_tokens: 16384,
|
|
stream: true,
|
|
temperature: 1,
|
|
},
|
|
};
|
|
|
|
const result = (await executor.transformRequest("antigravity/claude-sonnet-4-6", body, true, {
|
|
projectId: "project-1",
|
|
})) as AntigravityTransformResult;
|
|
|
|
assert.equal(result.project, "project-1");
|
|
assert.equal(result.model, "claude-sonnet-4-6");
|
|
assert.equal(result.requestType, "agent");
|
|
assert.ok(result.request.sessionId);
|
|
assert.deepEqual(result.enabledCreditTypes, ["GOOGLE_ONE_AI"]);
|
|
assert.deepEqual(result.request.contents, [{ role: "user", parts: [{ text: "Hello" }] }]);
|
|
assert.deepEqual(result.request.systemInstruction, {
|
|
role: "system",
|
|
parts: [{ text: "System prompt" }],
|
|
});
|
|
assert.deepEqual(result.request.generationConfig, {
|
|
temperature: 1,
|
|
maxOutputTokens: 16384,
|
|
topK: 40,
|
|
topP: 1.0,
|
|
});
|
|
assert.equal(result.request.messages, undefined);
|
|
assert.equal(result.request.system, undefined);
|
|
assert.equal(result.request.max_tokens, undefined);
|
|
assert.equal(result.request.stream, undefined);
|
|
assert.equal(result.request.temperature, undefined);
|
|
assert.equal(result.request.toolConfig, undefined);
|
|
});
|