-
Notifications
You must be signed in to change notification settings - Fork 346
/
Copy pathMarkdownTableTests.swift
192 lines (161 loc) · 5.4 KB
/
MarkdownTableTests.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
#if os(iOS)
import SnapshotTesting
import SwiftUI
import XCTest
import MarkdownUI
final class MarkdownTableTests: XCTestCase {
private let layout = SwiftUISnapshotLayout.device(config: .iPhone8)
private let perceptualPrecision: Float = 0.98
func testTable() throws {
guard #available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *) else {
throw XCTSkip("Table rendering is not available")
}
let view = Markdown {
#"""
A table with some padding:
| Command | Description |
| --- | --- |
| git status | List all new or modified files |
| git diff | Show file differences that haven't been staged |
"""#
}
.padding()
.border(Color.accentColor)
assertSnapshot(
of: view, as: .image(perceptualPrecision: perceptualPrecision, layout: layout)
)
}
func testTableAlignment() throws {
guard #available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *) else {
throw XCTSkip("Table rendering is not available")
}
let view = Markdown {
#"""
A table with some padding:
| Default | Leading | Center | Trailing |
| --- | :--- | :---: | ---: |
| git status | git status | git status | git status |
| git diff | git diff | git diff | git diff |
"""#
}
.padding()
.border(Color.accentColor)
assertSnapshot(
of: view, as: .image(perceptualPrecision: perceptualPrecision, layout: layout)
)
}
func testTableWithImages() throws {
guard #available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *) else {
throw XCTSkip("Table rendering is not available")
}
let view = Markdown {
#"""
A table with some padding:
| First Header | Second Header |
| --- | --- |
| ![](https://example.com/picsum/237-100x150) | ![](https://example.com/picsum/237-125x75) |
| ![](https://example.com/picsum/237-500x300) | ![](https://example.com/picsum/237-100x150) |
― Photo by André Spieker
"""#
}
.padding()
.border(Color.accentColor)
.markdownImageProvider(AssetImageProvider(bundle: .module))
assertSnapshot(
of: view, as: .image(perceptualPrecision: perceptualPrecision, layout: layout)
)
}
func testEmptyTable() throws {
guard #available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *) else {
throw XCTSkip("Table rendering is not available")
}
let view = Markdown {
#"""
A table with some padding:
| First Header | Second Header |
| ------------- | ------------- |
"""#
}
.padding()
.border(Color.accentColor)
assertSnapshot(
of: view, as: .image(perceptualPrecision: perceptualPrecision, layout: layout)
)
}
func testTableSize() throws {
guard #available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *) else {
throw XCTSkip("Table rendering is not available")
}
let view = Markdown {
#"""
A table with some padding:
| First Header | Second Header |
| ------------- | ------------- |
| Content Cell | Content Cell |
| Content Cell | Content Cell |
"""#
}
.padding()
.border(Color.accentColor)
assertSnapshot(
of: view, as: .image(perceptualPrecision: perceptualPrecision, layout: layout)
)
}
func testTableBackground() throws {
guard #available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *) else {
throw XCTSkip("Table rendering is not available")
}
let view = Markdown {
#"""
A table with some padding:
| Command | Description |
| --- | --- |
| git status | List all new or modified files |
| git diff | Show file differences that haven't been staged |
"""#
}
.padding()
.border(Color.accentColor)
.markdownBlockStyle(\.table) { configuration in
configuration.label
.markdownMargin(top: .zero, bottom: .em(1))
.markdownTableBackgroundStyle(
.alternatingRows(Color.clear, Color(.secondarySystemBackground), header: .mint)
)
}
assertSnapshot(
of: view, as: .image(perceptualPrecision: perceptualPrecision, layout: layout)
)
}
func testTableBorder() throws {
guard #available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, *) else {
throw XCTSkip("Table rendering is not available")
}
let view = Markdown {
#"""
A table with some padding:
| Command | Description |
| --- | --- |
| git status | List all new or modified files |
| git diff | Show file differences that haven't been staged |
"""#
}
.padding()
.border(Color.accentColor)
.markdownBlockStyle(\.table) { configuration in
configuration.label
.markdownMargin(top: .zero, bottom: .em(1))
.markdownTableBorderStyle(
.init(
.outsideBorders,
color: Color.mint,
strokeStyle: .init(lineWidth: 2, lineJoin: .round, dash: [4])
)
)
}
assertSnapshot(
of: view, as: .image(perceptualPrecision: perceptualPrecision, layout: layout)
)
}
}
#endif