File size: 13,520 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 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 | import { describe, it, expect, beforeEach } from "vitest";
import { compressMessages, setRtkEnabled, isRtkEnabled, formatRtkLog } from "../../open-sse/rtk/index.js";
import { gitDiff } from "../../open-sse/rtk/filters/gitDiff.js";
import { gitStatus } from "../../open-sse/rtk/filters/gitStatus.js";
import { grep } from "../../open-sse/rtk/filters/grep.js";
import { find } from "../../open-sse/rtk/filters/find.js";
import { dedupLog } from "../../open-sse/rtk/filters/dedupLog.js";
import { ls } from "../../open-sse/rtk/filters/ls.js";
import { tree } from "../../open-sse/rtk/filters/tree.js";
import { smartTruncate } from "../../open-sse/rtk/filters/smartTruncate.js";
import { readNumbered } from "../../open-sse/rtk/filters/readNumbered.js";
import { searchList } from "../../open-sse/rtk/filters/searchList.js";
import { autoDetectFilter } from "../../open-sse/rtk/autodetect.js";
import { safeApply } from "../../open-sse/rtk/applyFilter.js";
function makeLongDiff() {
const lines = ["diff --git a/foo.js b/foo.js", "index abc..def 100644", "--- a/foo.js", "+++ b/foo.js", "@@ -1,3 +1,200 @@"];
for (let i = 0; i < 200; i++) lines.push(`+added line ${i} ${"x".repeat(20)}`);
return lines.join("\n");
}
function makeGitStatus() {
return [
"On branch main",
"Your branch is up to date with 'origin/main'.",
"",
"Changes not staged for commit:",
" (use \"git add <file>...\" to update what will be committed)",
"\tmodified: src/a.js",
"\tmodified: src/b.js",
"\tnew file: src/c.js",
"\tdeleted: src/old.js",
"",
"Untracked files:",
"\tnotes.txt",
"",
"no changes added to commit"
].join("\n");
}
function makeGrepOutput() {
const lines = [];
for (let i = 1; i <= 40; i++) lines.push(`src/foo.js:${i}:const x${i} = "some value here with padding text padding text"`);
for (let i = 1; i <= 10; i++) lines.push(`src/bar.js:${i}:const y${i} = "another value here with padding padding padding"`);
return lines.join("\n");
}
function makeFindOutput() {
const lines = [];
for (let i = 0; i < 30; i++) lines.push(`./src/a/${i}.js`);
for (let i = 0; i < 20; i++) lines.push(`./src/b/${i}.js`);
for (let i = 0; i < 5; i++) lines.push(`./top${i}.md`);
return lines.join("\n");
}
describe("RTK flag", () => {
it("default off, toggle works", () => {
setRtkEnabled(false);
expect(isRtkEnabled()).toBe(false);
setRtkEnabled(true);
expect(isRtkEnabled()).toBe(true);
setRtkEnabled(false);
});
});
describe("RTK filters", () => {
it("gitDiff truncates hunks beyond 100 lines and preserves file header", () => {
const input = makeLongDiff();
const out = gitDiff(input, 500);
expect(out).toContain("foo.js");
expect(out).toContain("lines truncated");
expect(out.length).toBeLessThan(input.length);
});
it("gitStatus groups by kind and produces compact output (Rust format)", () => {
const input = makeGitStatus();
const out = gitStatus(input);
expect(out).toContain("* main");
expect(out).toMatch(/~ Modified: \d+ files/);
expect(out).toContain("src/a.js");
expect(out.length).toBeLessThan(input.length);
});
it("grep groups matches by file and caps per-file lines (Rust format)", () => {
const input = makeGrepOutput();
const out = grep(input);
expect(out).toContain("50 matches in 2F:");
expect(out).toContain("[file] src/foo.js (40):");
expect(out).toContain("[file] src/bar.js (10):");
expect(out).toMatch(/\+\d+/); // overflow marker
expect(out.length).toBeLessThan(input.length);
});
it("find groups paths by parent dir, shows basenames (Rust format)", () => {
const input = makeFindOutput();
const out = find(input);
expect(out).toContain("55 files in 3 dirs:");
expect(out).toContain("./src/a/ (30):");
expect(out).toContain("./src/b/ (20):");
expect(out).toContain("./ (5):");
expect(out.length).toBeLessThan(input.length);
});
it("dedupLog collapses consecutive duplicates", () => {
const input = Array(20).fill("repeated log line A").join("\n") + "\nunique\n" + Array(10).fill("another dup").join("\n");
const out = dedupLog(input);
expect(out).toContain("repeated log line A");
expect(out).toContain("duplicate lines");
expect(out.length).toBeLessThan(input.length);
});
});
describe("autoDetectFilter", () => {
it("detects git diff", () => {
expect(autoDetectFilter("diff --git a/x b/x\n@@ -1 +1 @@\n+a").filterName).toBe("git-diff");
});
it("detects git status", () => {
expect(autoDetectFilter("On branch main\n modified: x.js\n").filterName).toBe("git-status");
});
it("detects grep", () => {
expect(autoDetectFilter("a.js:1:hello\nb.js:2:world\nc.js:3:foo").filterName).toBe("grep");
});
it("detects find", () => {
expect(autoDetectFilter("./a/b.js\n./a/c.js\n./a/d.js").filterName).toBe("find");
});
it("falls back to dedupLog for generic text", () => {
const txt = "line1\nline2\nline3\nline4\nline5\nline6\n";
expect(autoDetectFilter(txt).filterName).toBe("dedup-log");
});
});
describe("RTK filters (extras)", () => {
it("ls: compact_ls strips perms/owner, keeps name + size", () => {
const input = [
"total 48",
"drwxr-xr-x 2 user staff 64 Jan 1 12:00 .",
"drwxr-xr-x 2 user staff 64 Jan 1 12:00 ..",
"drwxr-xr-x 2 user staff 64 Jan 1 12:00 src",
"-rw-r--r-- 1 user staff 1234 Jan 1 12:00 Cargo.toml",
"-rw-r--r-- 1 user staff 5678 Jan 1 12:00 README.md"
].join("\n");
const out = ls(input);
expect(out).toContain("src/");
expect(out).toContain("Cargo.toml");
expect(out).toContain("1.2K");
expect(out).toContain("5.5K");
expect(out).not.toContain("drwx");
expect(out).toContain("Summary: 2 files, 1 dirs");
});
it("ls: filters noise dirs", () => {
const input = [
"total 8",
"drwxr-xr-x 2 user staff 64 Jan 1 12:00 node_modules",
"drwxr-xr-x 2 user staff 64 Jan 1 12:00 .git",
"drwxr-xr-x 2 user staff 64 Jan 1 12:00 src",
"-rw-r--r-- 1 user staff 100 Jan 1 12:00 main.js"
].join("\n");
const out = ls(input);
expect(out).not.toContain("node_modules");
expect(out).not.toContain(".git");
expect(out).toContain("src/");
expect(out).toContain("main.js");
});
it("tree: removes summary, keeps structure", () => {
const input = ".\nβββ src\nβ βββ main.rs\nβββ Cargo.toml\n\n2 directories, 3 files\n";
const out = tree(input);
expect(out).not.toContain("directories");
expect(out).toContain("βββ");
expect(out).toContain("main.rs");
});
it("smartTruncate: keeps head+tail, drops middle", () => {
const input = Array.from({ length: 400 }, (_, i) => `line ${i}`).join("\n");
const out = smartTruncate(input);
expect(out).toContain("line 0");
expect(out).toContain("line 399");
expect(out).toContain("lines truncated");
expect(out.length).toBeLessThan(input.length);
});
it("smartTruncate: passes through small input", () => {
const input = Array.from({ length: 10 }, (_, i) => `line ${i}`).join("\n");
expect(smartTruncate(input)).toBe(input);
});
it("readNumbered: compacts very long line-numbered dump", () => {
const lines = [];
for (let i = 1; i <= 400; i++) lines.push(` ${i}|content ${i}`);
const input = lines.join("\n");
const out = readNumbered(input);
expect(out).toContain("1|content 1");
expect(out).toContain("400|content 400");
expect(out).toContain("lines truncated");
expect(out.length).toBeLessThan(input.length);
});
it("searchList: groups Cursor Glob output by parent dir", () => {
const paths = [];
for (let i = 0; i < 30; i++) paths.push(`- src/a/f${i}.js`);
for (let i = 0; i < 10; i++) paths.push(`- src/b/g${i}.js`);
const input = [
"Result of search in '/Users/x' (total 40 files):",
...paths
].join("\n");
const out = searchList(input);
expect(out).toContain("Result of search in");
expect(out).toContain("40 files in 2 dirs:");
expect(out).toContain("src/a/ (30):");
expect(out).toContain("src/b/ (10):");
expect(out).toMatch(/\+\d+/);
expect(out.length).toBeLessThan(input.length);
});
});
describe("autoDetectFilter (extras)", () => {
it("detects tree via box-drawing glyphs", () => {
expect(autoDetectFilter(".\nβββ src\nβ βββ main.rs\nβββ Cargo.toml\n").filterName).toBe("tree");
});
it("detects ls via total + perms rows", () => {
const input = [
"total 48",
"drwxr-xr-x 2 user staff 64 Jan 1 12:00 src",
"-rw-r--r-- 1 user staff 1234 Jan 1 12:00 main.js",
"-rw-r--r-- 1 user staff 5678 Jan 1 12:00 README.md"
].join("\n");
expect(autoDetectFilter(input).filterName).toBe("ls");
});
it("detects Cursor search list", () => {
const input = "Result of search in '/x' (total 3 files):\n- a/b.js\n- a/c.js\n- a/d.js";
expect(autoDetectFilter(input).filterName).toBe("search-list");
});
});
describe("safeApply", () => {
it("returns input if filter throws", () => {
const out = safeApply(() => { throw new Error("boom"); }, "hello");
expect(out).toBe("hello");
});
it("returns input if filter returns non-string", () => {
const out = safeApply(() => 42, "hello");
expect(out).toBe("hello");
});
});
describe("compressMessages (disabled)", () => {
beforeEach(() => setRtkEnabled(false));
it("returns null when disabled", () => {
const body = { messages: [{ role: "tool", tool_call_id: "x", content: makeLongDiff() }] };
expect(compressMessages(body)).toBeNull();
});
});
describe("compressMessages (enabled)", () => {
beforeEach(() => setRtkEnabled(true));
it("compresses OpenAI tool message (string content)", () => {
const big = makeLongDiff();
const body = { messages: [{ role: "tool", tool_call_id: "call_1", content: big }] };
const stats = compressMessages(body);
expect(stats.hits.length).toBeGreaterThan(0);
expect(body.messages[0].content.length).toBeLessThan(big.length);
expect(stats.bytesBefore).toBeGreaterThan(stats.bytesAfter);
});
it("compresses Claude string-form tool_result", () => {
const big = makeLongDiff();
const body = {
messages: [{
role: "user",
content: [{ type: "tool_result", tool_use_id: "toolu_1", content: big }]
}]
};
const stats = compressMessages(body);
expect(stats.hits.length).toBeGreaterThan(0);
expect(body.messages[0].content[0].content.length).toBeLessThan(big.length);
});
it("compresses Claude array-form tool_result text parts", () => {
const big = makeLongDiff();
const body = {
messages: [{
role: "user",
content: [{
type: "tool_result",
tool_use_id: "toolu_1",
content: [{ type: "text", text: big }, { type: "text", text: "unchanged short" }]
}]
}]
};
const stats = compressMessages(body);
expect(stats.hits.length).toBeGreaterThan(0);
expect(body.messages[0].content[0].content[0].text.length).toBeLessThan(big.length);
// short part unchanged
expect(body.messages[0].content[0].content[1].text).toBe("unchanged short");
});
it("skips is_error tool_result", () => {
const big = makeLongDiff();
const body = {
messages: [{
role: "user",
content: [{ type: "tool_result", tool_use_id: "toolu_1", content: big, is_error: true }]
}]
};
const stats = compressMessages(body);
expect(stats.hits.length).toBe(0);
expect(body.messages[0].content[0].content).toBe(big);
});
it("skips below MIN_COMPRESS_SIZE (<500 bytes)", () => {
const small = "diff --git a/x b/x\n@@ -1 +1 @@\n+a";
const body = { messages: [{ role: "tool", tool_call_id: "x", content: small }] };
const stats = compressMessages(body);
expect(stats.hits.length).toBe(0);
expect(body.messages[0].content).toBe(small);
});
it("never produces empty content (R14 guard)", () => {
const input = "a".repeat(1000);
const body = { messages: [{ role: "tool", tool_call_id: "x", content: input }] };
compressMessages(body);
expect(body.messages[0].content.length).toBeGreaterThan(0);
});
it("skips when body has no messages", () => {
expect(compressMessages({})).toBeNull();
expect(compressMessages({ messages: null })).toBeNull();
});
it("handles mix of messages without crashing", () => {
const body = {
messages: [
{ role: "system", content: "you are" },
{ role: "user", content: "hi" },
{ role: "assistant", content: null, tool_calls: [{ id: "c1", function: { name: "x", arguments: "{}" } }] },
{ role: "tool", tool_call_id: "c1", content: makeGrepOutput() },
{ role: "user", content: [{ type: "text", text: "next" }] }
]
};
const stats = compressMessages(body);
expect(stats).not.toBeNull();
expect(stats.hits.length).toBeGreaterThan(0);
});
});
describe("formatRtkLog", () => {
it("returns null when no hits", () => {
expect(formatRtkLog({ bytesBefore: 0, bytesAfter: 0, hits: [] })).toBeNull();
});
it("formats savings line with percentage", () => {
const line = formatRtkLog({ bytesBefore: 1000, bytesAfter: 400, hits: [{ filter: "git-diff" }] });
expect(line).toContain("saved 600B");
expect(line).toContain("60.0%");
expect(line).toContain("git-diff");
});
});
|