zerostack 1.5.0

Minimalistic coding agent written in Rust, optimized for memory footprint and performance
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
use crate::agent::tools::crc::crc32_hex;
use crate::agent::tools::set_edit_system;
use crate::agent::tools::{EditArgs, EditOp, edit};
use crate::config::types::EditSystem;
use rig::tool::Tool;

struct TempFile(String);

impl TempFile {
    fn new(name: &str) -> Self {
        let path = std::env::temp_dir()
            .join(format!("zerostack_test_{}", name))
            .to_string_lossy()
            .to_string();
        TempFile(path)
    }

    fn path(&self) -> &str {
        &self.0
    }
}

impl Drop for TempFile {
    fn drop(&mut self) {
        let _ = std::fs::remove_file(&self.0);
    }
}

// ── Similarity (V1) tests ──────────────────────────────────────────────

#[tokio::test]
async fn test_sim_rejects_no_blocks() {
    set_edit_system(EditSystem::Similarity);
    let tmp = TempFile::new("noblocks.txt");
    std::fs::write(tmp.path(), "hello world\n").unwrap();
    let tool = edit::EditTool::new(None, None);
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: Some("no blocks here".into()),
            file_crc: None,
            edits: None,
        })
        .await;
    assert!(result.is_err());
    let msg = result.unwrap_err().to_string();
    assert!(msg.contains("No SEARCH/REPLACE blocks found"));
}

#[tokio::test]
async fn test_sim_rejects_empty_search() {
    set_edit_system(EditSystem::Similarity);
    let tmp = TempFile::new("emptysearch.txt");
    std::fs::write(tmp.path(), "hello world\n").unwrap();
    let tool = edit::EditTool::new(None, None);
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: Some("<<<<<<< SEARCH\n=======\nreplacement\n>>>>>>> REPLACE".into()),
            file_crc: None,
            edits: None,
        })
        .await;
    assert!(result.is_err());
    let msg = result.unwrap_err().to_string();
    assert!(msg.contains("has empty search text"));
}

#[tokio::test]
async fn test_sim_search_not_found() {
    set_edit_system(EditSystem::Similarity);
    let tmp = TempFile::new("notfound2.txt");
    std::fs::write(tmp.path(), "hello world\n").unwrap();
    let tool = edit::EditTool::new(None, None);
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: Some(
                "<<<<<<< SEARCH\nthis does not exist in file\n=======\nreplacement\n>>>>>>> REPLACE"
                    .into(),
            ),
            file_crc: None,
            edits: None,
        })
        .await;
    assert!(result.is_err());
    let msg = result.unwrap_err().to_string();
    assert!(msg.contains("not found"));
}

#[tokio::test]
async fn test_sim_single_block_replacement() {
    set_edit_system(EditSystem::Similarity);
    let tmp = TempFile::new("single2.txt");
    std::fs::write(tmp.path(), "before after done\n").unwrap();
    let tool = edit::EditTool::new(None, None);
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: Some("<<<<<<< SEARCH\nafter\n=======\nmiddle\n>>>>>>> REPLACE".into()),
            file_crc: None,
            edits: None,
        })
        .await
        .unwrap();
    let content = std::fs::read_to_string(tmp.path()).unwrap();
    assert_eq!(content, "before middle done\n");
    assert!(result.contains("Applied 1 edit(s)"));
}

#[tokio::test]
async fn test_sim_multi_block_atomic() {
    set_edit_system(EditSystem::Similarity);
    let tmp = TempFile::new("multiblock.txt");
    std::fs::write(tmp.path(), "aaa\nbbb\nccc\n").unwrap();
    let tool = edit::EditTool::new(None, None);
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: Some(
                "\
<<<<<<< SEARCH
aaa
=======
AAA
>>>>>>> REPLACE

<<<<<<< SEARCH
ccc
=======
CCC
>>>>>>> REPLACE"
                    .into(),
            ),
            file_crc: None,
            edits: None,
        })
        .await
        .unwrap();
    let content = std::fs::read_to_string(tmp.path()).unwrap();
    assert_eq!(content, "AAA\nbbb\nCCC\n");
    assert!(result.contains("Applied 2 edit(s)"));
}

