-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathturn_test.go
More file actions
469 lines (384 loc) · 11.9 KB
/
Copy pathturn_test.go
File metadata and controls
469 lines (384 loc) · 11.9 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
package kimi
import (
"context"
"sync"
"sync/atomic"
"testing"
"time"
"go.uber.org/mock/gomock"
"github.com/MoonshotAI/kimi-agent-sdk/go/wire"
"github.com/MoonshotAI/kimi-agent-sdk/go/wire/transport"
)
// setupTurn creates a Turn for testing with proper cleanup (uses default version "1.1")
// Returns 5 values to maintain backward compatibility with existing tests
func setupTurn(t *testing.T) (
*Turn,
*transport.MockTransport,
chan wire.Message,
context.CancelFunc,
func(),
) {
turn, mockTP, msgs, cancel, _, cleanup := setupTurnWithVersion(t, "1.1")
return turn, mockTP, msgs, cancel, cleanup
}
// setupTurnWithVersion creates a Turn with specified wire protocol version
// Returns: turn, mockTransport, msgs channel, cancel func, closeMsgs func, cleanup func
func setupTurnWithVersion(t *testing.T, wireProtocolVersion string) (
*Turn,
*transport.MockTransport,
chan wire.Message,
context.CancelFunc,
func(), // closeMsgs - call this to close msgs channel
func(), // cleanup - call this at the end (will call closeMsgs internally if not already called)
) {
t.Helper()
ctrl := gomock.NewController(t)
mockTP := transport.NewMockTransport(ctrl)
mockTP.EXPECT().Cancel(gomock.Any()).Return(&wire.CancelResult{}, nil).AnyTimes()
result := new(atomic.Pointer[wire.PromptResult])
result.Store(&wire.PromptResult{Status: wire.PromptResultStatusPending})
msgs := make(chan wire.Message, 10)
usrc := make(chan wire.RequestResponse, 1)
exit := func(err error) error { return err }
ctx, cancel := context.WithCancel(context.Background())
turn := turnBegin(ctx, 0, mockTP, new(atomic.Pointer[error]), result, wireProtocolVersion, msgs, usrc, exit)
var closeOnce sync.Once
closeMsgs := func() {
closeOnce.Do(func() { close(msgs) })
}
cleanup := func() {
closeMsgs() // safe to call multiple times
cancel()
time.Sleep(50 * time.Millisecond)
ctrl.Finish()
}
return turn, mockTP, msgs, cancel, closeMsgs, cleanup
}
func TestTurn_Result_Pending(t *testing.T) {
turn, _, _, _, cleanup := setupTurn(t)
defer cleanup()
got := turn.Result()
if got.Status != wire.PromptResultStatusPending {
t.Errorf("expected status pending, got %s", got.Status)
}
}
func TestTurn_Result_Finished(t *testing.T) {
ctrl := gomock.NewController(t)
mockTP := transport.NewMockTransport(ctrl)
mockTP.EXPECT().Cancel(gomock.Any()).Return(&wire.CancelResult{}, nil).AnyTimes()
result := new(atomic.Pointer[wire.PromptResult])
result.Store(&wire.PromptResult{Status: wire.PromptResultStatusPending})
msgs := make(chan wire.Message, 10)
usrc := make(chan wire.RequestResponse, 1)
exit := func(err error) error { return err }
ctx, cancel := context.WithCancel(context.Background())
turn := turnBegin(ctx, 0, mockTP, new(atomic.Pointer[error]), result, "1.1", msgs, usrc, exit)
// Update result to finished
result.Store(&wire.PromptResult{
Status: wire.PromptResultStatusFinished,
Steps: wire.Optional[int]{Valid: true, Value: 3},
})
got := turn.Result()
if got.Status != wire.PromptResultStatusFinished {
t.Errorf("expected status finished, got %s", got.Status)
}
if !got.Steps.Valid || got.Steps.Value != 3 {
t.Errorf("expected steps=3, got %v", got.Steps)
}
close(msgs)
cancel()
time.Sleep(50 * time.Millisecond)
ctrl.Finish()
}
func TestTurn_Usage_Initial(t *testing.T) {
turn, _, _, _, cleanup := setupTurn(t)
defer cleanup()
usage := turn.Usage()
if usage.Context != 0 {
t.Errorf("expected Context=0, got %f", usage.Context)
}
if usage.Tokens.InputOther != 0 {
t.Errorf("expected InputOther=0, got %d", usage.Tokens.InputOther)
}
if usage.Tokens.Output != 0 {
t.Errorf("expected Output=0, got %d", usage.Tokens.Output)
}
}
func TestTurn_Cancel(t *testing.T) {
ctrl := gomock.NewController(t)
mockTP := transport.NewMockTransport(ctrl)
mockTP.EXPECT().Cancel(gomock.Any()).Return(&wire.CancelResult{}, nil).AnyTimes()
result := new(atomic.Pointer[wire.PromptResult])
result.Store(&wire.PromptResult{Status: wire.PromptResultStatusPending})
msgs := make(chan wire.Message, 10)
usrc := make(chan wire.RequestResponse, 1)
var exitCalled atomic.Bool
exit := func(err error) error {
exitCalled.Store(true)
return err
}
ctx, cancel := context.WithCancel(context.Background())
turn := turnBegin(ctx, 0, mockTP, new(atomic.Pointer[error]), result, "1.1", msgs, usrc, exit)
err := turn.Cancel()
if err != nil {
t.Errorf("Cancel() returned error: %v", err)
}
if !exitCalled.Load() {
t.Errorf("exit function should have been called")
}
close(msgs)
cancel()
time.Sleep(50 * time.Millisecond)
ctrl.Finish()
}
func TestTurn_traverse_StepBegin(t *testing.T) {
turn, _, msgs, cancel, cleanup := setupTurn(t)
defer cleanup()
// Send TurnBegin first (required by traverse)
msgs <- wire.TurnBegin{}
// Send StepBegin event
msgs <- wire.StepBegin{N: 1}
// Verify step is created
select {
case step := <-turn.Steps:
if step == nil {
t.Fatal("expected step, got nil")
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for step")
}
}
func TestTurn_traverse_ContentPart(t *testing.T) {
turn, _, msgs, cancel, cleanup := setupTurn(t)
defer cleanup()
// Send TurnBegin first (required by traverse)
msgs <- wire.TurnBegin{}
// Send StepBegin first to create a step
msgs <- wire.StepBegin{N: 1}
// Send ContentPart event
contentPart := wire.NewTextContentPart("Hello, world!")
msgs <- contentPart
// Verify step receives the content part
select {
case step := <-turn.Steps:
if step == nil {
t.Fatal("expected step, got nil")
}
select {
case msg := <-step.Messages:
cp, ok := msg.(wire.ContentPart)
if !ok {
t.Fatalf("expected ContentPart, got %T", msg)
}
if cp.Text.Value != "Hello, world!" {
t.Errorf("expected text 'Hello, world!', got %s", cp.Text.Value)
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for message")
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for step")
}
}
func TestTurn_traverse_StatusUpdate_ContextUsage(t *testing.T) {
turn, _, msgs, _, cleanup := setupTurn(t)
defer cleanup()
// Send TurnBegin first (required by traverse)
msgs <- wire.TurnBegin{}
// Send StatusUpdate with ContextUsage
msgs <- wire.StatusUpdate{
ContextUsage: wire.Optional[float64]{Valid: true, Value: 0.75},
}
// Wait for traverse to process
time.Sleep(100 * time.Millisecond)
usage := turn.Usage()
if usage.Context != 0.75 {
t.Errorf("expected Context=0.75, got %f", usage.Context)
}
}
func TestTurn_traverse_StatusUpdate_TokenUsage(t *testing.T) {
turn, _, msgs, _, cleanup := setupTurn(t)
defer cleanup()
// Send TurnBegin first (required by traverse)
msgs <- wire.TurnBegin{}
// Send first StatusUpdate with TokenUsage
msgs <- wire.StatusUpdate{
TokenUsage: wire.Optional[wire.TokenUsage]{
Valid: true,
Value: wire.TokenUsage{
InputOther: 100,
Output: 50,
InputCacheRead: 10,
InputCacheCreation: 5,
},
},
}
// Send second StatusUpdate to test accumulation
msgs <- wire.StatusUpdate{
TokenUsage: wire.Optional[wire.TokenUsage]{
Valid: true,
Value: wire.TokenUsage{
InputOther: 200,
Output: 100,
InputCacheRead: 20,
InputCacheCreation: 10,
},
},
}
// Wait for traverse to process
time.Sleep(100 * time.Millisecond)
usage := turn.Usage()
if usage.Tokens.InputOther != 300 {
t.Errorf("expected InputOther=300, got %d", usage.Tokens.InputOther)
}
if usage.Tokens.Output != 150 {
t.Errorf("expected Output=150, got %d", usage.Tokens.Output)
}
if usage.Tokens.InputCacheRead != 30 {
t.Errorf("expected InputCacheRead=30, got %d", usage.Tokens.InputCacheRead)
}
if usage.Tokens.InputCacheCreation != 15 {
t.Errorf("expected InputCacheCreation=15, got %d", usage.Tokens.InputCacheCreation)
}
}
func TestTurn_watch_ContextCancel(t *testing.T) {
ctrl := gomock.NewController(t)
mockTP := transport.NewMockTransport(ctrl)
// Expect Cancel to be called when context is cancelled
cancelCalled := make(chan struct{})
mockTP.EXPECT().Cancel(gomock.Any()).DoAndReturn(func(params *wire.CancelParams) (*wire.CancelResult, error) {
close(cancelCalled)
return &wire.CancelResult{}, nil
})
result := new(atomic.Pointer[wire.PromptResult])
result.Store(&wire.PromptResult{Status: wire.PromptResultStatusPending})
msgs := make(chan wire.Message, 10)
usrc := make(chan wire.RequestResponse, 1)
exit := func(err error) error { return err }
ctx, cancel := context.WithCancel(context.Background())
_ = turnBegin(ctx, 0, mockTP, new(atomic.Pointer[error]), result, "1.1", msgs, usrc, exit)
// Cancel the context
cancel()
// Verify Cancel was called
select {
case <-cancelCalled:
// success
case <-time.After(time.Second):
t.Fatal("timeout waiting for Cancel to be called")
}
close(msgs)
time.Sleep(50 * time.Millisecond)
ctrl.Finish()
}
func TestTurn_traverse_TurnEnd(t *testing.T) {
turn, _, msgs, cancel, _, cleanup := setupTurnWithVersion(t, "1.2")
defer cleanup()
msgs <- wire.TurnBegin{}
msgs <- wire.StepBegin{N: 1}
select {
case step := <-turn.Steps:
if step == nil {
t.Fatal("expected step, got nil")
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for step")
}
msgs <- wire.TurnEnd{}
select {
case _, ok := <-turn.Steps:
if ok {
t.Fatal("expected Steps channel to be closed after TurnEnd")
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for Steps channel to close")
}
// Verify result is NOT UnexpectedEOF (TurnEnd was received)
result := turn.Result()
if result.Status == wire.PromptResultStatusUnexpectedEOF {
t.Error("expected result status to NOT be UnexpectedEOF when TurnEnd was received")
}
}
func TestTurn_traverse_TurnEnd_BeforeStepBegin(t *testing.T) {
turn, _, msgs, cancel, _, cleanup := setupTurnWithVersion(t, "1.2")
defer cleanup()
msgs <- wire.TurnBegin{}
msgs <- wire.TurnEnd{}
select {
case _, ok := <-turn.Steps:
if ok {
t.Fatal("expected Steps channel to be closed after TurnEnd")
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for Steps channel to close")
}
}
func TestTurn_traverse_UnexpectedEOF_WireVersion12(t *testing.T) {
turn, _, msgs, cancel, closeMsgs, cleanup := setupTurnWithVersion(t, "1.2")
defer cleanup()
msgs <- wire.TurnBegin{}
msgs <- wire.StepBegin{N: 1}
select {
case step := <-turn.Steps:
if step == nil {
t.Fatal("expected step, got nil")
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for step")
}
// Close msgs WITHOUT sending TurnEnd (use closeMsgs to avoid double-close panic)
closeMsgs()
// Wait for Steps channel to close
select {
case _, ok := <-turn.Steps:
if ok {
t.Fatal("expected Steps channel to be closed")
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for Steps channel to close")
}
// Verify result is UnexpectedEOF
result := turn.Result()
if result.Status != wire.PromptResultStatusUnexpectedEOF {
t.Errorf("expected status UnexpectedEOF, got %s", result.Status)
}
}
func TestTurn_traverse_NoUnexpectedEOF_WireVersion11(t *testing.T) {
turn, _, msgs, cancel, closeMsgs, cleanup := setupTurnWithVersion(t, "1.1")
defer cleanup()
msgs <- wire.TurnBegin{}
msgs <- wire.StepBegin{N: 1}
select {
case step := <-turn.Steps:
if step == nil {
t.Fatal("expected step, got nil")
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for step")
}
// Close msgs WITHOUT sending TurnEnd (use closeMsgs to avoid double-close panic)
closeMsgs()
// Wait for Steps channel to close
select {
case _, ok := <-turn.Steps:
if ok {
t.Fatal("expected Steps channel to be closed")
}
case <-time.After(time.Second):
cancel()
t.Fatal("timeout waiting for Steps channel to close")
}
// Verify result is NOT UnexpectedEOF (version < 1.2)
result := turn.Result()
if result.Status == wire.PromptResultStatusUnexpectedEOF {
t.Error("expected status to NOT be UnexpectedEOF for wire version < 1.2")
}
}