File size: 9,594 Bytes
88c4c60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
// Tests for Kiro format RTK support
// Verifies that RTK compression works with Kiro's conversationState format
import { describe, it, expect } from "vitest";
import { compressMessages } from "../../open-sse/rtk/index.js";

describe("Kiro format RTK support", () => {
  it("compresses tool results in Kiro conversationState.currentMessage", () => {
    const kiroBody = {
      conversationState: {
        chatTriggerType: "MANUAL",
        conversationId: "test-123",
        currentMessage: {
          userInputMessage: {
            content: "Install express",
            modelId: "claude-sonnet-4.5",
            userInputMessageContext: {
              toolResults: [
                {
                  toolUseId: "tool_1",
                  status: "success",
                  content: [
                    {
                      text: [
                        "npm warn deprecated har-validator@5.1.5: this library is no longer supported",
                        "npm warn deprecated uuid@3.4.0: uuid@10 and below is no longer supported",
                        "npm warn deprecated request@2.88.2: request has been deprecated",
                        "npm warn deprecated inflight@1.0.6: This module is not supported",
                        "npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported",
                        "npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported",
                        "",
                        "added 47 packages, and audited 48 packages in 13s",
                        "",
                        "3 packages are looking for funding",
                        "  run `npm fund` for details",
                        "",
                        "4 vulnerabilities (2 moderate, 2 critical)",
                        "",
                        "Some issues need review, and may require choosing",
                        "a different dependency.",
                        "",
                        "Run `npm audit` for details."
                      ].join("\n")
                    }
                  ]
                }
              ]
            }
          }
        },
        history: []
      }
    };

    const stats = compressMessages(kiroBody, true);

    expect(stats).not.toBeNull();
    expect(stats.bytesBefore).toBeGreaterThan(500);
    expect(stats.bytesAfter).toBeLessThan(stats.bytesBefore);
    expect(stats.hits.length).toBe(1);
    expect(stats.hits[0].filter).toBe("build-output");
    expect(stats.hits[0].shape).toBe("kiro-tool-result");

    // Verify compression happened
    const savedBytes = stats.bytesBefore - stats.bytesAfter;
    expect(savedBytes).toBeGreaterThan(0);
    const savedPercent = (savedBytes / stats.bytesBefore) * 100;
    expect(savedPercent).toBeGreaterThan(10); // At least 10% savings
  });

  it("compresses tool results in Kiro conversationState.history", () => {
    // Need >500 bytes for compression to trigger
    const compilingLines = [];
    for (let i = 1; i <= 20; i++) {
      compilingLines.push(`   Compiling package-${i} v1.0.${i}`);
    }
    compilingLines.push("    Finished `dev` profile [unoptimized + debuginfo] target(s) in 12.34s");

    const kiroBody = {
      conversationState: {
        chatTriggerType: "MANUAL",
        conversationId: "test-456",
        currentMessage: {
          userInputMessage: {
            content: "What happened?",
            modelId: "claude-sonnet-4.5"
          }
        },
        history: [
          {
            userInputMessage: {
              content: "Run cargo build",
              modelId: "claude-sonnet-4.5",
              userInputMessageContext: {
                toolResults: [
                  {
                    toolUseId: "tool_2",
                    status: "success",
                    content: [
                      {
                        text: compilingLines.join("\n")
                      }
                    ]
                  }
                ]
              }
            }
          }
        ]
      }
    };

    const stats = compressMessages(kiroBody, true);

    expect(stats).not.toBeNull();
    expect(stats.hits.length).toBe(1);
    expect(stats.hits[0].filter).toBe("build-output");
    expect(stats.bytesAfter).toBeLessThan(stats.bytesBefore);
  });

  it("handles multiple tool results across history and currentMessage", () => {
    // Need >500 bytes for each tool result to trigger compression
    const deprecations1 = [];
    const deprecations2 = [];
    for (let i = 1; i <= 10; i++) {
      deprecations1.push(`npm warn deprecated package-${i}@1.0.0: This version is deprecated`);
      deprecations2.push(`npm warn deprecated lib-${i}@2.0.0: This library is no longer supported`);
    }
    deprecations1.push("added 50 packages in 5s");
    deprecations2.push("added 1 package in 2s");

    const kiroBody = {
      conversationState: {
        chatTriggerType: "MANUAL",
        conversationId: "test-789",
        currentMessage: {
          userInputMessage: {
            content: "Install lodash",
            modelId: "claude-sonnet-4.5",
            userInputMessageContext: {
              toolResults: [
                {
                  toolUseId: "tool_3",
                  status: "success",
                  content: [
                    {
                      text: deprecations2.join("\n")
                    }
                  ]
                }
              ]
            }
          }
        },
        history: [
          {
            userInputMessage: {
              content: "Install express",
              modelId: "claude-sonnet-4.5",
              userInputMessageContext: {
                toolResults: [
                  {
                    toolUseId: "tool_4",
                    status: "success",
                    content: [
                      {
                        text: deprecations1.join("\n")
                      }
                    ]
                  }
                ]
              }
            }
          }
        ]
      }
    };

    const stats = compressMessages(kiroBody, true);

    expect(stats).not.toBeNull();
    expect(stats.hits.length).toBe(2); // Both tool results compressed
    expect(stats.hits.every(h => h.filter === "build-output")).toBe(true);
  });

  it("preserves error tool results without compression", () => {
    const kiroBody = {
      conversationState: {
        chatTriggerType: "MANUAL",
        conversationId: "test-error",
        currentMessage: {
          userInputMessage: {
            content: "Install invalid-package",
            modelId: "claude-sonnet-4.5",
            userInputMessageContext: {
              toolResults: [
                {
                  toolUseId: "tool_5",
                  status: "error",
                  content: [
                    {
                      text: "npm error code E404\nnpm error 404 Not Found - GET https://registry.npmjs.org/invalid-package"
                    }
                  ]
                }
              ]
            }
          }
        },
        history: []
      }
    };

    const originalText = kiroBody.conversationState.currentMessage.userInputMessage.userInputMessageContext.toolResults[0].content[0].text;
    const stats = compressMessages(kiroBody, true);

    expect(stats).not.toBeNull();
    expect(stats.hits.length).toBe(0); // Error not compressed
    
    // Verify error text unchanged
    const afterText = kiroBody.conversationState.currentMessage.userInputMessage.userInputMessageContext.toolResults[0].content[0].text;
    expect(afterText).toBe(originalText);
  });

  it("returns null when RTK is disabled", () => {
    const kiroBody = {
      conversationState: {
        chatTriggerType: "MANUAL",
        conversationId: "test-disabled",
        currentMessage: {
          userInputMessage: {
            content: "Test",
            modelId: "claude-sonnet-4.5",
            userInputMessageContext: {
              toolResults: [
                {
                  toolUseId: "tool_6",
                  status: "success",
                  content: [{ text: "npm install express\nadded 50 packages" }]
                }
              ]
            }
          }
        },
        history: []
      }
    };

    const stats = compressMessages(kiroBody, false); // RTK disabled
    expect(stats).toBeNull();
  });

  it("handles Kiro body with no tool results gracefully", () => {
    const kiroBody = {
      conversationState: {
        chatTriggerType: "MANUAL",
        conversationId: "test-no-tools",
        currentMessage: {
          userInputMessage: {
            content: "Hello",
            modelId: "claude-sonnet-4.5"
          }
        },
        history: []
      }
    };

    const stats = compressMessages(kiroBody, true);

    expect(stats).not.toBeNull();
    expect(stats.hits.length).toBe(0);
    expect(stats.bytesBefore).toBe(0);
    expect(stats.bytesAfter).toBe(0);
  });

  it("handles malformed Kiro body without crashing", () => {
    const malformedBodies = [
      { conversationState: null },
      { conversationState: {} },
      { conversationState: { history: null, currentMessage: null } },
      { conversationState: { history: "not-an-array" } }
    ];

    for (const body of malformedBodies) {
      const stats = compressMessages(body, true);
      // Malformed bodies may return null (caught by try-catch) or empty stats
      if (stats !== null) {
        expect(stats.hits.length).toBe(0);
      }
    }
  });
});