-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathcapabilityAggregator.test.ts
More file actions
259 lines (227 loc) · 8.37 KB
/
capabilityAggregator.test.ts
File metadata and controls
259 lines (227 loc) · 8.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
import { Prompt, Resource, Tool } from '@modelcontextprotocol/sdk/types.js';
import { ClientStatus, OutboundConnections } from '@src/core/types/index.js';
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
import { CapabilityAggregator } from './capabilityAggregator.js';
// Mock InternalCapabilitiesProvider
vi.mock('@src/core/capabilities/internalCapabilitiesProvider.js', () => ({
InternalCapabilitiesProvider: {
getInstance: vi.fn().mockReturnValue({
initialize: vi.fn().mockResolvedValue(undefined),
getAvailableTools: vi.fn().mockReturnValue([]),
getAvailableResources: vi.fn().mockReturnValue([]),
getAvailablePrompts: vi.fn().mockReturnValue([]),
}),
},
}));
describe('CapabilityAggregator', () => {
let aggregator: CapabilityAggregator;
let mockConnections: OutboundConnections;
const mockTool: Tool = {
name: 'test-tool',
description: 'A test tool',
inputSchema: {
type: 'object',
properties: {},
required: [],
},
};
const mockResource: Resource = { uri: 'test://resource', name: 'Test Resource' };
const mockPrompt: Prompt = { name: 'test-prompt', description: 'A test prompt' };
beforeEach(() => {
mockConnections = new Map();
aggregator = new CapabilityAggregator(mockConnections);
vi.resetAllMocks();
});
afterEach(() => {
vi.restoreAllMocks();
});
describe('constructor', () => {
it('should initialize with empty capabilities', () => {
const capabilities = aggregator.getCurrentCapabilities();
expect(capabilities.tools).toHaveLength(0);
expect(capabilities.resources).toHaveLength(0);
expect(capabilities.prompts).toHaveLength(0);
expect(capabilities.readyServers).toHaveLength(0);
});
});
describe('updateCapabilities', () => {
it('should return no changes when no servers are connected', async () => {
const changes = await aggregator.updateCapabilities();
expect(changes.hasChanges).toBe(false);
expect(changes.toolsChanged).toBe(false);
expect(changes.resourcesChanged).toBe(false);
expect(changes.promptsChanged).toBe(false);
});
it('should detect changes when servers become ready', async () => {
// Add a mock connected client
const mockClient = {
listTools: vi.fn().mockResolvedValue({ tools: [mockTool] }),
listResources: vi.fn().mockResolvedValue({ resources: [mockResource] }),
listPrompts: vi.fn().mockResolvedValue({ prompts: [mockPrompt] }),
getServerCapabilities: vi.fn().mockReturnValue({ resources: true, prompts: true }),
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
},
} as any;
mockConnections.set('test-server', {
name: 'test-server',
client: mockClient,
status: ClientStatus.Connected,
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
onerror: vi.fn(),
onclose: vi.fn(),
},
lastConnected: new Date(),
});
const changes = await aggregator.updateCapabilities();
expect(changes.hasChanges).toBe(true);
expect(changes.toolsChanged).toBe(true);
expect(changes.resourcesChanged).toBe(true);
expect(changes.promptsChanged).toBe(true);
expect(changes.current.tools).toHaveLength(1);
expect(changes.current.resources).toHaveLength(1);
expect(changes.current.prompts).toHaveLength(1);
expect(changes.current.readyServers).toContain('test-server');
});
it('should handle client method failures gracefully', async () => {
// Add a mock client that fails
const mockClient = {
listTools: vi.fn().mockRejectedValue(new Error('Tool listing failed')),
listResources: vi.fn().mockRejectedValue(new Error('Resource listing failed')),
listPrompts: vi.fn().mockRejectedValue(new Error('Prompt listing failed')),
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
},
} as any;
mockConnections.set('failing-server', {
name: 'failing-server',
client: mockClient,
status: ClientStatus.Connected,
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
onerror: vi.fn(),
onclose: vi.fn(),
},
lastConnected: new Date(),
});
const changes = await aggregator.updateCapabilities();
// Should still track the server even if capabilities fail
expect(changes.current.readyServers).toContain('failing-server');
expect(changes.current.tools).toHaveLength(0);
expect(changes.current.resources).toHaveLength(0);
expect(changes.current.prompts).toHaveLength(0);
});
it('should deduplicate tools with same name', async () => {
const duplicateTool: Tool = {
name: 'test-tool',
description: 'Another test tool',
inputSchema: {
type: 'object',
properties: {},
required: [],
},
};
const mockClient1 = {
listTools: vi.fn().mockResolvedValue({ tools: [mockTool] }),
listResources: vi.fn().mockResolvedValue({ resources: [] }),
listPrompts: vi.fn().mockResolvedValue({ prompts: [] }),
getServerCapabilities: vi.fn().mockReturnValue({ resources: true, prompts: true }),
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
},
} as any;
const mockClient2 = {
listTools: vi.fn().mockResolvedValue({ tools: [duplicateTool] }),
listResources: vi.fn().mockResolvedValue({ resources: [] }),
listPrompts: vi.fn().mockResolvedValue({ prompts: [] }),
getServerCapabilities: vi.fn().mockReturnValue({ resources: true, prompts: true }),
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
},
} as any;
mockConnections.set('server1', {
name: 'server1',
client: mockClient1,
status: ClientStatus.Connected,
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
onerror: vi.fn(),
onclose: vi.fn(),
},
lastConnected: new Date(),
});
mockConnections.set('server2', {
name: 'server2',
client: mockClient2,
status: ClientStatus.Connected,
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
onerror: vi.fn(),
onclose: vi.fn(),
},
lastConnected: new Date(),
});
const changes = await aggregator.updateCapabilities();
// Should only have one tool despite two servers providing tools with same name
expect(changes.current.tools).toHaveLength(1);
expect(changes.current.tools[0].name).toBe('test-tool');
});
});
describe('getCapabilitiesSummary', () => {
it('should return formatted summary string', async () => {
const mockClient = {
listTools: vi.fn().mockResolvedValue({ tools: [mockTool] }),
listResources: vi.fn().mockResolvedValue({ resources: [mockResource] }),
listPrompts: vi.fn().mockResolvedValue({ prompts: [mockPrompt] }),
getServerCapabilities: vi.fn().mockReturnValue({ resources: true, prompts: true }),
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
},
} as any;
mockConnections.set('test-server', {
name: 'test-server',
client: mockClient,
status: ClientStatus.Connected,
transport: {
start: vi.fn(),
send: vi.fn(),
close: vi.fn(),
onerror: vi.fn(),
onclose: vi.fn(),
},
lastConnected: new Date(),
});
await aggregator.updateCapabilities();
const summary = aggregator.getCapabilitiesSummary();
expect(summary).toBe('1 tools, 1 resources, 1 prompts from 1 servers');
});
});
describe('refreshCapabilities', () => {
it('should force refresh and return current capabilities', async () => {
const capabilities = await aggregator.refreshCapabilities();
expect(capabilities).toEqual(aggregator.getCurrentCapabilities());
expect(capabilities.tools).toHaveLength(0);
expect(capabilities.resources).toHaveLength(0);
expect(capabilities.prompts).toHaveLength(0);
});
});
});