-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathTask.throttle.test.ts
More file actions
622 lines (537 loc) · 16.3 KB
/
Copy pathTask.throttle.test.ts
File metadata and controls
622 lines (537 loc) · 16.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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
import { RooCodeEventName, ProviderSettings, TokenUsage, ToolUsage } from "@roo-code/types"
import { Task } from "../Task"
import { ClineProvider } from "../../webview/ClineProvider"
import { hasToolUsageChanged, hasTokenUsageChanged } from "../../../shared/getApiMetrics"
// Mock dependencies
vi.mock("../../webview/ClineProvider")
vi.mock("../../../integrations/terminal/TerminalRegistry", () => ({
TerminalRegistry: {
releaseTerminalsForTask: vi.fn(),
},
}))
vi.mock("../../ignore/RooIgnoreController")
vi.mock("../../protect/RooProtectedController")
vi.mock("../../context-tracking/FileContextTracker")
vi.mock("../../../integrations/editor/DiffViewProvider")
vi.mock("../../tools/ToolRepetitionDetector")
vi.mock("../../../api", () => ({
buildApiHandler: vi.fn(() => ({
getModel: () => ({ info: {}, id: "test-model" }),
})),
}))
// Mock TelemetryService
vi.mock("@roo-code/telemetry", () => ({
TelemetryService: {
instance: {
captureTaskCreated: vi.fn(),
captureTaskRestarted: vi.fn(),
},
},
}))
// Mock task persistence to avoid disk writes
vi.mock("../../task-persistence", async (importOriginal) => ({
...(await importOriginal<typeof import("../../task-persistence")>()),
readApiMessages: vi.fn().mockResolvedValue([]),
saveApiMessages: vi.fn().mockResolvedValue(undefined),
readTaskMessages: vi.fn().mockResolvedValue([]),
saveTaskMessages: vi.fn().mockResolvedValue(undefined),
taskMetadata: vi.fn().mockResolvedValue({
historyItem: {
id: "test-task-id",
number: 1,
task: "Test task",
ts: Date.now(),
totalCost: 0.01,
tokensIn: 100,
tokensOut: 50,
},
tokenUsage: {
totalTokensIn: 100,
totalTokensOut: 50,
totalCost: 0.01,
contextTokens: 150,
totalCacheWrites: 0,
totalCacheReads: 0,
},
}),
}))
describe("Task token usage throttling", () => {
let mockProvider: any
let mockApiConfiguration: ProviderSettings
let task: Task
let consoleLogSpy: ReturnType<typeof vi.spyOn>
beforeEach(() => {
// Reset all mocks
vi.clearAllMocks()
consoleLogSpy = vi.spyOn(console, "log").mockImplementation(() => {})
vi.useFakeTimers()
// Mock provider
mockProvider = {
context: {
globalStorageUri: { fsPath: "/test/path" },
},
getState: vi.fn().mockResolvedValue({ mode: "code" }),
log: vi.fn(),
postStateToWebview: vi.fn().mockResolvedValue(undefined),
postStateToWebviewWithoutTaskHistory: vi.fn().mockResolvedValue(undefined),
updateTaskHistory: vi.fn().mockResolvedValue(undefined),
}
// Mock API configuration
mockApiConfiguration = {
apiProvider: "anthropic",
apiKey: "test-key",
} as ProviderSettings
// Create task instance without starting it
task = new Task({
provider: mockProvider as ClineProvider,
apiConfiguration: mockApiConfiguration,
startTask: false,
})
})
afterEach(() => {
vi.useRealTimers()
if (task && !task.abort) {
task.dispose()
}
consoleLogSpy.mockRestore()
})
test("should emit TaskTokenUsageUpdated immediately on first change", async () => {
const emitSpy = vi.spyOn(task, "emit")
// Add a message to trigger saveClineMessages
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Test message",
})
// Should emit immediately on first change
expect(emitSpy).toHaveBeenCalledWith(
RooCodeEventName.TaskTokenUsageUpdated,
task.taskId,
expect.any(Object),
expect.any(Object),
)
})
test("should throttle subsequent emissions within 2 seconds", async () => {
const { taskMetadata } = await import("../../task-persistence")
let callCount = 0
// Mock to return different token usage on each call
vi.mocked(taskMetadata).mockImplementation(async () => {
callCount++
return {
historyItem: {
id: "test-task-id",
number: 1,
task: "Test task",
ts: Date.now(),
totalCost: 0.01 * callCount,
tokensIn: 100 * callCount,
tokensOut: 50 * callCount,
},
tokenUsage: {
totalTokensIn: 100 * callCount,
totalTokensOut: 50 * callCount,
totalCost: 0.01 * callCount,
contextTokens: 150 * callCount,
totalCacheWrites: 0,
totalCacheReads: 0,
},
}
})
const emitSpy = vi.spyOn(task, "emit")
// First message - should emit
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 1",
})
const firstEmitCount = emitSpy.mock.calls.filter(
(call) => call[0] === RooCodeEventName.TaskTokenUsageUpdated,
).length
// Second message immediately after - should NOT emit due to throttle
vi.advanceTimersByTime(500) // Advance only 500ms
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 2",
})
const secondEmitCount = emitSpy.mock.calls.filter(
(call) => call[0] === RooCodeEventName.TaskTokenUsageUpdated,
).length
// Should still be the same count (throttled)
expect(secondEmitCount).toBe(firstEmitCount)
// Third message after 2+ seconds - should emit
vi.advanceTimersByTime(1600) // Total time: 2100ms
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 3",
})
const thirdEmitCount = emitSpy.mock.calls.filter(
(call) => call[0] === RooCodeEventName.TaskTokenUsageUpdated,
).length
// Should have emitted again after throttle period
expect(thirdEmitCount).toBeGreaterThan(secondEmitCount)
})
test("should include toolUsage in emission payload", async () => {
const emitSpy = vi.spyOn(task, "emit")
// Set some tool usage
task.toolUsage = {
read_file: { attempts: 5, failures: 1 },
write_to_file: { attempts: 3, failures: 0 },
}
// Add a message to trigger emission
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Test message",
})
// Should emit with toolUsage as third parameter
expect(emitSpy).toHaveBeenCalledWith(
RooCodeEventName.TaskTokenUsageUpdated,
task.taskId,
expect.any(Object), // tokenUsage
task.toolUsage, // toolUsage
)
})
test("should force final emission on task abort", async () => {
const emitSpy = vi.spyOn(task, "emit")
// Set some tool usage
task.toolUsage = {
read_file: { attempts: 5, failures: 1 },
}
// Add a message first
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 1",
})
// Clear the spy to check for final emission
emitSpy.mockClear()
// Abort task immediately (within throttle window)
vi.advanceTimersByTime(500)
await task.abortTask()
// Should have emitted TaskTokenUsageUpdated before TaskAborted
const calls = emitSpy.mock.calls
const tokenUsageUpdateIndex = calls.findIndex((call) => call[0] === RooCodeEventName.TaskTokenUsageUpdated)
const taskAbortedIndex = calls.findIndex((call) => call[0] === RooCodeEventName.TaskAborted)
// Should have both events
expect(tokenUsageUpdateIndex).toBeGreaterThanOrEqual(0)
expect(taskAbortedIndex).toBeGreaterThanOrEqual(0)
// TaskTokenUsageUpdated should come before TaskAborted
expect(tokenUsageUpdateIndex).toBeLessThan(taskAbortedIndex)
})
test("should update tokenUsageSnapshot when throttled emission occurs", async () => {
const { taskMetadata } = await import("../../task-persistence")
let callCount = 0
// Mock to return different token usage on each call
vi.mocked(taskMetadata).mockImplementation(async () => {
callCount++
return {
historyItem: {
id: "test-task-id",
number: 1,
task: "Test task",
ts: Date.now(),
totalCost: 0.01 * callCount,
tokensIn: 100 * callCount,
tokensOut: 50 * callCount,
},
tokenUsage: {
totalTokensIn: 100 * callCount,
totalTokensOut: 50 * callCount,
totalCost: 0.01 * callCount,
contextTokens: 150 * callCount,
totalCacheWrites: 0,
totalCacheReads: 0,
},
}
})
// Add initial message
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 1",
})
// Get the initial snapshot
const initialSnapshot = (task as any).tokenUsageSnapshot
// Add another message within throttle window
vi.advanceTimersByTime(500)
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 2",
})
// Snapshot should still be the same (throttled)
expect((task as any).tokenUsageSnapshot).toBe(initialSnapshot)
// Add message after throttle window
vi.advanceTimersByTime(1600) // Total: 2100ms
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 3",
})
// Snapshot should be updated now (new object reference)
expect((task as any).tokenUsageSnapshot).not.toBe(initialSnapshot)
// Values should be different
expect((task as any).tokenUsageSnapshot.totalTokensIn).toBeGreaterThan(initialSnapshot.totalTokensIn)
})
test("should not emit if token usage has not changed even after throttle period", async () => {
const { taskMetadata } = await import("../../task-persistence")
// Mock taskMetadata to return same token usage
const constantTokenUsage: TokenUsage = {
totalTokensIn: 100,
totalTokensOut: 50,
totalCost: 0.01,
contextTokens: 150,
totalCacheWrites: 0,
totalCacheReads: 0,
}
vi.mocked(taskMetadata).mockResolvedValue({
historyItem: {
id: "test-task-id",
number: 1,
task: "Test task",
ts: Date.now(),
totalCost: 0.01,
tokensIn: 100,
tokensOut: 50,
},
tokenUsage: constantTokenUsage,
})
const emitSpy = vi.spyOn(task, "emit")
// Add first message
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 1",
})
const firstEmitCount = emitSpy.mock.calls.filter(
(call) => call[0] === RooCodeEventName.TaskTokenUsageUpdated,
).length
// Wait for throttle period and add another message
vi.advanceTimersByTime(2100)
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 2",
})
const secondEmitCount = emitSpy.mock.calls.filter(
(call) => call[0] === RooCodeEventName.TaskTokenUsageUpdated,
).length
// Should not have emitted again since token usage didn't change
expect(secondEmitCount).toBe(firstEmitCount)
})
test("should emit when tool usage changes even if token usage is the same", async () => {
const { taskMetadata } = await import("../../task-persistence")
// Mock taskMetadata to return same token usage
const constantTokenUsage: TokenUsage = {
totalTokensIn: 100,
totalTokensOut: 50,
totalCost: 0.01,
contextTokens: 150,
totalCacheWrites: 0,
totalCacheReads: 0,
}
vi.mocked(taskMetadata).mockResolvedValue({
historyItem: {
id: "test-task-id",
number: 1,
task: "Test task",
ts: Date.now(),
totalCost: 0.01,
tokensIn: 100,
tokensOut: 50,
},
tokenUsage: constantTokenUsage,
})
const emitSpy = vi.spyOn(task, "emit")
// Add first message - should emit
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 1",
})
const firstEmitCount = emitSpy.mock.calls.filter(
(call) => call[0] === RooCodeEventName.TaskTokenUsageUpdated,
).length
// Wait for throttle period
vi.advanceTimersByTime(2100)
// Change tool usage (token usage stays the same)
task.toolUsage = {
read_file: { attempts: 5, failures: 1 },
}
// Add another message
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 2",
})
const secondEmitCount = emitSpy.mock.calls.filter(
(call) => call[0] === RooCodeEventName.TaskTokenUsageUpdated,
).length
// Should have emitted because tool usage changed even though token usage didn't
expect(secondEmitCount).toBeGreaterThan(firstEmitCount)
})
test("should update toolUsageSnapshot when emission occurs", async () => {
// Add initial message
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 1",
})
// Initially toolUsageSnapshot should be set to current toolUsage (empty object)
const initialSnapshot = (task as any).toolUsageSnapshot
expect(initialSnapshot).toBeDefined()
expect(Object.keys(initialSnapshot)).toHaveLength(0)
// Wait for throttle period
vi.advanceTimersByTime(2100)
// Update tool usage
task.toolUsage = {
read_file: { attempts: 3, failures: 0 },
write_to_file: { attempts: 2, failures: 1 },
}
// Add another message
await (task as any).addToClineMessages({
ts: Date.now(),
type: "say",
say: "text",
text: "Message 2",
})
// Snapshot should be updated to match the new toolUsage
const newSnapshot = (task as any).toolUsageSnapshot
expect(newSnapshot).not.toBe(initialSnapshot)
expect(newSnapshot.read_file).toEqual({ attempts: 3, failures: 0 })
expect(newSnapshot.write_to_file).toEqual({ attempts: 2, failures: 1 })
})
test("emitFinalTokenUsageUpdate should emit on tool usage change alone", async () => {
const emitSpy = vi.spyOn(task, "emit")
// Set initial tool usage and simulate previous emission
;(task as any).tokenUsageSnapshot = task.getTokenUsage()
;(task as any).toolUsageSnapshot = {}
// Change tool usage
task.toolUsage = {
execute_command: { attempts: 1, failures: 0 },
}
// Call emitFinalTokenUsageUpdate
task.emitFinalTokenUsageUpdate()
// Should emit due to tool usage change
expect(emitSpy).toHaveBeenCalledWith(
RooCodeEventName.TaskTokenUsageUpdated,
task.taskId,
expect.any(Object),
task.toolUsage,
)
})
})
describe("hasToolUsageChanged", () => {
test("should return true when snapshot is undefined and current has data", () => {
const current: ToolUsage = {
read_file: { attempts: 1, failures: 0 },
}
expect(hasToolUsageChanged(current, undefined)).toBe(true)
})
test("should return false when both are empty", () => {
expect(hasToolUsageChanged({}, {})).toBe(false)
})
test("should return false when snapshot is undefined and current is empty", () => {
expect(hasToolUsageChanged({}, undefined)).toBe(false)
})
test("should return true when a new tool is added", () => {
const current: ToolUsage = {
read_file: { attempts: 1, failures: 0 },
write_to_file: { attempts: 1, failures: 0 },
}
const snapshot: ToolUsage = {
read_file: { attempts: 1, failures: 0 },
}
expect(hasToolUsageChanged(current, snapshot)).toBe(true)
})
test("should return true when attempts change", () => {
const current: ToolUsage = {
read_file: { attempts: 2, failures: 0 },
}
const snapshot: ToolUsage = {
read_file: { attempts: 1, failures: 0 },
}
expect(hasToolUsageChanged(current, snapshot)).toBe(true)
})
test("should return true when failures change", () => {
const current: ToolUsage = {
read_file: { attempts: 1, failures: 1 },
}
const snapshot: ToolUsage = {
read_file: { attempts: 1, failures: 0 },
}
expect(hasToolUsageChanged(current, snapshot)).toBe(true)
})
test("should return false when nothing changed", () => {
const current: ToolUsage = {
read_file: { attempts: 3, failures: 1 },
write_to_file: { attempts: 2, failures: 0 },
}
const snapshot: ToolUsage = {
read_file: { attempts: 3, failures: 1 },
write_to_file: { attempts: 2, failures: 0 },
}
expect(hasToolUsageChanged(current, snapshot)).toBe(false)
})
})
describe("hasTokenUsageChanged", () => {
test("should return true when snapshot is undefined", () => {
const current: TokenUsage = {
totalTokensIn: 100,
totalTokensOut: 50,
totalCost: 0.01,
contextTokens: 150,
}
expect(hasTokenUsageChanged(current, undefined)).toBe(true)
})
test("should return true when totalTokensIn changes", () => {
const current: TokenUsage = {
totalTokensIn: 200,
totalTokensOut: 50,
totalCost: 0.01,
contextTokens: 150,
}
const snapshot: TokenUsage = {
totalTokensIn: 100,
totalTokensOut: 50,
totalCost: 0.01,
contextTokens: 150,
}
expect(hasTokenUsageChanged(current, snapshot)).toBe(true)
})
test("should return false when nothing changed", () => {
const current: TokenUsage = {
totalTokensIn: 100,
totalTokensOut: 50,
totalCost: 0.01,
contextTokens: 150,
totalCacheWrites: 10,
totalCacheReads: 5,
}
const snapshot: TokenUsage = {
totalTokensIn: 100,
totalTokensOut: 50,
totalCost: 0.01,
contextTokens: 150,
totalCacheWrites: 10,
totalCacheReads: 5,
}
expect(hasTokenUsageChanged(current, snapshot)).toBe(false)
})
})