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
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
use indoc::indoc;
use liwe::model::config::{Configuration, LibraryOptions, MarkdownOptions};
use std::fs::{create_dir_all, write};
use std::process::Command;
use tempfile::TempDir;

#[test]
fn test_squash_basic_functionality() {
    let temp_dir = setup_test_workspace_with_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["test"]);
    assert!(output.status.success(), "Squash command should succeed");

    let stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");

    assert!(!stdout.trim().is_empty(), "Should produce some output");
    assert!(
        stdout.contains("#") || stdout.contains("*") || stdout.contains("-"),
        "Should contain markdown formatting"
    );
}

#[test]
fn test_squash_with_depth_limit() {
    let temp_dir = setup_test_workspace_with_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["test", "--depth", "1"]);
    assert!(
        output.status.success(),
        "Squash command with depth should succeed"
    );

    let stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");
    assert!(
        !stdout.trim().is_empty(),
        "Should produce output with depth limit"
    );
}

#[test]
fn test_squash_with_higher_depth() {
    let temp_dir = setup_test_workspace_with_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["test", "--depth", "5"]);
    assert!(
        output.status.success(),
        "Squash command with higher depth should succeed"
    );

    let stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");
    assert!(
        !stdout.trim().is_empty(),
        "Should produce output with higher depth"
    );
}

#[test]
fn test_squash_default_depth() {
    let temp_dir = setup_test_workspace_with_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["test"]);
    assert!(output.status.success(), "Squash command should succeed");

    let stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");

    assert!(
        !stdout.trim().is_empty(),
        "Should produce output with default depth"
    );
}

#[test]
fn test_squash_nonexistent_key() {
    let temp_dir = setup_test_workspace_with_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["nonexistent"]);
    assert!(
        !output.status.success(),
        "Squash should fail with nonexistent key"
    );

    let stderr = String::from_utf8(output.stderr).expect("Valid UTF-8 stderr");
    assert_eq!(stderr, "Error: Document 'nonexistent' not found\n");
}

#[test]
fn test_squash_complex_workspace() {
    let temp_dir = setup_complex_test_workspace();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["document1"]);
    assert!(output.status.success(), "Squash command should succeed");

    let stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");

    assert!(
        !stdout.trim().is_empty(),
        "Should produce output from complex workspace"
    );
}

#[test]
fn test_squash_with_links() {
    let temp_dir = setup_test_workspace_with_links();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["main"]);
    assert!(output.status.success(), "Squash command should succeed");

    let stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");

    assert!(
        !stdout.trim().is_empty(),
        "Should produce output for linked documents"
    );
}

#[test]
fn test_squash_preserves_markdown_structure() {
    let temp_dir = setup_test_workspace_with_structured_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["structured"]);
    assert!(output.status.success(), "Squash command should succeed");

    let stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");

    let has_headers = stdout.contains('#');
    let has_lists = stdout.contains('-') || stdout.contains('*') || stdout.contains("1.");

    assert!(
        has_headers || has_lists || !stdout.trim().is_empty(),
        "Should preserve some markdown structure or content"
    );
}

#[test]
fn test_squash_with_verbose_flag() {
    let temp_dir = setup_test_workspace_with_content();
    let temp_path = temp_dir.path();

    let output = Command::new(crate::common::get_iwe_binary_path())
        .arg("squash")
        .arg("test")
        .arg("--verbose")
        .arg("1")
        .current_dir(temp_path)
        .output()
        .expect("Failed to execute iwe squash");

    assert!(
        output.status.success(),
        "Squash with verbose flag should succeed"
    );

    let stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");
    assert!(!stdout.trim().is_empty(), "Should produce output");
}

#[test]
fn test_squash_zero_depth() {
    let temp_dir = setup_test_workspace_with_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["test", "--depth", "0"]);
    assert!(
        output.status.success(),
        "Squash command with depth 0 should succeed"
    );

    let _stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");
}

#[test]
fn test_squash_key_with_spaces() {
    let temp_dir = setup_test_workspace_with_spaced_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["spaced key"]);
    assert!(
        output.status.success(),
        "Squash should handle keys with spaces"
    );

    let _stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");
}

#[test]
fn test_squash_empty_workspace() {
    let temp_dir = setup_empty_workspace();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["anything"]);
    assert!(
        !output.status.success(),
        "Squash should fail with empty workspace and nonexistent key"
    );

    let stderr = String::from_utf8(output.stderr).expect("Valid UTF-8 stderr");
    assert!(
        !stderr.is_empty(),
        "Should have error output for empty workspace"
    );
}

#[test]
fn test_squash_without_config() {
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    let temp_path = temp_dir.path();

    let markdown_content = indoc! {"
        # Test Document

        This is a test document.

        ## Section 1

        Some content here.
    "};
    write(temp_path.join("test.md"), markdown_content).expect("Should write test file");

    let output = run_squash_command(temp_path, &["test"]);
    assert!(
        output.status.success(),
        "Squash should work without explicit config"
    );
}

#[test]
fn test_squash_stderr_empty() {
    let temp_dir = setup_test_workspace_with_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["test"]);
    assert!(output.status.success(), "Squash command should succeed");

    let stderr = String::from_utf8(output.stderr).expect("Valid UTF-8 stderr");

    assert!(
        stderr.is_empty() || (!stderr.contains("ERROR") && !stderr.contains("error:")),
        "Squash stderr should not contain errors: {}",
        stderr
    );
}

