-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConversationContextCompactionEditModeTests.cs
More file actions
469 lines (404 loc) · 19.5 KB
/
ConversationContextCompactionEditModeTests.cs
File metadata and controls
469 lines (404 loc) · 19.5 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using CoreAI.Ai;
using NUnit.Framework;
namespace CoreAI.Tests.EditMode
{
[TestFixture]
public sealed class ConversationContextCompactionEditModeTests
{
private sealed class FlatTokenEstimator : ITokenEstimator
{
private readonly int _perMessage;
public FlatTokenEstimator(int perMessage)
{
_perMessage = Math.Max(1, perMessage);
}
public int EstimateText(string text)
{
return _perMessage;
}
}
private sealed class RecordingLlmClient : ILlmClient
{
public LlmCompletionRequest LastRequest { get; private set; }
public int CompleteCallCount { get; private set; }
public void SetTools(IReadOnlyList<ILlmTool> tools)
{
}
public Task<LlmCompletionResult> CompleteAsync(
LlmCompletionRequest request,
CancellationToken cancellationToken = default)
{
CompleteCallCount++;
LastRequest = request;
return Task.FromResult(new LlmCompletionResult { Ok = true, Content = "rolled_up_summary" });
}
}
[Test]
public void ConversationContextManagerFactories_DisableOrNullLlm_UsesDeterministic()
{
InMemoryConversationSummaryStore store = new();
ITokenEstimator est = new HeuristicTokenEstimator();
IConversationContextManager a = ConversationContextManagerFactories.Create(false, store, est, null, null);
IConversationContextManager b = ConversationContextManagerFactories.Create(true, store, est, null, null);
Assert.IsInstanceOf<DeterministicConversationContextManager>(a);
Assert.IsInstanceOf<DeterministicConversationContextManager>(b);
}
[Test]
public void ConversationContextManagerFactories_EnableWithLlm_UsesSelectingWrapper()
{
InMemoryConversationSummaryStore store = new();
ITokenEstimator est = new HeuristicTokenEstimator();
RecordingLlmClient llm = new();
IConversationContextManager m = ConversationContextManagerFactories.Create(true, store, est, llm, null);
Assert.IsInstanceOf<SelectingConversationContextManager>(m);
}
[Test]
public async Task SelectingManager_BuildSnapshotAsync_SkipsLlm_WhenArgsDisableCompaction()
{
InMemoryConversationSummaryStore store = new();
RecordingLlmClient llm = new();
ITokenEstimator est = new FlatTokenEstimator(10);
SelectingConversationContextManager mgr = new(store, est, llm, LlmContextCompactionOptions.Default());
ChatMessage[] history =
{
new() { Role = "user", Content = "a" },
new() { Role = "assistant", Content = "b" },
new() { Role = "user", Content = "c" },
new() { Role = "assistant", Content = "d" },
new() { Role = "user", Content = "e" }
};
AgentMemoryPolicy.RoleMemoryConfig roleConfig = new() { ContextTokens = 8192 };
ConversationContextBuildArgs buildArgs = new()
{
HistoryTokenBudget = 25,
UseLlmContextCompaction = false
};
await mgr.BuildSnapshotAsync(
"r",
history,
roleConfig,
buildArgs,
"t",
CancellationToken.None)
.ConfigureAwait(false);
Assert.AreEqual(0, llm.CompleteCallCount);
}
[Test]
public async Task LlmAssisted_BuildSnapshotAsync_InvokesCompactionLlm_WhenPrefixEvicted()
{
InMemoryConversationSummaryStore store = new();
RecordingLlmClient llm = new();
ITokenEstimator est = new FlatTokenEstimator(10);
LlmAssistedConversationContextManager mgr = new(store, est, llm, LlmContextCompactionOptions.Default());
ChatMessage[] history =
{
new() { Role = "user", Content = "a" },
new() { Role = "assistant", Content = "b" },
new() { Role = "user", Content = "c" },
new() { Role = "assistant", Content = "d" },
new() { Role = "user", Content = "e" }
};
AgentMemoryPolicy.RoleMemoryConfig roleConfig = new() { ContextTokens = 8192 };
ConversationContextBuildArgs buildArgs = new()
{
HistoryTokenBudget = 25,
UseLlmContextCompaction = true
};
ConversationContextSnapshot snap = await mgr.BuildSnapshotAsync(
"role1",
history,
roleConfig,
buildArgs,
"trace123",
CancellationToken.None)
.ConfigureAwait(false);
Assert.AreEqual(1, llm.CompleteCallCount);
Assert.IsNotNull(llm.LastRequest);
Assert.AreEqual(BuiltInAgentRoleIds.ContextCompactionAux, llm.LastRequest.AgentRoleId);
Assert.AreEqual("trace123:compact", llm.LastRequest.TraceId);
Assert.AreEqual(LlmToolChoiceMode.None, llm.LastRequest.ForcedToolMode);
Assert.IsTrue(snap.WasCompacted);
Assert.AreEqual("rolled_up_summary", snap.Summary);
Assert.AreEqual(2, snap.RecentMessages.Length);
Assert.IsNull(llm.LastRequest.ChatHistory,
"Compaction must not replay tail as ChatHistory on auxiliary request.");
Assert.AreEqual(
LlmContextCompactionOptions.DefaultSystemPrompt,
llm.LastRequest.SystemPrompt,
"Main-role system prompt must not be used for compaction.");
StringAssert.Contains("## Dialogue lines to fold into the rolling summary", llm.LastRequest.UserPayload);
StringAssert.Contains("## Prior rolling summary", llm.LastRequest.UserPayload);
}
/// <summary>
/// Guards that compaction never receives the orchestrator's main role system prose (Teacher contract, etc.).
/// </summary>
[Test]
public async Task Compaction_Request_NeverUsesMainAgentSystem_CompactorPromptOnly()
{
const string forbiddenOrchestratorSystemSubstring =
"Teacher agent REDOSCHOOL_ORCHESTRATOR_EXCLUSIVE_SYSTEM_MARKER_XQ9_NO_COMPACT";
InMemoryConversationSummaryStore store = new();
RecordingLlmClient llm = new();
ITokenEstimator est = new FlatTokenEstimator(10);
LlmAssistedConversationContextManager mgr = new(store, est, llm);
ChatMessage[] history =
{
new() { Role = "user", Content = $"Hi — only transcript text {Environment.NewLine}(not system)" },
new() { Role = "assistant", Content = "ok" },
new() { Role = "user", Content = "next" },
new() { Role = "assistant", Content = "tail" },
new() { Role = "user", Content = "last" }
};
await mgr.BuildSnapshotAsync(
"roleX",
history,
new AgentMemoryPolicy.RoleMemoryConfig { ContextTokens = 8192 },
new ConversationContextBuildArgs
{ HistoryTokenBudget = 25, UseLlmContextCompaction = true },
"trace-no-leak",
CancellationToken.None)
.ConfigureAwait(false);
Assert.IsNull(llm.LastRequest.ChatHistory);
Assert.AreEqual(
LlmContextCompactionOptions.DefaultSystemPrompt,
llm.LastRequest.SystemPrompt);
StringAssert.DoesNotContain(
forbiddenOrchestratorSystemSubstring,
llm.LastRequest.SystemPrompt);
StringAssert.DoesNotContain(
forbiddenOrchestratorSystemSubstring,
llm.LastRequest.UserPayload);
StringAssert.DoesNotContain("## Tool Contract", llm.LastRequest.SystemPrompt);
StringAssert.DoesNotContain("## Tool Contract", llm.LastRequest.UserPayload);
StringAssert.StartsWith("trace-no-leak:compact", llm.LastRequest.TraceId);
}
[Test]
public async Task Compaction_Request_CustomOptionSystem_OverridesTemplate()
{
const string compactOnly = "You only summarize transcripts. MAIN_ROLE_FORBIDDEN";
LlmContextCompactionOptions options = new() { SystemPrompt = compactOnly };
InMemoryConversationSummaryStore store = new();
RecordingLlmClient llm = new();
LlmAssistedConversationContextManager mgr = new(
store, new FlatTokenEstimator(10), llm, options);
ChatMessage[] history =
{
new() { Role = "user", Content = "a" }, new() { Role = "assistant", Content = "b" },
new() { Role = "user", Content = "c" }, new() { Role = "assistant", Content = "d" },
new() { Role = "user", Content = "e" }
};
await mgr.BuildSnapshotAsync(
"r",
history,
new AgentMemoryPolicy.RoleMemoryConfig { ContextTokens = 8192 },
new ConversationContextBuildArgs
{ HistoryTokenBudget = 25, UseLlmContextCompaction = true },
"t",
CancellationToken.None)
.ConfigureAwait(false);
Assert.AreEqual(compactOnly, llm.LastRequest.SystemPrompt);
}
// --- Edge-case tests added by audit gap remediation ---
private sealed class ThrowingLlmClient : ILlmClient
{
private readonly Exception _ex;
public ThrowingLlmClient(Exception ex)
{
_ex = ex;
}
public void SetTools(IReadOnlyList<ILlmTool> tools)
{
}
public Task<LlmCompletionResult> CompleteAsync(
LlmCompletionRequest request,
CancellationToken cancellationToken = default)
{
throw _ex;
}
}
private sealed class WhitespaceResultLlmClient : ILlmClient
{
public void SetTools(IReadOnlyList<ILlmTool> tools)
{
}
public Task<LlmCompletionResult> CompleteAsync(
LlmCompletionRequest request,
CancellationToken cancellationToken = default)
{
return Task.FromResult(new LlmCompletionResult { Ok = true, Content = " \n " });
}
}
private static ChatMessage[] MakeHistory(int count)
{
return Enumerable.Range(0, count).Select(i => new ChatMessage
{
Role = i % 2 == 0 ? "user" : "assistant",
Content = $"msg{i}"
}).ToArray();
}
[Test]
public void LlmAssisted_CancellationToken_Rethrows()
{
InMemoryConversationSummaryStore store = new();
RecordingLlmClient llm = new();
LlmAssistedConversationContextManager mgr = new(store, new FlatTokenEstimator(10), llm);
CancellationTokenSource cts = new();
cts.Cancel();
// TaskCanceledException inherits from OperationCanceledException.
// The async state machine may wrap the cancellation as either subtype,
// so we use CatchAsync (accepts derived types) — matching production catch blocks.
Assert.CatchAsync<OperationCanceledException>(async () =>
{
await mgr.BuildSnapshotAsync(
"r", MakeHistory(5),
new AgentMemoryPolicy.RoleMemoryConfig { ContextTokens = 8192 },
new ConversationContextBuildArgs { HistoryTokenBudget = 25, UseLlmContextCompaction = true },
"t", cts.Token).ConfigureAwait(false);
});
}
[Test]
public async Task LlmAssisted_LlmFailure_FallsBackToBulletSummary()
{
InMemoryConversationSummaryStore store = new();
ThrowingLlmClient llm = new(new InvalidOperationException("LLM down"));
LlmAssistedConversationContextManager mgr = new(store, new FlatTokenEstimator(10), llm);
ConversationContextSnapshot snap = await mgr.BuildSnapshotAsync(
"r", MakeHistory(6),
new AgentMemoryPolicy.RoleMemoryConfig { ContextTokens = 8192 },
new ConversationContextBuildArgs { HistoryTokenBudget = 25, UseLlmContextCompaction = true },
"t", CancellationToken.None).ConfigureAwait(false);
Assert.IsTrue(snap.WasCompacted);
Assert.IsNotNull(snap.Summary);
Assert.IsNotEmpty(snap.Summary, "Bullet fallback should produce non-empty summary.");
}
[Test]
public async Task LlmAssisted_EmptyLlmResult_FallsBackToBulletSummary()
{
InMemoryConversationSummaryStore store = new();
WhitespaceResultLlmClient llm = new();
LlmAssistedConversationContextManager mgr = new(store, new FlatTokenEstimator(10), llm);
ConversationContextSnapshot snap = await mgr.BuildSnapshotAsync(
"r", MakeHistory(6),
new AgentMemoryPolicy.RoleMemoryConfig { ContextTokens = 8192 },
new ConversationContextBuildArgs { HistoryTokenBudget = 25, UseLlmContextCompaction = true },
"t", CancellationToken.None).ConfigureAwait(false);
Assert.IsTrue(snap.WasCompacted);
Assert.IsNotNull(snap.Summary);
Assert.IsNotEmpty(snap.Summary, "Whitespace LLM result should fall back to bullet summary.");
}
[Test]
public async Task LlmAssisted_LongSummary_TruncatedToMaxSummaryChars()
{
// Default MaxSummaryChars is 4000; generate content exceeding that.
string longContent = new('A', 6000);
InMemoryConversationSummaryStore store = new();
LongResultLlmClient llm = new(longContent);
LlmAssistedConversationContextManager mgr = new(store, new FlatTokenEstimator(10), llm);
ConversationContextSnapshot snap = await mgr.BuildSnapshotAsync(
"r", MakeHistory(6),
new AgentMemoryPolicy.RoleMemoryConfig { ContextTokens = 8192 },
new ConversationContextBuildArgs { HistoryTokenBudget = 25, UseLlmContextCompaction = true },
"t", CancellationToken.None).ConfigureAwait(false);
Assert.IsTrue(snap.WasCompacted);
Assert.LessOrEqual(snap.Summary.Length, 4001, "Summary should be truncated to MaxSummaryChars (4000).");
Assert.IsTrue(snap.Summary.EndsWith("…"), "Truncated summary should end with ellipsis.");
}
private sealed class LongResultLlmClient : ILlmClient
{
private readonly string _content;
public LongResultLlmClient(string content)
{
_content = content;
}
public void SetTools(IReadOnlyList<ILlmTool> tools)
{
}
public Task<LlmCompletionResult> CompleteAsync(
LlmCompletionRequest request,
CancellationToken cancellationToken = default)
{
return Task.FromResult(new LlmCompletionResult { Ok = true, Content = _content });
}
}
[Test]
public void DeterministicManager_MaxRolledSummaryTokens_TruncatesBeforeSave()
{
InMemoryConversationSummaryStore store = new();
HeuristicTokenEstimator est = new();
DeterministicConversationContextManager mgr = new(store, est);
ChatMessage[] history = new ChatMessage[10];
for (int i = 0; i < 10; i++)
{
history[i] = new ChatMessage
{
Role = "user",
Content = $"m{i}-" + new string('z', 48)
};
}
AgentMemoryPolicy.RoleMemoryConfig roleConfig = new() { ContextTokens = 8192 };
ConversationContextBuildArgs buildArgs = new()
{
HistoryTokenBudget = 28,
MaxRolledSummaryTokens = 18
};
ConversationContextSnapshot snap = mgr.BuildSnapshot("roleA", history, roleConfig, buildArgs);
Assert.IsTrue(snap.WasCompacted);
Assert.IsTrue(snap.Summary.EndsWith("…"), "Summary should be truncated when over MaxRolledSummaryTokens.");
string persisted = store.LoadSummary("roleA");
Assert.AreEqual(snap.Summary, persisted,
"Store should receive the same truncated summary as the snapshot.");
Assert.LessOrEqual(est.EstimateText(persisted), 30, "Persisted summary should stay near the token cap.");
}
[Test]
public void DeterministicManager_MaxRolledSummaryTokens_TruncatesStoredOnlySnapshot()
{
InMemoryConversationSummaryStore store = new();
store.SaveSummary("roleB", new string('q', 800));
HeuristicTokenEstimator est = new();
DeterministicConversationContextManager mgr = new(store, est);
ChatMessage[] history = new[]
{
new ChatMessage { Role = "user", Content = "tail-only" }
};
AgentMemoryPolicy.RoleMemoryConfig roleConfig = new() { ContextTokens = 8192 };
ConversationContextBuildArgs buildArgs = new()
{
HistoryTokenBudget = 500,
MaxRolledSummaryTokens = 25
};
ConversationContextSnapshot snap = mgr.BuildSnapshot("roleB", history, roleConfig, buildArgs);
Assert.IsTrue(snap.Summary.EndsWith("…"));
Assert.Less(est.EstimateText(snap.Summary), est.EstimateText(new string('q', 800)));
Assert.AreEqual("tail-only", snap.RecentMessages[^1].Content);
}
[Test]
public async Task LlmAssisted_LongPerMessageContent_TruncatedInPayload()
{
InMemoryConversationSummaryStore store = new();
RecordingLlmClient llm = new();
LlmAssistedConversationContextManager mgr = new(store, new FlatTokenEstimator(10), llm);
// Create history with one very long message
ChatMessage[] history =
{
new() { Role = "user", Content = new string('X', 5000) },
new() { Role = "assistant", Content = "short" },
new() { Role = "user", Content = "latest" }
};
await mgr.BuildSnapshotAsync(
"r", history,
new AgentMemoryPolicy.RoleMemoryConfig { ContextTokens = 8192 },
new ConversationContextBuildArgs { HistoryTokenBudget = 15, UseLlmContextCompaction = true },
"t", CancellationToken.None).ConfigureAwait(false);
// The payload should have truncated the 5000-char message to ~2000 chars
Assert.IsNotNull(llm.LastRequest);
string payload = llm.LastRequest.UserPayload;
Assert.IsFalse(payload.Contains(new string('X', 3000)),
"Per-message content over 2000 chars should be truncated in the compaction payload.");
}
}
}