-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathTestDocxDocumentRenderer.cs
218 lines (170 loc) · 6.52 KB
/
TestDocxDocumentRenderer.cs
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
using System.IO;
using System.Linq;
using System.Reflection;
using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml.Validation;
using DocumentFormat.OpenXml.Wordprocessing;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using NUnit.Framework;
using Serilog;
#pragma warning disable CS8618
namespace Markdig.Renderers.Docx.Tests;
public class TestDocxDocumentRenderer
{
private OpenXmlValidator _validator;
private readonly ILoggerFactory _factory = LoggerFactory.Create(builder =>
builder.AddSerilog()
);
private ILogger<TestDocxDocumentRenderer> _log;
private DocumentStyles _styles;
private string _inputDirectory;
private string _outputDirectory;
private ILogger<DocxDocumentRenderer> _rendererLogger;
[OneTimeSetUp]
public void OneTimeSetup()
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Verbose()
.WriteTo.Console()
.CreateLogger();
_log = _factory.CreateLogger<TestDocxDocumentRenderer>();
_styles = new();
_validator = new OpenXmlValidator(FileFormatVersions.Office2016);
_inputDirectory = Path.GetFullPath("Resources/");
_outputDirectory = Path.GetFullPath("output/");
if (Directory.Exists(_outputDirectory))
{
Directory.Delete(_outputDirectory, true);
}
Directory.CreateDirectory(_outputDirectory);
this._rendererLogger = _factory.CreateLogger<DocxDocumentRenderer>();
}
[Test]
public void ShouldConvertCodeWithoutErrors()
{
LoadAndValidate("code.md");
}
[Test]
public void ShouldConvertEmphasisWithoutErrors()
{
LoadAndValidate("emphasis.md");
}
[Test]
public void ShouldConvertHeadingsWithoutErrors()
{
LoadAndValidate("headings.md");
}
[Test]
public void ShouldConvertMultiLevelListsWithoutErrors()
{
LoadAndValidate("list-multi.md");
}
[Test]
public void ShouldConvertOneLevelListsWithoutErrors()
{
LoadAndValidate("list-single.md");
}
[Test]
public void ShouldConvertHyperlinksWithoutErrors()
{
LoadAndValidate("hyperlinks.md");
}
[Test]
public void ShouldConvertQuoteWithoutErrors()
{
LoadAndValidate("quote.md");
}
[Test]
public void ShouldConvertBreakWithoutErrors()
{
LoadAndValidate("break.md");
}
[Test]
public void ShouldConvertPictureLinkWithoutErrors()
{
LoadAndValidate("picture-link.md");
}
[Test]
public void ShouldConvertStandardTemplate()
{
LoadAndValidate("standard-template.md");
}
[Test]
public void ShouldConvertSampleText()
{
LoadAndValidate("sample-text.md");
}
[Test]
public void ShouldRenderIntoUserProvidedPosition()
{
var document =
DocxTemplateHelper.LoadFromResource("Markdig.Renderers.Docx.Tests.Resources.docx.template-to-insert.docx");
var paragraph = DocxTemplateHelper.FindParagraphContainingText(document, "INSERT");
Assert.NotNull(paragraph);
var renderer = new DocxDocumentRenderer(document, _styles, _rendererLogger);
renderer.Cursor.SetAfter(paragraph);
Markdown.Convert("**Markdown Paragraph 1 - bold** text\n\nParagraph2", renderer);
paragraph!.Remove();
document.SaveAs(Path.Combine(_outputDirectory, "template-to-insert.md.docx"));
AssertValid(document);
}
[Test]
public void ShouldRenderIntoManyPositions()
{
var document =
DocxTemplateHelper.LoadFromResource("Markdig.Renderers.Docx.Tests.Resources.docx.template-to-insert-multi.docx");
var paragraph = DocxTemplateHelper.FindParagraphContainingText(document, "INSERT1");
Assert.NotNull(paragraph);
var renderer = new DocxDocumentRenderer(document, _styles, _rendererLogger);
renderer.Cursor.SetAfter(paragraph);
Markdown.Convert("**Insert 1** here", renderer);
paragraph!.Remove();
paragraph = DocxTemplateHelper.FindParagraphContainingText(document, "INSERT2");
Assert.NotNull(paragraph);
renderer.Cursor.SetAfter(paragraph);
Markdown.Convert("**Insert 2** here", renderer);
paragraph!.Remove();
document.SaveAs(Path.Combine(_outputDirectory, "template-to-insert-multi.md.docx"));
AssertValid(document);
}
[Test]
public void ShouldRenderIntoUserProvidedPositionInTable()
{
var document =
DocxTemplateHelper.LoadFromResource("Markdig.Renderers.Docx.Tests.Resources.docx.template-to-insert-table.docx");
var paragraph = DocxTemplateHelper.FindParagraphContainingText(document, "INSERT");
Assert.NotNull(paragraph);
var renderer = new DocxDocumentRenderer(document, _styles, _rendererLogger);
renderer.Cursor.SetAfter(paragraph);
Markdown.Convert("**Markdown Paragraph 1 - bold** text\n\nParagraph2", renderer);
paragraph!.Remove();
document.SaveAs(Path.Combine(_outputDirectory, "template-to-insert-table.md.docx"));
AssertValid(document);
}
private void LoadAndValidate(string fileName)
{
_log.LogInformation($"Processing {fileName}");
var markdownFilePath = Path.Combine(_inputDirectory, fileName);
Assert.True(File.Exists(markdownFilePath), $"{markdownFilePath} not found");
var outputFilePath = Path.Combine(_outputDirectory, fileName + ".docx");
var document = DocxTemplateHelper.Standard;
var renderer = new DocxDocumentRenderer(document, _styles, _rendererLogger);
var pipeline = new MarkdownPipelineBuilder().UseEmphasisExtras().Build();
Markdown.Convert(File.ReadAllText(markdownFilePath), renderer, pipeline);
document.SaveAs(outputFilePath);
AssertValid(document);
document.Close();
}
private void AssertValid(WordprocessingDocument document)
{
var validationResult = this._validator.Validate(document).ToList();
foreach (var info in validationResult)
{
_log.LogInformation($"{info.Node?.LocalName}: {info.Description}");
_log.LogInformation(info.Node?.OuterXml);
}
Assert.That(validationResult, Is.Empty);
}
}