|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import { describe, it, expect, beforeAll, afterAll, vi } from 'vitest'; |
|
|
import request from 'supertest'; |
|
|
import type express from 'express'; |
|
|
import { createApp, updateCoderAgentCardUrl } from './agent.js'; |
|
|
import * as fs from 'node:fs'; |
|
|
import * as path from 'node:path'; |
|
|
import * as os from 'node:os'; |
|
|
import type { Server } from 'node:http'; |
|
|
import type { TaskMetadata } from './types.js'; |
|
|
import type { AddressInfo } from 'node:net'; |
|
|
|
|
|
|
|
|
|
|
|
vi.mock('./logger.js', () => ({ |
|
|
logger: { info: vi.fn(), warn: vi.fn(), error: vi.fn() }, |
|
|
})); |
|
|
|
|
|
|
|
|
vi.mock('./task.js', () => { |
|
|
class MockTask { |
|
|
id: string; |
|
|
contextId: string; |
|
|
taskState = 'submitted'; |
|
|
config = { |
|
|
getContentGeneratorConfig: vi |
|
|
.fn() |
|
|
.mockReturnValue({ model: 'gemini-pro' }), |
|
|
}; |
|
|
geminiClient = { |
|
|
initialize: vi.fn().mockResolvedValue(undefined), |
|
|
}; |
|
|
constructor(id: string, contextId: string) { |
|
|
this.id = id; |
|
|
this.contextId = contextId; |
|
|
} |
|
|
static create = vi |
|
|
.fn() |
|
|
.mockImplementation((id, contextId) => |
|
|
Promise.resolve(new MockTask(id, contextId)), |
|
|
); |
|
|
getMetadata = vi.fn().mockImplementation(async () => ({ |
|
|
id: this.id, |
|
|
contextId: this.contextId, |
|
|
taskState: this.taskState, |
|
|
model: 'gemini-pro', |
|
|
mcpServers: [], |
|
|
availableTools: [], |
|
|
})); |
|
|
} |
|
|
return { Task: MockTask }; |
|
|
}); |
|
|
|
|
|
describe('Agent Server Endpoints', () => { |
|
|
let app: express.Express; |
|
|
let server: Server; |
|
|
let testWorkspace: string; |
|
|
|
|
|
const createTask = (contextId: string) => |
|
|
request(app) |
|
|
.post('/tasks') |
|
|
.send({ |
|
|
contextId, |
|
|
agentSettings: { |
|
|
kind: 'agent-settings', |
|
|
workspacePath: testWorkspace, |
|
|
}, |
|
|
}) |
|
|
.set('Content-Type', 'application/json'); |
|
|
|
|
|
beforeAll(async () => { |
|
|
|
|
|
testWorkspace = fs.mkdtempSync( |
|
|
path.join(os.tmpdir(), 'gemini-agent-test-'), |
|
|
); |
|
|
app = await createApp(); |
|
|
await new Promise<void>((resolve) => { |
|
|
server = app.listen(0, () => { |
|
|
const port = (server.address() as AddressInfo).port; |
|
|
updateCoderAgentCardUrl(port); |
|
|
resolve(); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
|
|
|
afterAll( |
|
|
() => |
|
|
new Promise<void>((resolve, reject) => { |
|
|
server.close((err) => { |
|
|
if (err) return reject(err); |
|
|
|
|
|
try { |
|
|
fs.rmSync(testWorkspace, { recursive: true, force: true }); |
|
|
} catch (e) { |
|
|
console.warn(`Could not remove temp dir '${testWorkspace}':`, e); |
|
|
} |
|
|
resolve(); |
|
|
}); |
|
|
}), |
|
|
); |
|
|
|
|
|
it('should create a new task via POST /tasks', async () => { |
|
|
const response = await createTask('test-context'); |
|
|
expect(response.status).toBe(201); |
|
|
expect(response.body).toBeTypeOf('string'); |
|
|
}, 7000); |
|
|
|
|
|
it('should get metadata for a specific task via GET /tasks/:taskId/metadata', async () => { |
|
|
const createResponse = await createTask('test-context-2'); |
|
|
const taskId = createResponse.body; |
|
|
const response = await request(app).get(`/tasks/${taskId}/metadata`); |
|
|
expect(response.status).toBe(200); |
|
|
expect(response.body.metadata.id).toBe(taskId); |
|
|
}, 6000); |
|
|
|
|
|
it('should get metadata for all tasks via GET /tasks/metadata', async () => { |
|
|
const createResponse = await createTask('test-context-3'); |
|
|
const taskId = createResponse.body; |
|
|
const response = await request(app).get('/tasks/metadata'); |
|
|
expect(response.status).toBe(200); |
|
|
expect(Array.isArray(response.body)).toBe(true); |
|
|
expect(response.body.length).toBeGreaterThan(0); |
|
|
const taskMetadata = response.body.find( |
|
|
(m: TaskMetadata) => m.id === taskId, |
|
|
); |
|
|
expect(taskMetadata).toBeDefined(); |
|
|
}); |
|
|
|
|
|
it('should return 404 for a non-existent task', async () => { |
|
|
const response = await request(app).get('/tasks/fake-task/metadata'); |
|
|
expect(response.status).toBe(404); |
|
|
}); |
|
|
|
|
|
it('should return agent metadata via GET /.well-known/agent-card.json', async () => { |
|
|
const response = await request(app).get('/.well-known/agent-card.json'); |
|
|
const port = (server.address() as AddressInfo).port; |
|
|
expect(response.status).toBe(200); |
|
|
expect(response.body.name).toBe('Gemini SDLC Agent'); |
|
|
expect(response.body.url).toBe(`http://localhost:${port}/`); |
|
|
}); |
|
|
}); |
|
|
|