kelora 1.5.0

A command-line log analysis tool with embedded Rhai scripting
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
mod common;
use common::*;
use std::fs;
use tempfile::TempDir;

#[test]
fn test_truncate_file_without_allow_fs_writes_flag() {
    // Test that truncate file operations fail without --allow-fs-writes
    let temp_dir = TempDir::new().unwrap();
    let output_file = temp_dir.path().join("output.txt");
    let output_path = output_file.to_str().unwrap();

    let input = r#"{"message": "test"}"#;

    let (_stdout, stderr, _exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--exec",
            &format!(r#"truncate_file("{}");"#, output_path),
        ],
        input,
    );

    // Should warn about needing --allow-fs-writes
    assert!(
        stderr.contains("--allow-fs-writes") || stderr.contains("enable --allow-fs-writes"),
        "Should show warning about needing --allow-fs-writes flag, got: {}",
        stderr
    );

    // File should not be created
    assert!(
        !output_file.exists(),
        "File should not be created without --allow-fs-writes"
    );
}

#[test]
fn test_truncate_and_append_with_allow_fs_writes_flag() {
    // Test that file operations succeed with --allow-fs-writes
    // Use truncate_file + append_file to simulate write behavior
    let temp_dir = TempDir::new().unwrap();
    let output_file = temp_dir.path().join("output.txt");
    let output_path = output_file.to_str().unwrap();

    let input = r#"{"message": "test"}"#;

    let (_stdout, stderr, exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--allow-fs-writes",
            "--exec",
            &format!(
                r#"truncate_file("{}"); append_file("{}", "test data");"#,
                output_path, output_path
            ),
        ],
        input,
    );

    assert_eq!(
        exit_code, 0,
        "Should succeed with --allow-fs-writes flag, stderr: {}",
        stderr
    );

    // File should be created with correct content
    assert!(output_file.exists(), "File should be created");
    let content = fs::read_to_string(&output_file).unwrap();
    // append_file adds a newline after the text
    assert_eq!(
        content, "test data\n",
        "File should contain written data with newline"
    );
}

#[test]
fn test_file_append_without_allow_fs_writes_flag() {
    // Test that file append operations fail without --allow-fs-writes
    let temp_dir = TempDir::new().unwrap();
    let output_file = temp_dir.path().join("append.txt");
    let output_path = output_file.to_str().unwrap();

    let input = r#"{"message": "test"}"#;

    let (_stdout, stderr, _exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--exec",
            &format!(r#"append_file("{}", "appended data");"#, output_path),
        ],
        input,
    );

    // Should warn about needing --allow-fs-writes
    assert!(
        stderr.contains("--allow-fs-writes") || stderr.contains("enable --allow-fs-writes"),
        "Should show warning about needing --allow-fs-writes flag, got: {}",
        stderr
    );
}

#[test]
fn test_file_append_with_allow_fs_writes_flag() {
    // Test that file append operations succeed with --allow-fs-writes
    let temp_dir = TempDir::new().unwrap();
    let output_file = temp_dir.path().join("append.txt");
    let output_path = output_file.to_str().unwrap();

    // Create initial file
    fs::write(&output_file, "initial data\n").unwrap();

    let input = r#"{"message": "test1"}
{"message": "test2"}"#;

    let (_stdout, stderr, exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--allow-fs-writes",
            "--exec",
            &format!(r#"append_file("{}", e.message + "\n");"#, output_path),
        ],
        input,
    );

    assert_eq!(
        exit_code, 0,
        "Should succeed with --allow-fs-writes flag, stderr: {}",
        stderr
    );

    // File should contain initial data plus appended data
    let content = fs::read_to_string(&output_file).unwrap();
    assert!(
        content.contains("initial data"),
        "Should preserve initial data"
    );
    assert!(content.contains("test1"), "Should append first message");
    assert!(content.contains("test2"), "Should append second message");
}

#[test]
fn test_file_append_with_strict_mode() {
    // Test --allow-fs-writes with --strict mode on filesystem errors
    let invalid_path = "/invalid/path/that/does/not/exist/file.txt";

    let input = r#"{"message": "test"}"#;

    let (_stdout, stderr, exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--allow-fs-writes",
            "--strict",
            "--exec",
            &format!(r#"append_file("{}", "data");"#, invalid_path),
        ],
        input,
    );

    // Should fail with strict mode on invalid path
    assert_ne!(
        exit_code, 0,
        "Should fail with --strict on filesystem error"
    );
    assert!(
        stderr.to_lowercase().contains("error") || stderr.to_lowercase().contains("failed"),
        "Should show filesystem error"
    );
}