#[tokio::test]
async fn test_sim_multi_match_returns_error() {
    set_edit_system(EditSystem::Similarity);
    let tmp = TempFile::new("multi2.txt");
    std::fs::write(tmp.path(), "hello world, hello there\n").unwrap();
    let tool = edit::EditTool::new(None, None);
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: Some("<<<<<<< SEARCH\nhello\n=======\nbye\n>>>>>>> REPLACE".into()),
            file_crc: None,
            edits: None,
        })
        .await;
    assert!(result.is_err());
    let msg = result.unwrap_err().to_string();
    assert!(msg.contains("matched 2 times"));
}

#[tokio::test]
async fn test_sim_preserves_crlf_line_endings() {
    set_edit_system(EditSystem::Similarity);
    let tmp = TempFile::new("crlf2.txt");
    std::fs::write(tmp.path(), "line1\r\nline2\r\nline3\r\n").unwrap();
    let tool = edit::EditTool::new(None, None);
    tool.call(EditArgs {
        path: tmp.path().into(),
        block: Some("<<<<<<< SEARCH\nline2\n=======\nmodified\n>>>>>>> REPLACE".into()),
        file_crc: None,
        edits: None,
    })
    .await
    .unwrap();
    let raw = std::fs::read(tmp.path()).unwrap();
    assert!(
        raw.windows(2).any(|w| w == b"\r\n"),
        "CRLF should be preserved"
    );
}

// ── Hashedit (V2) tests ─────────────────────────────────────────────────

fn make_tagged_line(line_num: usize, content: &str) -> String {
    let tag = crc32_hex(content.as_bytes());
    format!("   {}|{} {}", line_num, tag, content)
}

#[tokio::test]
async fn test_hash_single_line_edit() {
    set_edit_system(EditSystem::Hashedit);
    let tmp = TempFile::new("hash_single.txt");
    let original = "use std::io;\nuse std::fs;\n\nfn main() {\n    println!(\"hi\");\n}\n";
    std::fs::write(tmp.path(), original).unwrap();
    let file_crc = crc32_hex(original.as_bytes());

    let tool = edit::EditTool::new(None, None);
    let tagged = make_tagged_line(4, "fn main() {");
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: None,
            file_crc: Some(file_crc),
            edits: Some(vec![EditOp {
                line: Some(tagged),
                lines: None,
                text: "fn run() {".into(),
            }]),
        })
        .await
        .unwrap();

    let content = std::fs::read_to_string(tmp.path()).unwrap();
    assert!(
        content.contains("fn run() {"),
        "expected 'fn run() {{', got: {content}"
    );
    assert!(!content.contains("fn main() {"));
    assert!(result.contains("Applied 1 edit(s)"));
}

#[tokio::test]
async fn test_hash_range_edit() {
    set_edit_system(EditSystem::Hashedit);
    let tmp = TempFile::new("hash_range.txt");
    let original = "line1\nline2\nline3\nline4\nline5\n";
    std::fs::write(tmp.path(), original).unwrap();
    let file_crc = crc32_hex(original.as_bytes());

    let tool = edit::EditTool::new(None, None);
    let l2 = make_tagged_line(2, "line2");
    let l3 = make_tagged_line(3, "line3");
    let l4 = make_tagged_line(4, "line4");
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: None,
            file_crc: Some(file_crc),
            edits: Some(vec![EditOp {
                line: None,
                lines: Some(format!("{}\n{}\n{}", l2, l3, l4)),
                text: "CHANGED_A\nCHANGED_B".into(),
            }]),
        })
        .await
        .unwrap();

    let content = std::fs::read_to_string(tmp.path()).unwrap();
    assert_eq!(content, "line1\nCHANGED_A\nCHANGED_B\nline5\n");
    assert!(result.contains("Applied 1 edit(s)"));
}

#[tokio::test]
async fn test_hash_delete_via_empty_text() {
    set_edit_system(EditSystem::Hashedit);
    let tmp = TempFile::new("hash_delete.txt");
    let original = "keep me\nremove me\nkeep me too\n";
    std::fs::write(tmp.path(), original).unwrap();
    let file_crc = crc32_hex(original.as_bytes());

    let tool = edit::EditTool::new(None, None);
    let tagged = make_tagged_line(2, "remove me");
    tool.call(EditArgs {
        path: tmp.path().into(),
        block: None,
        file_crc: Some(file_crc),
        edits: Some(vec![EditOp {
            line: Some(tagged),
            lines: None,
            text: String::new(),
        }]),
    })
    .await
    .unwrap();

    let content = std::fs::read_to_string(tmp.path()).unwrap();
    assert_eq!(content, "keep me\n\nkeep me too\n");
}

