-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathacp-e2e-test-utils.ts
More file actions
131 lines (114 loc) · 4.37 KB
/
Copy pathacp-e2e-test-utils.ts
File metadata and controls
131 lines (114 loc) · 4.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
import * as acp from "@agentclientprotocol/sdk";
import {describe, expect} from "vitest";
import {AgentMode} from "../../../AgentMode";
import {createSpawnedAgentFixture, type SpawnedAgentFixture} from "./spawned-agent-fixture";
export {
createPermissionResponder,
createPermissionResponse,
type PermissionResponder,
} from "./permission-responders";
export {
DEFAULT_TEST_MODEL_ID,
type SpawnedAgentFixture,
type TestSkill,
OTHER_TEST_MODEL_ID,
} from "./spawned-agent-fixture";
export const RUN_E2E_TESTS = process.env["RUN_E2E_TESTS"] === "true";
const DEFAULT_E2E_SUITE_TIMEOUT_MS = 60_000;
export function describeE2E(name: string, factory: () => void, timeoutMs = DEFAULT_E2E_SUITE_TIMEOUT_MS): void {
describe.skipIf(!RUN_E2E_TESTS)(name, {timeout: timeoutMs}, factory);
}
export function expectEndTurn(response: acp.PromptResponse): void {
expect(response.stopReason).toBe("end_turn");
}
export async function createAuthenticatedFixture(initialMode?: AgentMode): Promise<SpawnedAgentFixture> {
const apiKey = requireLiveApiKey();
const extraEnv = initialMode ? {INITIAL_AGENT_MODE: initialMode.id} : undefined;
return await createSpawnedFixture(async (connection, authMethods) => {
if (!authMethods.some((method) => method.id === "api-key")) {
throw new Error("API key authentication is not available.");
}
await connection.authenticate({
methodId: "api-key",
_meta: {
"api-key": {
apiKey,
},
},
});
const authenticationStatus = await getAuthenticationStatus(connection);
if (authenticationStatus["type"] !== "api-key") {
throw new Error(`Unexpected authentication status: ${JSON.stringify(authenticationStatus)}`);
}
}, extraEnv);
}
export async function createGatewayFixture(
baseUrl: string,
headers: Record<string, string>,
): Promise<SpawnedAgentFixture> {
return await createSpawnedFixture(async (connection, authMethods) => {
if (!authMethods.some((method) => method.id === "gateway")) {
throw new Error("Gateway authentication is not available.");
}
await connection.authenticate({
methodId: "gateway",
_meta: {
gateway: {
baseUrl,
headers,
},
},
});
const authenticationStatus = await getAuthenticationStatus(connection);
if (authenticationStatus["type"] !== "gateway" || authenticationStatus["name"] !== "custom-gateway") {
throw new Error(`Unexpected authentication status: ${JSON.stringify(authenticationStatus)}`);
}
});
}
function buildClientCapabilities(): acp.ClientCapabilities {
return {
fs: {
readTextFile: true,
writeTextFile: true,
},
terminal: true,
auth: {
_meta: {
gateway: true,
},
},
_meta: {
"terminal-auth": true,
},
};
}
type Authenticator = (connection: acp.ClientSideConnection, authMethods: acp.AuthMethod[]) => Promise<void>;
async function createSpawnedFixture(
authenticate: Authenticator,
extraEnv?: NodeJS.ProcessEnv,
): Promise<SpawnedAgentFixture> {
return await createSpawnedAgentFixture(async (connection) => {
const initializeResponse = await connection.initialize({
protocolVersion: acp.PROTOCOL_VERSION,
clientCapabilities: buildClientCapabilities(),
clientInfo: {
name: "vitest",
version: "1.0.0",
},
});
if (initializeResponse.protocolVersion !== acp.PROTOCOL_VERSION) {
throw new Error(`Unexpected protocol version: ${initializeResponse.protocolVersion}`);
}
await authenticate(connection, initializeResponse.authMethods ?? []);
}, extraEnv);
}
export function requireLiveApiKey(): string {
const apiKey = process.env["CODEX_API_KEY"] ?? process.env["OPENAI_API_KEY"];
if (!apiKey) {
throw new Error("Live integration test requires CODEX_API_KEY or OPENAI_API_KEY.");
}
return apiKey;
}
async function getAuthenticationStatus(connection: acp.ClientSideConnection): Promise<Record<string, unknown>> {
return await connection.extMethod("authentication/status", {});
}