#[test]
fn test_file_append_without_strict_mode() {
    // Test that filesystem errors are tolerated without --strict
    let invalid_path = "/invalid/path/that/does/not/exist/file.txt";

    let input = r#"{"message": "test"}"#;

    let (_stdout, _stderr, _exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--allow-fs-writes",
            "--exec",
            &format!(r#"append_file("{}", "data");"#, invalid_path),
        ],
        input,
    );

    // Without strict mode, might succeed (error is logged but not fatal)
    // Or might still fail - both are acceptable
    // The key is that --strict makes it definitively fail
}

#[test]
fn test_multiple_file_appends() {
    // Test multiple file append operations in single run
    let temp_dir = TempDir::new().unwrap();
    let file1 = temp_dir.path().join("file1.txt");
    let file2 = temp_dir.path().join("file2.txt");

    let input = r#"{"id": 1, "message": "first"}
{"id": 2, "message": "second"}"#;

    let exec_script = format!(
        r#"if e.id == 1 {{ append_file("{}", e.message); }} else {{ append_file("{}", e.message); }}"#,
        file1.to_str().unwrap(),
        file2.to_str().unwrap()
    );

    let (_stdout, stderr, exit_code) = run_kelora_with_input(
        &["-f", "json", "--allow-fs-writes", "--exec", &exec_script],
        input,
    );

    assert_eq!(
        exit_code, 0,
        "Should append to multiple files, stderr: {}",
        stderr
    );

    // Both files should exist with correct content
    assert!(file1.exists(), "First file should exist");
    assert!(file2.exists(), "Second file should exist");

    let content1 = fs::read_to_string(&file1).unwrap();
    let content2 = fs::read_to_string(&file2).unwrap();

    // append_file adds newlines
    assert_eq!(
        content1, "first\n",
        "First file should have correct content"
    );
    assert_eq!(
        content2, "second\n",
        "Second file should have correct content"
    );
}

#[test]
fn test_file_write_with_filtering() {
    // Test file writes combined with filtering
    let temp_dir = TempDir::new().unwrap();
    let output_file = temp_dir.path().join("filtered.txt");
    let output_path = output_file.to_str().unwrap();

    let input = r#"{"level": "info", "message": "info msg"}
{"level": "error", "message": "error msg"}
{"level": "info", "message": "another info"}
{"level": "error", "message": "another error"}"#;

    let exec_script = format!(
        r#"if e.level == "error" {{ append_file("{}", e.message + "\n"); }}"#,
        output_path
    );

    let (_stdout, stderr, exit_code) = run_kelora_with_input(
        &["-f", "json", "--allow-fs-writes", "--exec", &exec_script],
        input,
    );

    assert_eq!(
        exit_code, 0,
        "Should succeed with filtering, stderr: {}",
        stderr
    );

    // File should contain only error messages
    let content = fs::read_to_string(&output_file).unwrap();
    assert!(content.contains("error msg"), "Should contain first error");
    assert!(
        content.contains("another error"),
        "Should contain second error"
    );
    assert!(
        !content.contains("info msg"),
        "Should not contain info messages"
    );
}