#[tokio::test]
async fn test_hash_file_crc_mismatch() {
    set_edit_system(EditSystem::Hashedit);
    let tmp = TempFile::new("hash_badcrc.txt");
    std::fs::write(tmp.path(), "hello world\n").unwrap();

    let tool = edit::EditTool::new(None, None);
    let tagged = make_tagged_line(1, "hello world");
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: None,
            file_crc: Some("deadbeef".into()),
            edits: Some(vec![EditOp {
                line: Some(tagged),
                lines: None,
                text: "bye".into(),
            }]),
        })
        .await;
    assert!(result.is_err());
    let msg = result.unwrap_err().to_string();
    assert!(msg.contains("CRC mismatch"));
}

#[tokio::test]
async fn test_hash_tag_mismatch() {
    set_edit_system(EditSystem::Hashedit);
    let tmp = TempFile::new("hash_badtag.txt");
    let original = "hello world\n";
    std::fs::write(tmp.path(), original).unwrap();
    let file_crc = crc32_hex(original.as_bytes());

    let tool = edit::EditTool::new(None, None);
    // Tag is for "different content" not for "hello world"
    let bad_tag = crc32_hex(b"different content");
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: None,
            file_crc: Some(file_crc),
            edits: Some(vec![EditOp {
                line: Some(format!("   1|{} hello world", bad_tag)),
                lines: None,
                text: "bye".into(),
            }]),
        })
        .await;
    assert!(result.is_err());
    let msg = result.unwrap_err().to_string();
    assert!(msg.contains("Tag mismatch"));
}

#[tokio::test]
async fn test_hash_invalid_tag_format() {
    set_edit_system(EditSystem::Hashedit);
    let tmp = TempFile::new("hash_badfmt.txt");
    let original = "hello world\n";
    std::fs::write(tmp.path(), original).unwrap();
    let file_crc = crc32_hex(original.as_bytes());

    let tool = edit::EditTool::new(None, None);
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: None,
            file_crc: Some(file_crc),
            edits: Some(vec![EditOp {
                line: Some("not a valid tagged line".into()),
                lines: None,
                text: "bye".into(),
            }]),
        })
        .await;
    assert!(result.is_err());
    let msg = result.unwrap_err().to_string();
    assert!(msg.contains("invalid tagged line"));
}

#[tokio::test]
async fn test_hash_crlf_preserved() {
    set_edit_system(EditSystem::Hashedit);
    let tmp = TempFile::new("hash_crlf.txt");
    let original = "line1\r\nline2\r\nline3\r\n";
    std::fs::write(tmp.path(), original).unwrap();
    // CRC must be computed on LF-normalized content, same as edit tool normalizes
    let normalized = original.replace("\r\n", "\n");
    let file_crc = crc32_hex(normalized.as_bytes());

    let tool = edit::EditTool::new(None, None);
    let tagged = make_tagged_line(2, "line2");
    tool.call(EditArgs {
        path: tmp.path().into(),
        block: None,
        file_crc: Some(file_crc),
        edits: Some(vec![EditOp {
            line: Some(tagged),
            lines: None,
            text: "modified".into(),
        }]),
    })
    .await
    .unwrap();

    let raw = std::fs::read(tmp.path()).unwrap();
    assert!(
        raw.windows(2).any(|w| w == b"\r\n"),
        "CRLF should be preserved"
    );
}

#[tokio::test]
async fn test_hash_multi_edit_atomic() {
    set_edit_system(EditSystem::Hashedit);
    let tmp = TempFile::new("hash_multi.txt");
    let original = "aaa\nbbb\nccc\nddd\n";
    std::fs::write(tmp.path(), original).unwrap();
    let file_crc = crc32_hex(original.as_bytes());

    let tool = edit::EditTool::new(None, None);
    let l1 = make_tagged_line(1, "aaa");
    let l4 = make_tagged_line(4, "ddd");
    let result = tool
        .call(EditArgs {
            path: tmp.path().into(),
            block: None,
            file_crc: Some(file_crc),
            edits: Some(vec![
                EditOp {
                    line: Some(l1),
                    lines: None,
                    text: "AAA".into(),
                },
                EditOp {
                    line: Some(l4),
                    lines: None,
                    text: "DDD".into(),
                },
            ]),
        })
        .await
        .unwrap();

    let content = std::fs::read_to_string(tmp.path()).unwrap();
    assert_eq!(content, "AAA\nbbb\nccc\nDDD\n");
    assert!(result.contains("Applied 2 edit(s)"));
}