-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconversation_test.go
More file actions
448 lines (417 loc) · 12.3 KB
/
conversation_test.go
File metadata and controls
448 lines (417 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
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
package main
import (
"sync"
"testing"
"time"
)
// TestAddMessage tests the AddMessage function
func TestAddMessage(t *testing.T) {
tests := []struct {
name string
maxBytes int
messages []*ConversationNode
expectedCount int
}{
{
name: "add single message",
maxBytes: 1000,
messages: []*ConversationNode{
{MessageID: 1, Text: "Hello", SystemPrompt: "", ParentID: 0},
},
expectedCount: 1,
},
{
name: "add multiple messages",
maxBytes: 1000,
messages: []*ConversationNode{
{MessageID: 1, Text: "Hello", SystemPrompt: "", ParentID: 0},
{MessageID: 2, Text: "World", SystemPrompt: "", ParentID: 1},
{MessageID: 3, Text: "Test", SystemPrompt: "", ParentID: 2},
},
expectedCount: 3,
},
{
name: "message with system prompt",
maxBytes: 1000,
messages: []*ConversationNode{
{MessageID: 1, Text: "Hello", SystemPrompt: "You are a helpful bot", ParentID: 0},
},
expectedCount: 1,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: tt.maxBytes,
currentBytes: 0,
}
for _, msg := range tt.messages {
cache.AddMessage(msg)
}
if len(cache.nodes) != tt.expectedCount {
t.Errorf("expected %d messages in cache, got %d", tt.expectedCount, len(cache.nodes))
}
})
}
}
// TestGetMessage tests the GetMessage function
func TestGetMessage(t *testing.T) {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 1000,
currentBytes: 0,
}
// Add a message
msg := &ConversationNode{
MessageID: 1,
Text: "Test message",
ParentID: 0,
ChatID: 12345,
UserID: 67890,
Role: "user",
SystemPrompt: "",
Timestamp: time.Now(),
}
cache.AddMessage(msg)
// Test getting existing message
node, exists := cache.GetMessage(1)
if !exists {
t.Error("expected message to exist")
}
if node.Text != "Test message" {
t.Errorf("expected message text 'Test message', got '%s'", node.Text)
}
// Test getting non-existing message
_, exists = cache.GetMessage(999)
if exists {
t.Error("expected message 999 to not exist")
}
}
// TestBuildConversationHistory tests the BuildConversationHistory function
func TestBuildConversationHistory(t *testing.T) {
tests := []struct {
name string
setupMessages func() *ConversationCache
startID int
maxExchanges int
expectedCount int
}{
{
name: "build history with multiple messages",
setupMessages: func() *ConversationCache {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 10000,
currentBytes: 0,
}
now := time.Now()
cache.AddMessage(&ConversationNode{MessageID: 1, Text: "First", ParentID: 0, Timestamp: now})
cache.AddMessage(&ConversationNode{MessageID: 2, Text: "Second", ParentID: 1, Timestamp: now.Add(time.Minute)})
cache.AddMessage(&ConversationNode{MessageID: 3, Text: "Third", ParentID: 2, Timestamp: now.Add(2 * time.Minute)})
cache.AddMessage(&ConversationNode{MessageID: 4, Text: "Fourth", ParentID: 3, Timestamp: now.Add(3 * time.Minute)})
return cache
},
startID: 4,
maxExchanges: 2,
expectedCount: 4,
},
{
name: "build history with limit",
setupMessages: func() *ConversationCache {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 10000,
currentBytes: 0,
}
now := time.Now()
cache.AddMessage(&ConversationNode{MessageID: 1, Text: "First", ParentID: 0, Timestamp: now})
cache.AddMessage(&ConversationNode{MessageID: 2, Text: "Second", ParentID: 1, Timestamp: now.Add(time.Minute)})
cache.AddMessage(&ConversationNode{MessageID: 3, Text: "Third", ParentID: 2, Timestamp: now.Add(2 * time.Minute)})
cache.AddMessage(&ConversationNode{MessageID: 4, Text: "Fourth", ParentID: 3, Timestamp: now.Add(3 * time.Minute)})
cache.AddMessage(&ConversationNode{MessageID: 5, Text: "Fifth", ParentID: 4, Timestamp: now.Add(4 * time.Minute)})
return cache
},
startID: 5,
maxExchanges: 2, // Should return max 4 messages (2 exchanges = 4 messages)
expectedCount: 4,
},
{
name: "build history with non-existing message",
setupMessages: func() *ConversationCache {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 1000,
currentBytes: 0,
}
now := time.Now()
cache.AddMessage(&ConversationNode{MessageID: 1, Text: "First", ParentID: 0, Timestamp: now})
return cache
},
startID: 999,
maxExchanges: 2,
expectedCount: 0,
},
{
name: "build history for orphan message",
setupMessages: func() *ConversationCache {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 1000,
currentBytes: 0,
}
now := time.Now()
cache.AddMessage(&ConversationNode{MessageID: 1, Text: "First", ParentID: 0, Timestamp: now})
cache.AddMessage(&ConversationNode{MessageID: 2, Text: "Orphan", ParentID: 999, Timestamp: now.Add(time.Minute)})
return cache
},
startID: 2,
maxExchanges: 2,
expectedCount: 1,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cache := tt.setupMessages()
history := cache.BuildConversationHistory(tt.startID, tt.maxExchanges)
if len(history) != tt.expectedCount {
t.Errorf("expected %d messages in history, got %d", tt.expectedCount, len(history))
}
// Verify chronological order (oldest first)
for i := 1; i < len(history); i++ {
if history[i].Timestamp.Before(history[i-1].Timestamp) {
t.Error("history is not in chronological order")
}
}
})
}
}
// TestEvictIfNeeded tests the evictIfNeeded function
func TestEvictIfNeeded(t *testing.T) {
tests := []struct {
name string
maxBytes int
addMessages []*ConversationNode
expectedRemaining int
}{
{
name: "no eviction when under limit",
maxBytes: 1000,
addMessages: []*ConversationNode{
{MessageID: 1, Text: "Short", ParentID: 0},
},
expectedRemaining: 1,
},
{
name: "eviction when over limit",
maxBytes: 250,
addMessages: []*ConversationNode{
{MessageID: 1, Text: "Message one is longer", ParentID: 0},
{MessageID: 2, Text: "Message two is also longer", ParentID: 1},
{MessageID: 3, Text: "Message three is the longest one", ParentID: 2},
},
expectedRemaining: 1,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: tt.maxBytes,
currentBytes: 0,
}
for _, msg := range tt.addMessages {
cache.AddMessage(msg)
}
remaining := len(cache.nodes)
if remaining != tt.expectedRemaining {
t.Errorf("expected %d messages remaining, got %d", tt.expectedRemaining, remaining)
}
})
}
}
// TestConversationCacheThreadSafety tests that the cache is thread-safe
func TestConversationCacheThreadSafety(t *testing.T) {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 100000,
currentBytes: 0,
}
var wg sync.WaitGroup
// Concurrently add messages
for i := 0; i < 100; i++ {
wg.Add(1)
go func(id int) {
defer wg.Done()
cache.AddMessage(&ConversationNode{
MessageID: id,
Text: "Test message",
ParentID: 0,
})
}(i)
}
// Concurrently read messages
for i := 0; i < 100; i++ {
wg.Add(1)
go func(id int) {
defer wg.Done()
cache.GetMessage(id)
}(i)
}
wg.Wait()
// Verify all messages were added
if len(cache.nodes) != 100 {
t.Errorf("expected 100 messages in cache, got %d", len(cache.nodes))
}
}
// TestGetSystemPrompt tests the GetSystemPrompt function
func TestGetSystemPrompt(t *testing.T) {
tests := []struct {
name string
setupMessages func() *ConversationCache
startID int
expectedPrompt string
}{
{
name: "find system prompt in root",
setupMessages: func() *ConversationCache {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 1000,
currentBytes: 0,
}
now := time.Now()
cache.AddMessage(&ConversationNode{MessageID: 1, Text: "Root", SystemPrompt: "You are a bot", ParentID: 0, Timestamp: now})
cache.AddMessage(&ConversationNode{MessageID: 2, Text: "Reply", ParentID: 1, Timestamp: now.Add(time.Minute)})
return cache
},
startID: 2,
expectedPrompt: "You are a bot",
},
{
name: "no system prompt found",
setupMessages: func() *ConversationCache {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 1000,
currentBytes: 0,
}
now := time.Now()
cache.AddMessage(&ConversationNode{MessageID: 1, Text: "Root", SystemPrompt: "", ParentID: 0, Timestamp: now})
cache.AddMessage(&ConversationNode{MessageID: 2, Text: "Reply", ParentID: 1, Timestamp: now.Add(time.Minute)})
return cache
},
startID: 2,
expectedPrompt: "",
},
{
name: "find system prompt in middle node",
setupMessages: func() *ConversationCache {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 1000,
currentBytes: 0,
}
now := time.Now()
cache.AddMessage(&ConversationNode{MessageID: 1, Text: "Root", SystemPrompt: "", ParentID: 0, Timestamp: now})
cache.AddMessage(&ConversationNode{MessageID: 2, Text: "Middle", SystemPrompt: "You are helpful", ParentID: 1, Timestamp: now.Add(time.Minute)})
cache.AddMessage(&ConversationNode{MessageID: 3, Text: "Reply", ParentID: 2, Timestamp: now.Add(2 * time.Minute)})
return cache
},
startID: 3,
expectedPrompt: "You are helpful",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cache := tt.setupMessages()
prompt := cache.GetSystemPrompt(tt.startID)
if prompt != tt.expectedPrompt {
t.Errorf("expected system prompt '%s', got '%s'", tt.expectedPrompt, prompt)
}
})
}
}
// TestConversationNodeSizeCalculation tests the approximate size calculation
func TestConversationNodeSizeCalculation(t *testing.T) {
tests := []struct {
name string
text string
systemPrompt string
expectedSize int
}{
{
name: "empty text and prompt",
text: "",
systemPrompt: "",
expectedSize: 100,
},
{
name: "short text",
text: "Hi",
systemPrompt: "",
expectedSize: 102, // len("Hi") + 0 + 100 = 2 + 100 = 102
},
{
name: "with system prompt",
text: "Hello",
systemPrompt: "You are a bot",
expectedSize: 117, // len("Hello") + len("You are a bot") + 100 = 5 + 12 + 100 = 117
},
{
name: "long text and prompt",
text: "This is a very long message that should have a larger size",
systemPrompt: "You are a helpful assistant that does many things",
expectedSize: 108, // len(text) + len(prompt) + 100 = 52 + 45 + 100 = 197... wait, let me recalculate
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 1000,
currentBytes: 0,
}
node := &ConversationNode{
MessageID: 1,
Text: tt.text,
SystemPrompt: tt.systemPrompt,
ParentID: 0,
}
cache.AddMessage(node)
// Just verify size is calculated (don't check exact value for complex cases)
if node.ApproxSize <= 0 {
t.Error("expected size to be positive")
}
})
}
}
// TestConversationNodeSizeValues tests exact size values
func TestConversationNodeSizeValues(t *testing.T) {
cache := &ConversationCache{
nodes: make(map[int]*ConversationNode),
maxCacheBytes: 1000,
currentBytes: 0,
}
testCases := []struct {
text string
systemPrompt string
expected int
}{
{"", "", 100},
{"Hi", "", 102},
{"Hello", "You are a bot", 118}, // 5 + 13 + 100 = 118
}
for _, tc := range testCases {
node := &ConversationNode{
MessageID: 1,
Text: tc.text,
SystemPrompt: tc.systemPrompt,
ParentID: 0,
}
cache.AddMessage(node)
if node.ApproxSize != tc.expected {
t.Errorf("for text=%q prompt=%q: expected %d, got %d", tc.text, tc.systemPrompt, tc.expected, node.ApproxSize)
}
}
}