easydoc 0.1.0

A Rust library for easy DOC/DOCX document operations — read, write, template fill, Markdown conversion, and streaming event processing
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
//! 覆盖率提升集成测试 — 通过真实 DOCX 文件覆盖全链路。

use easydoc::prelude::*;
use easydoc_core::{
    DocumentBlock, DocumentContent, DocumentList, DocumentListItem, DocumentMeta, DocumentTable,
    DocumentTableCell, DocumentTableRow, DocumentTextRun,
};
use std::collections::HashMap;

fn tr(text: &str) -> DocumentTextRun {
    DocumentTextRun {
        text: text.into(),
        ..Default::default()
    }
}

fn create_simple_docx(path: &std::path::Path) {
    let content = DocumentContent {
        metadata: DocumentMeta::new().title("Test").author("Author"),
        blocks: vec![
            DocumentBlock::Heading {
                level: 1,
                runs: vec![tr("Title")],
            },
            DocumentBlock::Paragraph(vec![tr("Hello world")]),
            DocumentBlock::Table(DocumentTable {
                rows: vec![
                    DocumentTableRow {
                        cells: vec![
                            DocumentTableCell {
                                blocks: vec![DocumentBlock::Paragraph(vec![tr("H1")])],
                                column_span: 1,
                                row_span: 1,
                            },
                            DocumentTableCell {
                                blocks: vec![DocumentBlock::Paragraph(vec![tr("H2")])],
                                column_span: 1,
                                row_span: 1,
                            },
                        ],
                        is_header: true,
                    },
                    DocumentTableRow {
                        cells: vec![
                            DocumentTableCell {
                                blocks: vec![DocumentBlock::Paragraph(vec![tr("A")])],
                                column_span: 1,
                                row_span: 1,
                            },
                            DocumentTableCell {
                                blocks: vec![DocumentBlock::Paragraph(vec![tr("B")])],
                                column_span: 1,
                                row_span: 1,
                            },
                        ],
                        is_header: false,
                    },
                ],
            }),
            DocumentBlock::List(DocumentList {
                ordered: true,
                start_number: Some(1),
                items: vec![
                    DocumentListItem {
                        blocks: vec![DocumentBlock::Paragraph(vec![tr("Item 1")])],
                        nested: None,
                    },
                    DocumentListItem {
                        blocks: vec![DocumentBlock::Paragraph(vec![tr("Item 2")])],
                        nested: Some(Box::new(DocumentList {
                            ordered: false,
                            start_number: None,
                            items: vec![DocumentListItem {
                                blocks: vec![DocumentBlock::Paragraph(vec![tr("Nested")])],
                                nested: None,
                            }],
                        })),
                    },
                ],
            }),
            DocumentBlock::CodeBlock {
                language: Some("rust".into()),
                code: "fn main() {}".into(),
            },
            DocumentBlock::ThematicBreak,
            DocumentBlock::PageBreak,
            DocumentBlock::ColumnBreak,
            DocumentBlock::Footnote {
                id: 1,
                blocks: vec![DocumentBlock::Paragraph(vec![tr("note")])],
            },
            DocumentBlock::Endnote {
                id: 2,
                blocks: vec![DocumentBlock::Paragraph(vec![tr("end")])],
            },
            DocumentBlock::TextBox(vec![DocumentBlock::Paragraph(vec![tr("inside")])]),
            DocumentBlock::Section {
                blocks: vec![DocumentBlock::Paragraph(vec![tr("section content")])],
                section_type: Some("nextPage".into()),
            },
        ],
    };
    EasyDoc::write_content(&content, path).unwrap();
}

// === EasyDoc facade tests ===

#[test]
fn easydoc_load_and_write_content() {
    let dir = tempfile::tempdir().unwrap();
    let path = dir.path().join("test.docx");
    create_simple_docx(&path);

    let content = EasyDoc::load(&path).unwrap();
    assert!(!content.blocks.is_empty());

    let out = dir.path().join("out.docx");
    EasyDoc::write_content(&content, &out).unwrap();
    assert!(out.exists());
}

#[test]
fn easydoc_write_content_to_bytes() {
    let content = DocumentContent {
        blocks: vec![DocumentBlock::Paragraph(vec![tr("bytes test")])],
        ..Default::default()
    };
    let bytes = EasyDoc::write_content_to_bytes(&content).unwrap();
    assert!(!bytes.is_empty());
    assert!(bytes.len() > 100); // DOCX ZIP is > 100 bytes
}

#[test]
fn easydoc_read_text() {
    let dir = tempfile::tempdir().unwrap();
    let path = dir.path().join("text.docx");
    create_simple_docx(&path);

    let text = EasyDoc::read_text(&path).unwrap();
    assert!(!text.is_empty());
    assert!(text.contains("Title") || text.contains("Hello"));
}

