tokf 0.1.4

Config-driven CLI tool that compresses command output before it reaches an LLM context
Documentation
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
470
471
472
473
474
475
476
477
use super::*;
use crate::config::types::ExtractRule;

fn make_result(combined: &str, exit_code: i32) -> CommandResult {
    CommandResult {
        stdout: String::new(),
        stderr: String::new(),
        exit_code,
        combined: combined.to_string(),
    }
}

fn minimal_config() -> FilterConfig {
    toml::from_str(r#"command = "test""#).unwrap()
}

// --- select_branch ---

#[test]
fn select_branch_success() {
    let mut config = minimal_config();
    config.on_success = Some(OutputBranch {
        output: Some("success".to_string()),
        aggregate: None,
        tail: None,
        head: None,
        skip: vec![],
        extract: None,
    });
    assert!(select_branch(&config, 0).is_some());
    assert!(select_branch(&config, 1).is_none());
}

#[test]
fn select_branch_failure() {
    let mut config = minimal_config();
    config.on_failure = Some(OutputBranch {
        output: Some("failure".to_string()),
        aggregate: None,
        tail: None,
        head: None,
        skip: vec![],
        extract: None,
    });
    assert!(select_branch(&config, 0).is_none());
    assert!(select_branch(&config, 1).is_some());
    assert!(select_branch(&config, 127).is_some());
}

// --- apply_branch ---

/// Helper: call apply_branch with empty sections (non-section path).
fn branch_apply(branch: &OutputBranch, combined: &str) -> String {
    apply_branch(branch, combined, &SectionMap::new(), false).unwrap()
}

#[test]
fn branch_fixed_output() {
    let branch = OutputBranch {
        output: Some("ok \u{2713}".to_string()),
        aggregate: None,
        tail: None,
        head: None,
        skip: vec![],
        extract: None,
    };
    assert_eq!(branch_apply(&branch, "anything"), "ok \u{2713}");
}

#[test]
fn branch_output_template_resolves_output_var() {
    let branch = OutputBranch {
        output: Some("{output}".to_string()),
        aggregate: None,
        tail: None,
        head: None,
        skip: vec![],
        extract: None,
    };
    assert_eq!(branch_apply(&branch, "hello world"), "hello world");
}

#[test]
fn branch_output_template_with_surrounding_text() {
    let branch = OutputBranch {
        output: Some("Result: {output}".to_string()),
        aggregate: None,
        tail: None,
        head: None,
        skip: vec![],
        extract: None,
    };
    assert_eq!(
        branch_apply(&branch, "line1\nline2"),
        "Result: line1\nline2"
    );
}

#[test]
fn branch_tail_truncation() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: Some(2),
        head: None,
        skip: vec![],
        extract: None,
    };
    assert_eq!(branch_apply(&branch, "a\nb\nc\nd"), "c\nd");
}

#[test]
fn branch_head_truncation() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: None,
        head: Some(2),
        skip: vec![],
        extract: None,
    };
    assert_eq!(branch_apply(&branch, "a\nb\nc\nd"), "a\nb");
}

#[test]
fn branch_tail_then_head() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: Some(3),
        head: Some(2),
        skip: vec![],
        extract: None,
    };
    // tail 3 of [a,b,c,d] → [b,c,d], then head 2 → [b,c]
    assert_eq!(branch_apply(&branch, "a\nb\nc\nd"), "b\nc");
}

#[test]
fn branch_skip_then_join() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: None,
        head: None,
        skip: vec!["^noise".to_string()],
        extract: None,
    };
    assert_eq!(
        branch_apply(&branch, "noise line\nkeep me\nnoise again"),
        "keep me"
    );
}

#[test]
fn branch_extract() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: None,
        head: None,
        skip: vec![],
        extract: Some(ExtractRule {
            pattern: r"(\S+)\s*->\s*(\S+)".to_string(),
            output: "ok {2}".to_string(),
        }),
    };
    assert_eq!(branch_apply(&branch, "main -> main"), "ok main");
}

#[test]
fn branch_tail_less_than_lines() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: Some(10),
        head: None,
        skip: vec![],
        extract: None,
    };
    // Only 3 lines, tail 10 → all lines kept
    assert_eq!(branch_apply(&branch, "a\nb\nc"), "a\nb\nc");
}

#[test]
fn branch_empty_string_returns_empty() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: None,
        head: None,
        skip: vec![],
        extract: None,
    };
    assert_eq!(branch_apply(&branch, ""), "");
}

#[test]
fn branch_single_line_no_newline() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: None,
        head: None,
        skip: vec![],
        extract: None,
    };
    assert_eq!(branch_apply(&branch, "only-line"), "only-line");
}

#[test]
fn branch_tail_zero_returns_empty() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: Some(0),
        head: None,
        skip: vec![],
        extract: None,
    };
    assert_eq!(branch_apply(&branch, "a\nb\nc"), "");
}