#[test]
fn test_squash_output_is_markdown() {
    let temp_dir = setup_test_workspace_with_content();
    let temp_path = temp_dir.path();

    let output = run_squash_command(temp_path, &["test"]);
    assert!(output.status.success(), "Squash command should succeed");

    let stdout = String::from_utf8(output.stdout).expect("Valid UTF-8 output");

    if !stdout.trim().is_empty() {
        let has_markdown_elements = stdout.contains('#')
            || stdout.contains('*')
            || stdout.contains('-')
            || stdout.contains('[')
            || stdout.lines().any(|line| !line.trim().is_empty());

        assert!(
            has_markdown_elements,
            "Output should contain markdown-like elements or be empty"
        );
    }
}

fn setup_test_workspace_with_content() -> TempDir {
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    let temp_path = temp_dir.path();

    setup_iwe_config(temp_path);

    let markdown_content = indoc! {"
        # Test Document

        This is a test document with some content.

        ## Section 1

        Some content here.

        ### Subsection

        More content.

        ## Section 2

        Additional content.
    "};

    write(temp_path.join("test.md"), markdown_content).expect("Should write test file");

    temp_dir
}

fn setup_complex_test_workspace() -> TempDir {
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    let temp_path = temp_dir.path();

    setup_iwe_config(temp_path);

    let file1_content = indoc! {"
        # Document 1

        Content for document 1.

        ## Section A

        Content A.

        ### Subsection A1

        Nested content.
    "};

    let file2_content = indoc! {"
        # Document 2

        Content for document 2.

        ## Section B

        Content B.

        ## Section C

        Content C.
    "};

    let nested_content = indoc! {"
        # Nested Document

        Nested content here.

        ## Nested Section

        More nested content.
    "};

    write(temp_path.join("document1.md"), file1_content).expect("Should write file1");
    write(temp_path.join("document2.md"), file2_content).expect("Should write file2");

    create_dir_all(temp_path.join("subdirectory")).expect("Should create subdirectory");
    write(
        temp_path.join("subdirectory").join("document_nested.md"),
        nested_content,
    )
    .expect("Should write nested file");

    temp_dir
}

fn setup_test_workspace_with_links() -> TempDir {
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    let temp_path = temp_dir.path();

    setup_iwe_config(temp_path);

    let main_content = indoc! {"
        # Main Document

        This document links to [target](target.md).

        ## Section

        More content with links.

        ### Subsection

        Content with links.
    "};

    let target_content = indoc! {"
        # Target Document

        This is the target of the link.

        ## Target Section

        Target content.
    "};

    write(temp_path.join("main.md"), main_content).expect("Should write main file");
    write(temp_path.join("target.md"), target_content).expect("Should write target file");

    temp_dir
}

fn setup_test_workspace_with_structured_content() -> TempDir {
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    let temp_path = temp_dir.path();

    setup_iwe_config(temp_path);

    let structured_content = indoc! {"
        # Structured Document

        This document has various markdown elements.

        ## Lists

        Unordered list:
        - Item 1
        - Item 2
          - Nested item

        Ordered list:
        1. First item
        2. Second item
           1. Nested ordered item

        ## Code

        ```rust
        fn hello() {
            println!(\"Hello, world!\");
        }
        ```

        ## Links and References

        Link to [external site](https://example.com).

        Reference to another document: [Document 1](document1).

        ## Tables

        | Column 1 | Column 2 |
        |----------|----------|
        | Value 1  | Value 2  |
    "};

    write(temp_path.join("structured.md"), structured_content)
        .expect("Should write structured file");

    temp_dir
}

fn setup_test_workspace_with_spaced_content() -> TempDir {
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    let temp_path = temp_dir.path();

    setup_iwe_config(temp_path);

    let content = indoc! {"
        # Spaced Key Document

        This document has a title with spaces.

        ## Section

        Content here.
    "};

    write(temp_path.join("spaced key.md"), content).expect("Should write spaced file");

    temp_dir
}

fn setup_empty_workspace() -> TempDir {
    let temp_dir = TempDir::new().expect("Failed to create temp directory");
    let temp_path = temp_dir.path();

    setup_iwe_config(temp_path);

    temp_dir
}

fn setup_iwe_config(temp_path: &std::path::Path) {
    create_dir_all(temp_path.join(".iwe")).expect("Failed to create .iwe directory");

    let config = Configuration {
        library: LibraryOptions {
            path: "".to_string(),
            ..Default::default()
        },
        markdown: MarkdownOptions {
            refs_extension: "".to_string(),
            ..Default::default()
        },
        ..Default::default()
    };

    let config_content = toml::to_string(&config).expect("Failed to serialize config to TOML");

    write(temp_path.join(".iwe").join("config.toml"), config_content)
        .expect("Should write config file");
}

fn run_squash_command(work_dir: &std::path::Path, args: &[&str]) -> std::process::Output {
    let mut command = Command::new(crate::common::get_iwe_binary_path());
    command.arg("squash").current_dir(work_dir);

    for arg in args {
        command.arg(arg);
    }

    command.output().expect("Failed to execute iwe squash")
}