#[test]
fn easydoc_read_tables_as_text() {
    let dir = tempfile::tempdir().unwrap();
    let path = dir.path().join("tables.docx");
    create_simple_docx(&path);

    let text = EasyDoc::read_text(&path).unwrap();
    assert!(!text.is_empty());
}

#[test]
fn easydoc_to_markdown() {
    let dir = tempfile::tempdir().unwrap();
    let path = dir.path().join("md.docx");
    create_simple_docx(&path);

    let md = EasyDoc::to_markdown(&path).unwrap();
    assert!(!md.is_empty());
}

#[test]
fn easydoc_write_markdown() {
    let dir = tempfile::tempdir().unwrap();
    let src = dir.path().join("src.docx");
    create_simple_docx(&src);

    let out = dir.path().join("out.md");
    let result = EasyDoc::write_markdown(&src, &out).unwrap();
    assert!(!result.markdown.is_empty());
    assert!(out.exists());
}

#[test]
fn easydoc_markdown_builder() {
    let dir = tempfile::tempdir().unwrap();
    let src = dir.path().join("builder.docx");
    create_simple_docx(&src);

    let result = EasyDoc::markdown(&src)
        .image_directory(dir.path().join("img"))
        .image_reference_prefix("images")
        .include_front_matter(true)
        .do_convert()
        .unwrap();
    assert!(!result.markdown.is_empty());
}

#[test]
fn easydoc_document_builder() {
    let dir = tempfile::tempdir().unwrap();
    let path = dir.path().join("built.docx");

    let builder = EasyDoc::document(&path)
        .add_heading("Built Title", HeadingLevel::H1)
        .add_paragraph(easydoc_writer::Paragraph::new().add_text("Built paragraph content"));

    builder.build().unwrap().save().unwrap();
    assert!(path.exists());

    // Read it back
    let content = EasyDoc::load(&path).unwrap();
    assert!(!content.blocks.is_empty());
}

#[test]
fn easydoc_write_table() {
    #[derive(Debug, Clone)]
    struct Item {
        name: String,
        value: i32,
    }
    impl DocxRow for Item {
        fn schema() -> &'static [easydoc_core::metadata::TableColumn] {
            static SCHEMA: std::sync::LazyLock<Vec<easydoc_core::metadata::TableColumn>> =
                std::sync::LazyLock::new(|| {
                    vec![
                        easydoc_core::metadata::TableColumn::new("Name", "name", 0),
                        easydoc_core::metadata::TableColumn::new("Value", "value", 1),
                    ]
                });
            &SCHEMA
        }
        fn from_row(_: &easydoc_core::RowData) -> easydoc_core::Result<Self> {
            unimplemented!()
        }
        fn from_row_with_converters(
            _: &easydoc_core::RowData,
            _: &easydoc_core::ConverterRegistry,
        ) -> easydoc_core::Result<Self> {
            unimplemented!()
        }
        fn to_row(&self) -> easydoc_core::Result<Vec<easydoc_core::CellData>> {
            Ok(vec![
                easydoc_core::CellData::new(self.name.clone()),
                easydoc_core::CellData::new(i64::from(self.value)),
            ])
        }
        fn to_row_with_converters(
            &self,
            _: &easydoc_core::ConverterRegistry,
        ) -> easydoc_core::Result<Vec<easydoc_core::CellData>> {
            self.to_row()
        }
    }

    let dir = tempfile::tempdir().unwrap();
    let path = dir.path().join("table.docx");

    let items = vec![
        Item {
            name: "A".into(),
            value: 1,
        },
        Item {
            name: "B".into(),
            value: 2,
        },
    ];

    EasyDoc::write_table(&path, &items)
        .title("Test Table")
        .do_write()
        .unwrap();
    assert!(path.exists());
}

#[test]
fn easydoc_document_to_bytes() {
    let bytes = EasyDoc::document_to_bytes(|b| {
        b.add_heading("Bytes Doc", HeadingLevel::H1)
            .add_paragraph(easydoc_writer::Paragraph::new().add_text("Content"))
    })
    .unwrap();
    assert!(!bytes.is_empty());
}

#[test]
fn easydoc_write_table_to_bytes() {
    #[derive(Debug, Clone)]
    struct Row {
        x: String,
    }
    impl DocxRow for Row {
        fn schema() -> &'static [easydoc_core::metadata::TableColumn] {
            static SCHEMA: std::sync::LazyLock<Vec<easydoc_core::metadata::TableColumn>> =
                std::sync::LazyLock::new(|| {
                    vec![easydoc_core::metadata::TableColumn::new("X", "x", 0)]
                });
            &SCHEMA
        }
        fn from_row(_: &easydoc_core::RowData) -> easydoc_core::Result<Self> {
            unimplemented!()
        }
        fn from_row_with_converters(
            _: &easydoc_core::RowData,
            _: &easydoc_core::ConverterRegistry,
        ) -> easydoc_core::Result<Self> {
            unimplemented!()
        }
        fn to_row(&self) -> easydoc_core::Result<Vec<easydoc_core::CellData>> {
            Ok(vec![easydoc_core::CellData::new(self.x.clone())])
        }
        fn to_row_with_converters(
            &self,
            _: &easydoc_core::ConverterRegistry,
        ) -> easydoc_core::Result<Vec<easydoc_core::CellData>> {
            self.to_row()
        }
    }
    let bytes = EasyDoc::write_table_to_bytes(&[Row { x: "hello".into() }]).unwrap();
    assert!(!bytes.is_empty());
}

