-
Notifications
You must be signed in to change notification settings - Fork 346
/
Copy pathMarkdownTests.swift
346 lines (271 loc) · 9.12 KB
/
MarkdownTests.swift
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
#if os(iOS)
import SnapshotTesting
import SwiftUI
import XCTest
import MarkdownUI
final class MarkdownTests: XCTestCase {
private let layout = SwiftUISnapshotLayout.device(config: .iPhone8)
override func setUpWithError() throws {
try XCTSkipIf(UIDevice.current.userInterfaceIdiom == .pad, "Skipping on Mac Catalyst")
}
func testBlockquote() {
let view = Markdown {
#"""
If you'd like to quote someone, use the > character before the line.
Blockquotes can be nested, and can also contain other formatting.
> “Well, art is art, isn't it? Still,
> on the other hand, water is water!
> And east is east and west is west and
> if you take cranberries and stew them
> like applesauce they taste much more
> like prunes than rhubarb does. Now,
> uh... now you tell me what you
> know.”
> > “I sent the club a wire stating,
> > **PLEASE ACCEPT MY RESIGNATION. I DON'T
> > WANT TO BELONG TO ANY CLUB THAT WILL ACCEPT ME AS A MEMBER**.”
> > > “Outside of a dog, a book is man's best friend. Inside of a
> > > dog it's too dark to read.”
― Groucho Marx
"""#
}
.border(Color.accentColor)
.padding()
assertSnapshot(of: view, as: .image(layout: layout))
}
func testCodeBlock() {
let view = Markdown {
#"""
Use a group to collect multiple views into a single instance,
without affecting the layout of those views. After creating a
group, any modifier you apply to the group affects all of that
group’s members.
```swift
Group {
Text("SwiftUI")
Text("Combine")
Text("Swift System")
}
.font(.headline)
```
― From Apple Developer Documentation
"""#
}
.border(Color.accentColor)
.padding()
assertSnapshot(of: view, as: .image(layout: layout))
}
func testVerbatimHTML() {
let view = Markdown {
#"""
A `Markdown` view ignores HTML blocks and renders
them as verbatim text.
<p>
You can use Markdown syntax instead.
</p>
The same happens with <strong>HTML inlines</strong>.
"""#
}
.border(Color.accentColor)
.padding()
assertSnapshot(of: view, as: .image(layout: layout))
}
func testOpenCodeBlock() {
let view = Markdown {
#"""
An empty code block without a closing fence:
```swift
"""#
}
.border(Color.accentColor)
.padding()
assertSnapshot(of: view, as: .image(layout: layout))
}
func testParagraphs() {
let view = Markdown {
#"""
The sky above the port was the color of television, tuned to a dead channel.
It was a bright cold day in April, and the clocks were striking thirteen.
The sky above the port was the color of television, tuned to a dead channel.
It was a bright cold day in April, and the clocks were striking thirteen.
"""#
}
.border(Color.accentColor)
.padding()
assertSnapshot(of: view, as: .image(layout: layout))
}
func testCenteredParagraphs() {
let view = Markdown {
#"""
The sky above the port was the color of television, tuned to a dead channel.
It was a bright cold day in April, and the clocks were striking thirteen.
The sky above the port was the color of television, tuned to a dead channel.
It was a bright cold day in April, and the clocks were striking thirteen.
"""#
}
.border(Color.accentColor)
.padding()
.multilineTextAlignment(.center)
assertSnapshot(of: view, as: .image(layout: layout))
}
func testTrailingParagraphs() {
let view = Markdown {
#"""
The sky above the port was the color of television, tuned to a dead channel.
It was a bright cold day in April, and the clocks were striking thirteen.
The sky above the port was the color of television, tuned to a dead channel.
It was a bright cold day in April, and the clocks were striking thirteen.
"""#
}
.border(Color.accentColor)
.padding()
.multilineTextAlignment(.trailing)
assertSnapshot(of: view, as: .image(layout: layout))
}
func testSpacing() {
let view = Markdown {
#"""
The sky above the port was the color of television, tuned to a dead channel.
It was a bright cold day in April, and the clocks were striking thirteen.
The sky above the port was the color of television, tuned to a dead channel.
It was a bright cold day in April, and the clocks were striking thirteen.
"""#
}
.border(Color.accentColor)
.padding()
.markdownBlockStyle(\.paragraph) { configuration in
configuration.label
.markdownMargin(bottom: .zero)
}
assertSnapshot(of: view, as: .image(layout: layout))
}
func testHeadings() {
let view = Markdown {
#"""
# Heading 1
The sky above the port was the color of television, tuned to a dead channel.
## Heading 2
The sky above the port was the color of television, tuned to a dead channel.
### Heading 3
The sky above the port was the color of television, tuned to a dead channel.
#### Heading 4
The sky above the port was the color of television, tuned to a dead channel.
##### Heading 5
The sky above the port was the color of television, tuned to a dead channel.
###### Heading 6
The sky above the port was the color of television, tuned to a dead channel.
"""#
}
.border(Color.accentColor)
.padding()
assertSnapshot(of: view, as: .image(layout: layout))
}
func testThematicBreak() {
let view = Markdown {
#"""
# SwiftUI
Declare the user interface and behavior for your app
on every platform.
---
## Overview
SwiftUI provides views, controls, and layout structures
for declaring your app’s user interface.
---
― From Apple Developer Documentation
"""#
}
.border(Color.accentColor)
.padding()
assertSnapshot(of: view, as: .image(layout: layout))
}
func testInlines() {
let view = Markdown {
#"""
**This is bold text**
*This text is italicized*
~~This was mistaken text~~
**This text is _extremely_ important**
***All this text is important***
MarkdownUI is fully compliant with the [CommonMark Spec](https://spec.commonmark.org/current/).
Visit https://github.com.
Use `git status` to list all new or modified files that haven't yet been committed.
You can insert a line break<br>
using the HTML `<br>`
<br> tag.
"""#
}
.border(Color.accentColor)
.padding()
assertSnapshot(of: view, as: .image(layout: layout))
}
func testInlinesStyling() {
let view = Markdown {
#"""
**This is bold text**
*This text is italicized*
~~This was mistaken text~~
**This text is _extremely_ important**
**_All this text is important_**
MarkdownUI is fully compliant with the [CommonMark Spec](https://spec.commonmark.org/current/).
Visit https://github.com.
Use `git status` to list all new or modified files that haven't yet been committed.
"""#
}
.border(Color.accentColor)
.padding()
.markdownTextStyle(\.code) {
FontFamilyVariant(.monospaced)
BackgroundColor(.yellow)
}
.markdownTextStyle(\.strong) {
FontWeight(.heavy)
}
.markdownTextStyle(\.emphasis) {
FontStyle(.italic)
UnderlineStyle(.single)
}
.markdownTextStyle(\.strikethrough) {
ForegroundColor(.primary)
BackgroundColor(.primary)
}
.markdownTextStyle(\.link) {
UnderlineStyle(.init(pattern: .dot))
}
assertSnapshot(of: view, as: .image(layout: layout))
}
func testSoftBreakModeSpace() {
let view = Markdown {
#"""
# This is a heading
Item 1
Item 2
Item 3
Item 4
I would **very much** like to write
A long paragraph that spans _multiple lines_
But should ~~render differently~~ based on
soft break mode
"""#
}
.markdownSoftBreakMode(.space)
assertSnapshot(of: view, as: .image(layout: layout))
}
func testSoftBreakModeLineBreak() {
let view = Markdown {
#"""
# This is a heading
Item 1
Item 2
Item 3
Item 4
I would **very much** like to write
A long paragraph that spans _multiple lines_
But should ~~render differently~~ based on
soft break mode
"""#
}
.markdownSoftBreakMode(.lineBreak)
assertSnapshot(of: view, as: .image(layout: layout))
}
}
#endif