-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormatAttributeTests.cs
More file actions
478 lines (389 loc) · 15.1 KB
/
Copy pathFormatAttributeTests.cs
File metadata and controls
478 lines (389 loc) · 15.1 KB
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
// ReSharper disable PartialTypeWithSinglePart
public partial class FormatAttributeTests
{
static string SourcePath([CallerFilePath] string path = "") => path;
static string ScenarioPath(string scenarioName) =>
Path.Combine(
ProjectFiles.ProjectDirectory,
"Scenarios",
scenarioName);
#region HtmlAttribute
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
sealed class HtmlAttribute : Attribute;
#endregion
#region MarkdownAttribute
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
sealed class MarkdownAttribute : Attribute;
#endregion
#region MarkdownFieldModel
[ParchmentBindable]
public partial record MarkdownFieldDoc
{
public required string Title;
[Markdown]
public required string Body;
}
#endregion
#region HtmlModel
[ParchmentBindable]
public partial class HtmlDoc
{
public required string Title;
[Html]
public required string Body;
}
#endregion
#region MarkdownModel
[ParchmentBindable]
public partial class MarkdownDoc
{
public required string Title;
[Markdown]
public required string Body;
}
#endregion
#region StringSyntaxHtmlModel
[ParchmentBindable]
public partial class StringSyntaxHtmlDoc
{
public required string Title;
[StringSyntax("html")]
public required string Body;
}
#endregion
#region StringSyntaxMarkdownModel
public class StringSyntaxMarkdownDoc
{
public required string Title;
[StringSyntax("markdown")]
public required string Body;
}
#endregion
[ParchmentBindable]
public partial class TwoHtmlBlockDoc
{
[Html]
public required string A { get; init; }
[Html]
public required string B { get; init; }
}
[Test]
public async Task RenderHtml()
{
#region HtmlUsage
var templatePath = Path.Combine(ScenarioPath("html-property"), "input.docx");
var store = new TemplateStore();
store.RegisterDocxTemplate<HtmlDoc>(templatePath);
var model = new HtmlDoc
{
Title = "Report",
Body = "<p>Hello <b>world</b></p><p>Second para</p>"
};
using var stream = new MemoryStream();
await store.Render(model, stream);
#endregion
var settings = new VerifySettings();
settings.UseDirectory(ScenarioPath("html-property"));
settings.UseFileName("output");
stream.Position = 0;
await Verify(stream, "docx", settings);
}
[Test]
public async Task RenderMarkdown()
{
#region MarkdownUsage
var templatePath = Path.Combine(ScenarioPath("markdown-property"), "input.docx");
var store = new TemplateStore();
store.RegisterDocxTemplate<MarkdownDoc>(templatePath);
var model = new MarkdownDoc
{
Title = "Report",
Body = "# Heading\n\nSome **bold** text."
};
using var stream = new MemoryStream();
await store.Render(model, stream);
#endregion
var settings = new VerifySettings();
settings.UseDirectory(ScenarioPath("markdown-property"));
settings.UseFileName("output");
stream.Position = 0;
await Verify(stream, "docx", settings);
}
[Test]
public async Task MarkdownOnFieldRendersAsMarkdown()
{
// Regression: `[Markdown]` on a public field (e.g. record with `public required string X;`
// and no `{ get; init; }`) must be detected by the reflection FormatMap walker — not just
// properties. Without this, the value would be inserted as plain text and bare URLs /
// mailto: prefixes would not autolink.
using var template = DocxTemplateBuilder.Build("{{ Body }}");
var store = new TemplateStore();
store.RegisterDocxTemplate<MarkdownFieldDoc>(template);
var model = new MarkdownFieldDoc
{
Title = "T",
Body = "Contact (mailto:user@example.com) please."
};
using var stream = new MemoryStream();
await store.Render(model, stream);
stream.Position = 0;
using var doc = WordprocessingDocument.Open(stream, false);
var main = doc.MainDocumentPart!;
var hyperlinkRels = main.HyperlinkRelationships.ToList();
await Assert.That(hyperlinkRels.Count).IsEqualTo(1);
await Assert.That(hyperlinkRels[0].Uri.ToString()).IsEqualTo("mailto:user@example.com");
await Assert.That(main.Document!.Body!.Descendants<Hyperlink>().Count()).IsEqualTo(1);
}
[Test]
public async Task RenderMarkdownWithNestedHtml()
{
#region MarkdownWithHtmlUsage
var templatePath = Path.Combine(ScenarioPath("markdown-with-html"), "input.docx");
var store = new TemplateStore();
store.RegisterDocxTemplate<MarkdownDoc>(templatePath);
var model = new MarkdownDoc
{
Title = "Report",
Body = """
# Heading
Some **bold** markdown with an <em>inline HTML</em> tag.
<div>
<p>This is an <strong>HTML block</strong> nested inside markdown.</p>
</div>
Back to *markdown* after the HTML block.
"""
};
using var stream = new MemoryStream();
await store.Render(model, stream);
#endregion
var settings = new VerifySettings();
settings.UseDirectory(ScenarioPath("markdown-with-html"));
settings.UseFileName("output");
stream.Position = 0;
await Verify(stream, "docx", settings);
}
[Test]
public async Task StringSyntaxHtmlIsEquivalentToHtmlAttribute()
{
using var template = DocxTemplateBuilder.Build("{{ Body }}");
var store = new TemplateStore();
store.RegisterDocxTemplate<StringSyntaxHtmlDoc>(template);
var model = new StringSyntaxHtmlDoc
{
Title = "T",
Body = "<p>via <i>StringSyntax</i></p>"
};
using var stream = new MemoryStream();
await store.Render(model, stream);
stream.Position = 0;
await Verify(stream, "docx");
}
[Test]
public async Task NonSoloHtml_InlineContent_SplicesIntoHostParagraph()
{
// Inline-only HTML in a non-solo token — the produced single paragraph is unwrapped and
// its runs are spliced into the host paragraph, preserving the surrounding "Prefix " text.
using var template = DocxTemplateBuilder.Build("Prefix {{ Body }} suffix");
var store = new TemplateStore();
store.RegisterDocxTemplate<HtmlDoc>(template);
var model = new HtmlDoc
{
Title = "T",
Body = "<b>bold</b> and <i>italic</i>"
};
using var stream = new MemoryStream();
await store.Render(model, stream);
stream.Position = 0;
await Verify(stream, "docx");
}
[Test]
public async Task NonSoloHtml_BlockContent_SplitsHostParagraph()
{
// Block-level HTML (multiple `<p>`s) in a non-solo token — the host paragraph is split:
// "Prefix " becomes its own paragraph, the produced `<p>`s slot in between, and " suffix"
// becomes another paragraph after.
using var template = DocxTemplateBuilder.Build("Prefix {{ Body }} suffix");
var store = new TemplateStore();
store.RegisterDocxTemplate<HtmlDoc>(template);
var model = new HtmlDoc
{
Title = "T",
Body = "<p>First</p><p>Second</p>"
};
using var stream = new MemoryStream();
await store.Render(model, stream);
stream.Position = 0;
await Verify(stream, "docx");
}
[Test]
public async Task MarkdownWithNestedHtml_RendersInlineAndBlockHtmlAsRealFormatting()
{
// Inline HTML tags (<em>, <strong>, ...) push/pop RunProperties via HtmlInlineRenderer so
// the enclosed text picks up Italic/Bold. Block HTML dispatches through OpenXmlHtml so
// <strong> inside a <div> becomes a real Bold run. Neither set of tags survives as
// literal text in the rendered docx.
using var template = DocxTemplateBuilder.Build("{{ Body }}");
var store = new TemplateStore();
store.RegisterDocxTemplate<MarkdownDoc>(template);
var model = new MarkdownDoc
{
Title = "T",
Body = """
Some **bold** with an <em>inline italic</em> tag.
<div><p>Block <strong>HTML</strong> inside markdown.</p></div>
Tail.
"""
};
using var stream = new MemoryStream();
await store.Render(model, stream);
stream.Position = 0;
using var doc = WordprocessingDocument.Open(stream, false);
var body = doc.MainDocumentPart!.Document!.Body!;
var paragraphTexts = body.Elements<Paragraph>()
.Select(p => p.InnerText)
.Where(t => t.Length > 0)
.ToList();
await Assert.That(paragraphTexts).Contains("Some bold with an inline italic tag.");
await Assert.That(paragraphTexts).Contains("Block HTML inside markdown.");
await Assert.That(paragraphTexts).Contains("Tail.");
var bodyText = body.InnerText;
await Assert.That(bodyText).DoesNotContain("<em>");
await Assert.That(bodyText).DoesNotContain("</em>");
await Assert.That(bodyText).DoesNotContain("<strong>");
await Assert.That(bodyText).DoesNotContain("</strong>");
var bolds = body.Descendants<Run>()
.Where(r => r.RunProperties?.Bold is not null)
.Select(r => r.InnerText)
.ToList();
await Assert.That(bolds).Contains("bold");
await Assert.That(bolds).Contains("HTML");
var italics = body.Descendants<Run>()
.Where(r => r.RunProperties?.Italic is not null)
.Select(r => r.InnerText)
.ToList();
await Assert.That(italics).Contains("inline italic");
}
[Test]
public async Task NonSoloMarkdown_InlineContent_SplicesIntoHostParagraph()
{
using var template = DocxTemplateBuilder.Build("Note: {{ Body }} (end)");
var store = new TemplateStore();
store.RegisterDocxTemplate<MarkdownDoc>(template);
var model = new MarkdownDoc
{
Title = "T",
Body = "**bold** and *italic*"
};
using var stream = new MemoryStream();
await store.Render(model, stream);
stream.Position = 0;
await Verify(stream, "docx");
}
[Test]
public async Task NonSoloMarkdown_BlockContent_SplitsHostParagraph()
{
using var template = DocxTemplateBuilder.Build("Section: {{ Body }} (end)");
var store = new TemplateStore();
store.RegisterDocxTemplate<MarkdownDoc>(template);
var model = new MarkdownDoc
{
Title = "T",
Body = "First paragraph.\n\nSecond paragraph."
};
using var stream = new MemoryStream();
await store.Render(model, stream);
stream.Position = 0;
await Verify(stream, "docx");
}
[Test]
public async Task FilterOnFormatTokenIsRejected()
{
using var template = DocxTemplateBuilder.Build("{{ Body | upcase }}");
var store = new TemplateStore();
var exception = await Assert.That(
() => store.RegisterDocxTemplate<HtmlDoc>(template))
.Throws<ParchmentRegistrationException>();
await Assert.That(exception!.Message).Contains("plain member-access");
}
[Test]
public async Task TwoBlockShapedFormatTokensInSameParagraph_Throws()
{
// Two non-solo block-shaped structural tokens in one paragraph would require overlapping
// host splits. ParagraphSplicer doesn't compose them — the second one must throw and
// tell the author to put one on its own line.
using var template = DocxTemplateBuilder.Build("Prefix {{ A }} between {{ B }} suffix");
var store = new TemplateStore();
store.RegisterDocxTemplate<TwoHtmlBlockDoc>(template);
var model = new TwoHtmlBlockDoc
{
A = "<p>A1</p><p>A2</p>",
B = "<p>B1</p><p>B2</p>"
};
using var stream = new MemoryStream();
var exception = await Assert.That(() => store.Render(model, stream))
.Throws<ParchmentRenderException>();
await Assert.That(exception!.Message).Contains("Move one of the tokens to its own paragraph");
}
static byte[] OnePixelPng() =>
Convert.FromBase64String(
"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNgAAIAAAUAAeImBZsAAAAASUVORk5CYII=");
[Test]
public async Task HtmlImageFromLocalFileEmbedsDrawing()
{
var pngPath = Path.Combine(Path.GetTempPath(), $"parchment-html-img-{Guid.NewGuid():N}.png");
await File.WriteAllBytesAsync(pngPath, OnePixelPng());
try
{
using var template = DocxTemplateBuilder.Build("{{ Body }}");
var store = new TemplateStore();
store.RegisterDocxTemplate<HtmlDoc>(template);
var model = new HtmlDoc
{
Title = "Report",
Body = $"<p><img src=\"{pngPath.Replace("\\", "/")}\" alt=\"pixel\" /></p>"
};
using var stream = new MemoryStream();
await store.Render(model, stream);
stream.Position = 0;
using var doc = WordprocessingDocument.Open(stream, false);
var main = doc.MainDocumentPart!;
await Assert.That(main.Document!.Body!.Descendants<Drawing>().Count()).IsEqualTo(1);
await Assert.That(main.ImageParts.Any()).IsTrue();
}
finally
{
File.Delete(pngPath);
}
}
[Test]
public async Task HtmlImageFromLocalFileBlockedByDenyPolicy()
{
var pngPath = Path.Combine(Path.GetTempPath(), $"parchment-html-img-{Guid.NewGuid():N}.png");
await File.WriteAllBytesAsync(pngPath, OnePixelPng());
try
{
using var template = DocxTemplateBuilder.Build("{{ Body }}");
var store = new TemplateStore
{
LocalImages = OpenXmlHtml.ImagePolicy.Deny()
};
store.RegisterDocxTemplate<HtmlDoc>(template);
var model = new HtmlDoc
{
Title = "Report",
Body = $"<p><img src=\"{pngPath.Replace("\\", "/")}\" alt=\"pixel\" /></p>"
};
using var stream = new MemoryStream();
await store.Render(model, stream);
stream.Position = 0;
using var doc = WordprocessingDocument.Open(stream, false);
var main = doc.MainDocumentPart!;
await Assert.That(main.Document!.Body!.Descendants<Drawing>().Any()).IsFalse();
await Assert.That(main.ImageParts.Any()).IsFalse();
}
finally
{
File.Delete(pngPath);
}
}
}