#[test]
fn test_file_operations_with_parallel_mode() {
    // Test file operations in parallel mode (should work or have clear error)
    let temp_dir = TempDir::new().unwrap();
    let output_file = temp_dir.path().join("parallel_output.txt");
    let output_path = output_file.to_str().unwrap();

    let input: String = (1..=10)
        .map(|i| format!(r#"{{"id": {}}}"#, i))
        .collect::<Vec<_>>()
        .join("\n");

    let exec_script = format!(
        r#"append_file("{}", e.id.to_string() + "\n");"#,
        output_path
    );

    let (_stdout, stderr, exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--allow-fs-writes",
            "--parallel",
            "--batch-size",
            "2",
            "--exec",
            &exec_script,
        ],
        &input,
    );

    // Should either succeed or fail with clear message
    // Parallel file writes might have race conditions
    if exit_code == 0 {
        // If it succeeds, file should exist
        assert!(
            output_file.exists(),
            "Output file should exist if operation succeeded"
        );
        let content = fs::read_to_string(&output_file).unwrap();
        // Should have all IDs (order may vary due to parallel execution)
        for i in 1..=10 {
            assert!(content.contains(&i.to_string()), "Should contain ID {}", i);
        }
    } else {
        // If it fails, should have informative error
        assert!(
            stderr.to_lowercase().contains("error")
                || stderr.to_lowercase().contains("parallel")
                || stderr.to_lowercase().contains("concurrent"),
            "Should explain why file operations failed in parallel mode"
        );
    }
}

#[test]
fn test_truncate_file_overwrites_existing() {
    // Test that truncate_file overwrites existing files
    let temp_dir = TempDir::new().unwrap();
    let output_file = temp_dir.path().join("overwrite.txt");
    let output_path = output_file.to_str().unwrap();

    // Create initial file
    fs::write(&output_file, "old content").unwrap();

    let input = r#"{"message": "new content"}"#;

    let (_stdout, _stderr, exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--allow-fs-writes",
            "--exec",
            &format!(
                r#"truncate_file("{}"); append_file("{}", e.message);"#,
                output_path, output_path
            ),
        ],
        input,
    );

    assert_eq!(exit_code, 0, "Should overwrite successfully");

    // File should contain only new content
    let content = fs::read_to_string(&output_file).unwrap();
    assert_eq!(content, "new content\n", "Should overwrite old content");
    assert!(
        !content.contains("old content"),
        "Old content should be gone"
    );
}

#[test]
fn test_read_file_allowed_without_flag() {
    // Test that read_file works without --allow-fs-writes (reads are always allowed)
    // Note: read_file can only be called during --begin phase
    let temp_dir = TempDir::new().unwrap();
    let input_file = temp_dir.path().join("input.txt");
    fs::write(&input_file, "file content here\nline 2\n").unwrap();

    let input = r#"{"id": 1}"#;

    let begin_script = format!(
        r#"let lines = read_lines("{}"); print("Read " + lines.len() + " lines");"#,
        input_file.to_str().unwrap()
    );

    let (stdout, stderr, exit_code) =
        run_kelora_with_input(&["-f", "json", "--begin", &begin_script], input);

    assert_eq!(
        exit_code, 0,
        "Read operations should work without --allow-fs-writes flag, stderr: {}",
        stderr
    );

    // Output should show that read_lines succeeded
    assert!(
        stdout.contains("Read 2 lines") || stdout.contains("Read 3 lines"),
        "Should read file without --allow-fs-writes, stdout: {}",
        stdout
    );
}

#[test]
fn test_file_operations_with_special_characters() {
    // Test file operations with filenames containing special characters
    let temp_dir = TempDir::new().unwrap();
    let output_file = temp_dir.path().join("file with spaces.txt");
    let output_path = output_file.to_str().unwrap();

    let input = r#"{"message": "test"}"#;

    let (_stdout, stderr, exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--allow-fs-writes",
            "--exec",
            &format!(r#"append_file("{}", "content");"#, output_path),
        ],
        input,
    );

    assert_eq!(
        exit_code, 0,
        "Should handle filenames with spaces, stderr: {}",
        stderr
    );

    assert!(
        output_file.exists(),
        "File with spaces in name should be created"
    );
    let content = fs::read_to_string(&output_file).unwrap();
    assert_eq!(content, "content\n", "Should write correct content");
}

#[test]
fn test_truncate_file_creates_empty_file() {
    // Test that truncate_file creates empty file
    let temp_dir = TempDir::new().unwrap();
    let output_file = temp_dir.path().join("empty.txt");
    let output_path = output_file.to_str().unwrap();

    let input = r#"{"message": "test"}"#;

    let (_stdout, stderr, exit_code) = run_kelora_with_input(
        &[
            "-f",
            "json",
            "--allow-fs-writes",
            "--exec",
            &format!(r#"truncate_file("{}");"#, output_path),
        ],
        input,
    );

    assert_eq!(
        exit_code, 0,
        "Should create empty file successfully, stderr: {}",
        stderr
    );

    assert!(output_file.exists(), "Empty file should be created");
    let content = fs::read_to_string(&output_file).unwrap();
    assert!(content.is_empty(), "File should be empty");
}