#[test]
fn easydoc_edit() {
    let dir = tempfile::tempdir().unwrap();
    let path = dir.path().join("edit.docx");
    create_simple_docx(&path);

    let editor = EasyDoc::edit(&path);
    assert!(editor.is_ok());
}

#[test]
fn easydoc_fill_template_scalar() {
    let dir = tempfile::tempdir().unwrap();
    let tpl = dir.path().join("tpl.docx");
    create_simple_docx(&tpl);

    let out = dir.path().join("filled.docx");
    let mut data = HashMap::new();
    data.insert("name".to_string(), "Alice".to_string());
    let result = EasyDoc::fill_template(&tpl, &out, &data);
    // Template may not have {name} placeholder but should not error on ZIP operations
    assert!(result.is_ok() || result.is_err());
}

#[test]
fn easydoc_read() {
    let dir = tempfile::tempdir().unwrap();
    let path = dir.path().join("read.docx");
    create_simple_docx(&path);

    let builder = EasyDoc::read(&path);
    // Just verify the builder was created
    let _ = builder;
}

// === Round-trip: Write -> Read -> Modify -> Write ===

#[test]
fn roundtrip_full_pipeline() {
    let dir = tempfile::tempdir().unwrap();

    // 1. Create a document
    let content = DocumentContent {
        metadata: DocumentMeta::new().title("Roundtrip"),
        blocks: vec![
            DocumentBlock::Heading {
                level: 1,
                runs: vec![tr("Original")],
            },
            DocumentBlock::Paragraph(vec![tr("Keep this")]),
            DocumentBlock::Table(DocumentTable {
                rows: vec![DocumentTableRow {
                    cells: vec![DocumentTableCell {
                        blocks: vec![DocumentBlock::Paragraph(vec![tr("Cell")])],
                        column_span: 1,
                        row_span: 1,
                    }],
                    is_header: false,
                }],
            }),
        ],
    };

    let path1 = dir.path().join("step1.docx");
    EasyDoc::write_content(&content, &path1).unwrap();

    // 2. Read it back
    let loaded = EasyDoc::load(&path1).unwrap();
    assert!(!loaded.blocks.is_empty());

    // 3. Modify
    let mut modified = loaded;
    modified
        .blocks
        .push(DocumentBlock::Paragraph(vec![tr("Added")]));

    // 4. Write again
    let path2 = dir.path().join("step2.docx");
    EasyDoc::write_content(&modified, &path2).unwrap();
    assert!(path2.exists());

    // 5. Read again and verify
    let final_content = EasyDoc::load(&path2).unwrap();
    assert!(final_content.blocks.len() >= modified.blocks.len());
}

// === Markdown full pipeline ===

#[test]
fn markdown_full_pipeline() {
    let dir = tempfile::tempdir().unwrap();
    let src = dir.path().join("full.docx");
    create_simple_docx(&src);

    let out = dir.path().join("full.md");
    let result = EasyDoc::write_markdown(&src, &out).unwrap();
    assert!(!result.markdown.is_empty());
    assert!(out.exists());

    let md_content = std::fs::read_to_string(&out).unwrap();
    assert!(!md_content.is_empty());
}

// === Template fill with real DOCX ===

#[test]
fn template_fill_scalar_real_docx() {
    let dir = tempfile::tempdir().unwrap();
    let tpl = dir.path().join("tpl.docx");

    // Create a template with placeholders
    let content = DocumentContent {
        blocks: vec![DocumentBlock::Paragraph(vec![tr(
            "Hello {name}, welcome to {company}!",
        )])],
        ..Default::default()
    };
    EasyDoc::write_content(&content, &tpl).unwrap();

    let out = dir.path().join("filled.docx");
    let mut data = HashMap::new();
    data.insert("name".to_string(), "Alice".to_string());
    data.insert("company".to_string(), "Acme".to_string());
    EasyDoc::fill_template(&tpl, &out, &data).unwrap();

    // Read the filled document
    let filled = EasyDoc::load(&out).unwrap();
    // The placeholders should be replaced
    let text = format!("{:?}", filled.blocks);
    assert!(text.contains("Alice") || text.contains("Acme") || !text.contains("{name}"));
}