mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-25 05:21:03 -07:00
241 lines
6.5 KiB
TypeScript
241 lines
6.5 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2026 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type {
|
|
AgentEvent,
|
|
AgentEventCommon,
|
|
AgentEventData,
|
|
AgentSend,
|
|
AgentProtocol,
|
|
Unsubscribe,
|
|
} from './types.js';
|
|
|
|
export type MockAgentEvent = Partial<AgentEventCommon> & AgentEventData;
|
|
|
|
export interface PushResponseOptions {
|
|
/** If true, does not automatically add an agent_end event. */
|
|
keepOpen?: boolean;
|
|
}
|
|
|
|
/**
|
|
* A mock implementation of AgentProtocol for testing.
|
|
* Allows queuing responses that will be yielded when send() is called.
|
|
*/
|
|
export class MockAgentProtocol implements AgentProtocol {
|
|
private _events: AgentEvent[] = [];
|
|
private _responses: Array<{
|
|
events: MockAgentEvent[];
|
|
options?: PushResponseOptions;
|
|
}> = [];
|
|
private _subscribers = new Set<(event: AgentEvent) => void>();
|
|
private _activeStreamIds = new Set<string>();
|
|
private _lastStreamId?: string | null;
|
|
private _nextEventId = 1;
|
|
private _nextStreamId = 1;
|
|
|
|
title?: string;
|
|
model?: string;
|
|
config?: Record<string, unknown>;
|
|
|
|
constructor(initialEvents: AgentEvent[] = []) {
|
|
this._events = [...initialEvents];
|
|
}
|
|
|
|
/**
|
|
* All events that have occurred in this session so far.
|
|
*/
|
|
get events(): AgentEvent[] {
|
|
return this._events;
|
|
}
|
|
|
|
subscribe(callback: (event: AgentEvent) => void): Unsubscribe {
|
|
this._subscribers.add(callback);
|
|
return () => this._subscribers.delete(callback);
|
|
}
|
|
|
|
private _emit(event: AgentEvent) {
|
|
if (!this._events.some((e) => e.id === event.id)) {
|
|
this._events.push(event);
|
|
}
|
|
for (const callback of this._subscribers) {
|
|
callback(event);
|
|
}
|
|
if (event.type === 'agent_end' && event.streamId) {
|
|
this._activeStreamIds.delete(event.streamId);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Queues a sequence of events to be "emitted" by the agent in response to the
|
|
* next send() call.
|
|
*/
|
|
pushResponse(events: MockAgentEvent[], options?: PushResponseOptions) {
|
|
this._responses.push({ events, options });
|
|
}
|
|
|
|
/**
|
|
* Appends events to an existing stream and notifies any waiting listeners.
|
|
*/
|
|
pushToStream(
|
|
streamId: string,
|
|
events: MockAgentEvent[],
|
|
options?: { close?: boolean },
|
|
) {
|
|
const now = new Date().toISOString();
|
|
for (const eventData of events) {
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
|
|
const event: AgentEvent = {
|
|
...eventData,
|
|
id: eventData.id ?? `e-${this._nextEventId++}`,
|
|
timestamp: eventData.timestamp ?? now,
|
|
streamId: eventData.streamId ?? streamId,
|
|
} as AgentEvent;
|
|
this._emit(event);
|
|
}
|
|
|
|
if (
|
|
options?.close &&
|
|
!events.some((eventData) => eventData.type === 'agent_end')
|
|
) {
|
|
this._emit({
|
|
id: `e-${this._nextEventId++}`,
|
|
timestamp: now,
|
|
streamId,
|
|
type: 'agent_end',
|
|
reason: 'completed',
|
|
} as AgentEvent);
|
|
}
|
|
}
|
|
|
|
async send(payload: AgentSend): Promise<{ streamId: string | null }> {
|
|
const responseData = this._responses.shift();
|
|
const { events: response, options } = responseData ?? {
|
|
events: [],
|
|
};
|
|
|
|
// If there were queued responses (even if empty array), we trigger a stream.
|
|
const hasResponseEvents = responseData !== undefined;
|
|
const streamId = hasResponseEvents
|
|
? (response[0]?.streamId ?? `mock-stream-${this._nextStreamId++}`)
|
|
: null;
|
|
|
|
const now = new Date().toISOString();
|
|
const eventsToEmit: AgentEvent[] = [];
|
|
|
|
// Helper to normalize and prepare for emission
|
|
const normalize = (eventData: MockAgentEvent): AgentEvent =>
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
|
|
({
|
|
...eventData,
|
|
id: eventData.id ?? `e-${this._nextEventId++}`,
|
|
timestamp: eventData.timestamp ?? now,
|
|
streamId: eventData.streamId ?? streamId,
|
|
}) as AgentEvent;
|
|
|
|
// 1. User/Update event (BEFORE agent_start)
|
|
if ('message' in payload && payload.message) {
|
|
eventsToEmit.push(
|
|
normalize({
|
|
type: 'message',
|
|
role: 'user',
|
|
content: payload.message,
|
|
_meta: payload._meta,
|
|
}),
|
|
);
|
|
} else if ('elicitations' in payload && payload.elicitations) {
|
|
payload.elicitations.forEach((elicitation) => {
|
|
eventsToEmit.push(
|
|
normalize({
|
|
type: 'elicitation_response',
|
|
...elicitation,
|
|
_meta: payload._meta,
|
|
}),
|
|
);
|
|
});
|
|
} else if (
|
|
'update' in payload &&
|
|
payload.update &&
|
|
Object.keys(payload.update).length > 0
|
|
) {
|
|
if (payload.update.title) this.title = payload.update.title;
|
|
if (payload.update.model) this.model = payload.update.model;
|
|
if (payload.update.config) {
|
|
this.config = payload.update.config;
|
|
}
|
|
eventsToEmit.push(
|
|
normalize({
|
|
type: 'session_update',
|
|
...payload.update,
|
|
_meta: payload._meta,
|
|
}),
|
|
);
|
|
} else if ('action' in payload && payload.action) {
|
|
throw new Error(
|
|
`Actions not supported in MockAgentProtocol: ${payload.action.type}`,
|
|
);
|
|
}
|
|
|
|
// 2. agent_start (if stream)
|
|
if (streamId) {
|
|
if (!response.some((eventData) => eventData.type === 'agent_start')) {
|
|
eventsToEmit.push(
|
|
normalize({
|
|
type: 'agent_start',
|
|
streamId,
|
|
}),
|
|
);
|
|
}
|
|
}
|
|
|
|
// 3. Response events
|
|
for (const eventData of response) {
|
|
eventsToEmit.push(normalize(eventData));
|
|
}
|
|
|
|
// 4. agent_end (if stream and not manual)
|
|
if (streamId && !options?.keepOpen) {
|
|
if (!eventsToEmit.some((e) => e.type === 'agent_end')) {
|
|
eventsToEmit.push(
|
|
normalize({
|
|
type: 'agent_end',
|
|
reason: 'completed',
|
|
streamId,
|
|
}),
|
|
);
|
|
}
|
|
}
|
|
|
|
if (streamId) {
|
|
this._activeStreamIds.add(streamId);
|
|
}
|
|
this._lastStreamId = streamId;
|
|
|
|
// Emit events asynchronously so the caller receives the streamId first.
|
|
if (eventsToEmit.length > 0) {
|
|
void Promise.resolve().then(() => {
|
|
for (const event of eventsToEmit) {
|
|
this._emit(event);
|
|
}
|
|
});
|
|
}
|
|
|
|
return { streamId };
|
|
}
|
|
|
|
async abort(): Promise<void> {
|
|
if (this._lastStreamId && this._activeStreamIds.has(this._lastStreamId)) {
|
|
const streamId = this._lastStreamId;
|
|
this._emit({
|
|
id: `e-${this._nextEventId++}`,
|
|
timestamp: new Date().toISOString(),
|
|
streamId,
|
|
type: 'agent_end',
|
|
reason: 'aborted',
|
|
} as AgentEvent);
|
|
}
|
|
}
|
|
}
|