#[test]
fn branch_head_zero_returns_empty() {
    let branch = OutputBranch {
        output: None,
        aggregate: None,
        tail: None,
        head: Some(0),
        skip: vec![],
        extract: None,
    };
    assert_eq!(branch_apply(&branch, "a\nb\nc"), "");
}

// --- apply (full pipeline) ---

#[test]
fn apply_match_output_short_circuits() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"
match_output = [
  { contains = "special", output = "found it" },
]

[on_success]
output = "should not reach"
"#,
    )
    .unwrap();

    let result = make_result("some special output", 0);
    assert_eq!(apply(&config, &result, &[]).output, "found it");
}

#[test]
fn apply_passthrough_no_branch() {
    let config = minimal_config();
    let result = make_result("raw output", 0);
    assert_eq!(apply(&config, &result, &[]).output, "raw output");
}

#[test]
fn apply_success_branch() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"
[on_success]
output = "ok"
"#,
    )
    .unwrap();

    let result = make_result("anything", 0);
    assert_eq!(apply(&config, &result, &[]).output, "ok");
}

#[test]
fn apply_failure_branch() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"
[on_failure]
tail = 2
"#,
    )
    .unwrap();

    let result = make_result("a\nb\nc\nd", 1);
    assert_eq!(apply(&config, &result, &[]).output, "c\nd");
}

#[test]
fn apply_full_skip_then_extract() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"

[on_success]
skip = ["^noise"]
extract = { pattern = '(\w+) -> (\w+)', output = "pushed {2}" }
"#,
    )
    .unwrap();

    let result = make_result("noise line\nmain -> main\nnoise again", 0);
    assert_eq!(apply(&config, &result, &[]).output, "pushed main");
}

// --- parse pipeline tests ---

#[test]
fn apply_parse_overrides_on_success() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"

[parse]
branch = { line = 1, pattern = '## (\S+)', output = "{1}" }

[on_success]
output = "should not appear"
"#,
    )
    .unwrap();

    let result = make_result("## main", 0);
    assert_eq!(apply(&config, &result, &[]).output, "main\n");
}

#[test]
fn apply_parse_overrides_on_failure() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"

[parse]
branch = { line = 1, pattern = '## (\S+)', output = "{1}" }

[on_failure]
output = "should not appear"
"#,
    )
    .unwrap();

    let result = make_result("## develop", 1);
    assert_eq!(apply(&config, &result, &[]).output, "develop\n");
}

#[test]
fn apply_match_output_overrides_parse() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"
match_output = [
  { contains = "fatal", output = "error!" },
]

[parse]
branch = { line = 1, pattern = '## (\S+)', output = "{1}" }
"#,
    )
    .unwrap();

    let result = make_result("fatal: something broke", 128);
    assert_eq!(apply(&config, &result, &[]).output, "error!");
}

#[test]
fn apply_top_level_skip_affects_parse() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"
skip = ["^#"]

[parse]
branch = { line = 1, pattern = '^(\S+)', output = "{1}" }
"#,
    )
    .unwrap();

    // After skip removes "# comment", the first line becomes "M  file.rs"
    let result = make_result("# comment\nM  file.rs", 0);
    assert_eq!(apply(&config, &result, &[]).output, "M\n");
}

#[test]
fn apply_top_level_keep_affects_branch_path() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"
keep = ["^keep"]
"#,
    )
    .unwrap();

    let result = make_result("drop me\nkeep this\ndrop too\nkeep that", 0);
    assert_eq!(apply(&config, &result, &[]).output, "keep this\nkeep that");
}

#[test]
fn apply_output_var_passthrough() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"
[on_success]
output = "{output}"
"#,
    )
    .unwrap();

    let result = make_result("line1\nline2\nline3", 0);
    assert_eq!(apply(&config, &result, &[]).output, "line1\nline2\nline3");
}

#[test]
fn apply_output_var_with_skip_prefiltering() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"
skip = ["^#"]
[on_success]
output = "{output}"
"#,
    )
    .unwrap();

    let result = make_result("# comment\nreal line\n# another", 0);
    // {output} resolves to pre-filtered output (skip applied)
    assert_eq!(apply(&config, &result, &[]).output, "real line");
}

#[test]
fn apply_output_var_in_failure_branch() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"
[on_failure]
output = "FAILED:\n{output}"
"#,
    )
    .unwrap();

    let result = make_result("error: something broke\ndetails here", 1);
    assert_eq!(
        apply(&config, &result, &[]).output,
        "FAILED:\nerror: something broke\ndetails here"
    );
}

#[test]
fn apply_output_var_with_sections() {
    let config: FilterConfig = toml::from_str(
        r#"
command = "test"

[[section]]
name = "items"
match = "^item:"
collect_as = "items"

[on_success]
output = "Found {items.count} items in:\n{output}"
"#,
    )
    .unwrap();

    let input = "header\nitem: one\nitem: two\nfooter";
    let result = make_result(input, 0);
    let filtered = apply(&config, &result, &[]);
    assert_eq!(
        filtered.output,
        "Found 2 items in:\nheader\nitem: one\nitem: two\nfooter"
    );
}