-
Notifications
You must be signed in to change notification settings - Fork 364
Expand file tree
/
Copy pathagent-lifecycle.service.spec.ts
More file actions
343 lines (282 loc) · 12.3 KB
/
agent-lifecycle.service.spec.ts
File metadata and controls
343 lines (282 loc) · 12.3 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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
import { Test, TestingModule } from '@nestjs/testing';
import { getRepositoryToken } from '@nestjs/typeorm';
import { ConflictException, NotFoundException } from '@nestjs/common';
import { DataSource } from 'typeorm';
import { AgentLifecycleService } from './agent-lifecycle.service';
import { Agent } from '../../entities/agent.entity';
describe('AgentLifecycleService', () => {
let service: AgentLifecycleService;
let mockAgentGetOne: jest.Mock;
let mockAgentDelete: jest.Mock;
let mockTransaction: jest.Mock;
let mockAgentCreateQueryBuilder: jest.Mock;
beforeEach(async () => {
mockTransaction = jest
.fn()
.mockImplementation(async (cb: (...args: unknown[]) => unknown) => cb());
mockAgentGetOne = jest.fn().mockResolvedValue(null);
mockAgentDelete = jest.fn().mockResolvedValue({});
const mockAgentQb = {
select: jest.fn().mockReturnThis(),
leftJoin: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
andWhere: jest.fn().mockReturnThis(),
orderBy: jest.fn().mockReturnThis(),
getOne: mockAgentGetOne,
getMany: jest.fn().mockResolvedValue([]),
};
mockAgentCreateQueryBuilder = jest.fn().mockReturnValue(mockAgentQb);
const module: TestingModule = await Test.createTestingModule({
providers: [
AgentLifecycleService,
{
provide: getRepositoryToken(Agent),
useValue: {
createQueryBuilder: mockAgentCreateQueryBuilder,
delete: mockAgentDelete,
},
},
{
provide: DataSource,
useValue: { transaction: mockTransaction },
},
],
}).compile();
service = module.get<AgentLifecycleService>(AgentLifecycleService);
});
describe('deleteAgent', () => {
it('should delete agent when found', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'my-agent' });
await service.deleteAgent('test-user', 'my-agent');
expect(mockAgentDelete).toHaveBeenCalledWith('agent-id-1');
});
it('should throw NotFoundException when agent not found', async () => {
mockAgentGetOne.mockResolvedValueOnce(null);
await expect(service.deleteAgent('test-user', 'nonexistent')).rejects.toThrow(
NotFoundException,
);
});
});
describe('updateAgentType', () => {
it('should update agent_category and agent_platform', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'my-agent' });
const mockExecute = jest.fn().mockResolvedValue({});
const mockUpdateQb = {
update: jest.fn().mockReturnThis(),
set: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
execute: mockExecute,
};
mockAgentCreateQueryBuilder
.mockReturnValueOnce({
select: jest.fn().mockReturnThis(),
leftJoin: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
andWhere: jest.fn().mockReturnThis(),
orderBy: jest.fn().mockReturnThis(),
getOne: mockAgentGetOne,
getMany: jest.fn().mockResolvedValue([]),
})
.mockReturnValueOnce(mockUpdateQb);
await service.updateAgentType('test-user', 'my-agent', {
agent_category: 'app',
agent_platform: 'openai-sdk',
});
expect(mockUpdateQb.set).toHaveBeenCalledWith({
agent_category: 'app',
agent_platform: 'openai-sdk',
});
expect(mockUpdateQb.where).toHaveBeenCalledWith('id = :id', { id: 'agent-id-1' });
expect(mockExecute).toHaveBeenCalledTimes(1);
});
it('should throw NotFoundException when agent not found', async () => {
mockAgentGetOne.mockResolvedValueOnce(null);
await expect(
service.updateAgentType('test-user', 'nonexistent', { agent_category: 'personal' }),
).rejects.toThrow(NotFoundException);
});
it('should skip update when no fields provided', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'my-agent' });
await service.updateAgentType('test-user', 'my-agent', {});
// Only the findAgentByUser query builder should be created, not an update one
expect(mockAgentCreateQueryBuilder).toHaveBeenCalledTimes(1);
});
it('should update only agent_category when only category provided', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'my-agent' });
const mockExecute = jest.fn().mockResolvedValue({});
const mockUpdateQb = {
update: jest.fn().mockReturnThis(),
set: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
execute: mockExecute,
};
mockAgentCreateQueryBuilder
.mockReturnValueOnce({
select: jest.fn().mockReturnThis(),
leftJoin: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
andWhere: jest.fn().mockReturnThis(),
orderBy: jest.fn().mockReturnThis(),
getOne: mockAgentGetOne,
getMany: jest.fn().mockResolvedValue([]),
})
.mockReturnValueOnce(mockUpdateQb);
await service.updateAgentType('test-user', 'my-agent', {
agent_category: 'personal',
});
expect(mockUpdateQb.set).toHaveBeenCalledWith({ agent_category: 'personal' });
});
});
describe('updateContextFloorOverride', () => {
it('writes the override value on the agents row when the agent exists', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'my-agent' });
const mockExecute = jest.fn().mockResolvedValue({});
const mockUpdateQb = {
update: jest.fn().mockReturnThis(),
set: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
execute: mockExecute,
};
mockAgentCreateQueryBuilder
.mockReturnValueOnce({
select: jest.fn().mockReturnThis(),
leftJoin: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
andWhere: jest.fn().mockReturnThis(),
orderBy: jest.fn().mockReturnThis(),
getOne: mockAgentGetOne,
getMany: jest.fn().mockResolvedValue([]),
})
.mockReturnValueOnce(mockUpdateQb);
await service.updateContextFloorOverride('test-user', 'my-agent', 50_000);
expect(mockUpdateQb.update).toHaveBeenCalledWith('agents');
expect(mockUpdateQb.set).toHaveBeenCalledWith({ context_floor_override: 50_000 });
expect(mockUpdateQb.where).toHaveBeenCalledWith('id = :id', { id: 'agent-id-1' });
expect(mockExecute).toHaveBeenCalledTimes(1);
});
it('writes null when clearing the override', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'my-agent' });
const mockExecute = jest.fn().mockResolvedValue({});
const mockUpdateQb = {
update: jest.fn().mockReturnThis(),
set: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
execute: mockExecute,
};
mockAgentCreateQueryBuilder
.mockReturnValueOnce({
select: jest.fn().mockReturnThis(),
leftJoin: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
andWhere: jest.fn().mockReturnThis(),
orderBy: jest.fn().mockReturnThis(),
getOne: mockAgentGetOne,
getMany: jest.fn().mockResolvedValue([]),
})
.mockReturnValueOnce(mockUpdateQb);
await service.updateContextFloorOverride('test-user', 'my-agent', null);
expect(mockUpdateQb.set).toHaveBeenCalledWith({ context_floor_override: null });
});
it('throws NotFoundException when the agent does not belong to the user', async () => {
mockAgentGetOne.mockResolvedValueOnce(null);
await expect(
service.updateContextFloorOverride('test-user', 'nonexistent', 50_000),
).rejects.toThrow(NotFoundException);
});
});
describe('renameAgent', () => {
it('should throw NotFoundException when agent not found', async () => {
mockAgentGetOne.mockResolvedValueOnce(null);
await expect(service.renameAgent('test-user', 'nonexistent', 'new-name')).rejects.toThrow(
NotFoundException,
);
});
it('should throw ConflictException when new name already exists', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'old-agent' });
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-2', name: 'taken-name' });
await expect(service.renameAgent('test-user', 'old-agent', 'taken-name')).rejects.toThrow(
ConflictException,
);
});
it('should rename agent and update all related tables in a transaction', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'old-agent' });
mockAgentGetOne.mockResolvedValueOnce(null);
const mockExecute = jest.fn().mockResolvedValue({});
const mockManagerQb = {
update: jest.fn().mockReturnThis(),
set: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
execute: mockExecute,
};
mockTransaction.mockImplementation(async (cb: (...args: unknown[]) => unknown) => {
const manager = {
createQueryBuilder: jest.fn().mockReturnValue(mockManagerQb),
};
return cb(manager);
});
await service.renameAgent('test-user', 'old-agent', 'new-agent', 'New Agent');
expect(mockTransaction).toHaveBeenCalledTimes(1);
expect(mockExecute).toHaveBeenCalledTimes(4);
expect(mockManagerQb.update).toHaveBeenCalledWith('agents');
expect(mockManagerQb.set).toHaveBeenCalledWith({
name: 'new-agent',
display_name: 'New Agent',
});
const updateCalls = mockManagerQb.update.mock.calls.map((c: unknown[]) => c[0]);
expect(updateCalls).toContain('agents');
expect(updateCalls).toContain('agent_messages');
expect(updateCalls).toContain('notification_rules');
expect(updateCalls).toContain('notification_logs');
});
it('should short-circuit when slug is unchanged and only update display_name', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'my-agent' });
const mockExecute = jest.fn().mockResolvedValue({});
const mockAgentUpdateQb = {
update: jest.fn().mockReturnThis(),
set: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
execute: mockExecute,
};
mockAgentCreateQueryBuilder
.mockReturnValueOnce({
select: jest.fn().mockReturnThis(),
leftJoin: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
andWhere: jest.fn().mockReturnThis(),
orderBy: jest.fn().mockReturnThis(),
getOne: mockAgentGetOne,
getMany: jest.fn().mockResolvedValue([]),
})
.mockReturnValueOnce(mockAgentUpdateQb);
await service.renameAgent('test-user', 'my-agent', 'my-agent', 'My Agent');
expect(mockTransaction).not.toHaveBeenCalled();
expect(mockExecute).toHaveBeenCalledTimes(1);
expect(mockAgentUpdateQb.set).toHaveBeenCalledWith({ display_name: 'My Agent' });
});
it('should short-circuit without update when slug unchanged and displayName is undefined', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'my-agent' });
await service.renameAgent('test-user', 'my-agent', 'my-agent');
expect(mockTransaction).not.toHaveBeenCalled();
});
it('should rename without display_name when displayName is undefined', async () => {
mockAgentGetOne.mockResolvedValueOnce({ id: 'agent-id-1', name: 'old-agent' });
mockAgentGetOne.mockResolvedValueOnce(null);
const mockExecute = jest.fn().mockResolvedValue({});
const mockManagerQb = {
update: jest.fn().mockReturnThis(),
set: jest.fn().mockReturnThis(),
where: jest.fn().mockReturnThis(),
execute: mockExecute,
};
mockTransaction.mockImplementation(async (cb: (...args: unknown[]) => unknown) => {
const manager = {
createQueryBuilder: jest.fn().mockReturnValue(mockManagerQb),
};
return cb(manager);
});
await service.renameAgent('test-user', 'old-agent', 'new-agent');
expect(mockTransaction).toHaveBeenCalledTimes(1);
expect(mockManagerQb.set).toHaveBeenCalledWith({ name: 'new-agent' });
});
});
});