forked from CodeEditApp/CodeEditTextView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTypesetterTests.swift
More file actions
290 lines (252 loc) · 11 KB
/
TypesetterTests.swift
File metadata and controls
290 lines (252 loc) · 11 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
import XCTest
@testable import CodeEditTextView
final class DemoTextAttachment: TextAttachment {
var width: CGFloat
var isSelected: Bool = false
init(width: CGFloat = 100) {
self.width = width
}
func draw(in context: CGContext, rect: NSRect) {
context.saveGState()
context.setFillColor(NSColor.red.cgColor)
context.fill(rect)
context.restoreGState()
}
}
class TypesetterTests: XCTestCase {
// NOTE: makes chars that are ~6.18 pts wide
let attributes: [NSAttributedString.Key: Any] = [.font: NSFont.monospacedSystemFont(ofSize: 10, weight: .regular)]
var typesetter: Typesetter!
override func setUp() {
typesetter = Typesetter()
continueAfterFailure = false
}
func test_LineFeedBreak() {
typesetter.typeset(
NSAttributedString(string: "testline\n"),
documentRange: NSRange(location: 0, length: 9),
displayData: TextLine.DisplayData(
maxWidth: .infinity,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .word
),
markedRanges: nil
)
XCTAssertEqual(typesetter.lineFragments.count, 1, "Typesetter typeset incorrect number of lines.")
typesetter.typeset(
NSAttributedString(string: "testline\n"),
documentRange: NSRange(location: 0, length: 9),
displayData: TextLine.DisplayData(
maxWidth: .infinity,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .character
),
markedRanges: nil
)
XCTAssertEqual(typesetter.lineFragments.count, 1, "Typesetter typeset incorrect number of lines.")
}
func test_carriageReturnBreak() {
typesetter.typeset(
NSAttributedString(string: "testline\r"),
documentRange: NSRange(location: 0, length: 9),
displayData: TextLine.DisplayData(
maxWidth: .infinity,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .word
),
markedRanges: nil
)
XCTAssertEqual(typesetter.lineFragments.count, 1, "Typesetter typeset incorrect number of lines.")
typesetter.typeset(
NSAttributedString(string: "testline\r"),
documentRange: NSRange(location: 0, length: 9),
displayData: TextLine.DisplayData(
maxWidth: .infinity,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .character
),
markedRanges: nil
)
XCTAssertEqual(typesetter.lineFragments.count, 1, "Typesetter typeset incorrect number of lines.")
}
func test_carriageReturnLineFeedBreak() {
typesetter.typeset(
NSAttributedString(string: "testline\r\n"),
documentRange: NSRange(location: 0, length: 10),
displayData: TextLine.DisplayData(
maxWidth: .infinity,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .word
),
markedRanges: nil
)
XCTAssertEqual(typesetter.lineFragments.count, 1, "Typesetter typeset incorrect number of lines.")
typesetter.typeset(
NSAttributedString(string: "testline\r\n"),
documentRange: NSRange(location: 0, length: 10),
displayData: TextLine.DisplayData(
maxWidth: .infinity,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .character
),
markedRanges: nil
)
XCTAssertEqual(typesetter.lineFragments.count, 1, "Typesetter typeset incorrect number of lines.")
}
func test_wrapLinesReturnsValidFragmentRanges() throws {
// Ensure that when wrapping, each wrapped line fragment has correct ranges.
typesetter.typeset(
NSAttributedString(string: String(repeating: "A", count: 1000), attributes: attributes),
documentRange: NSRange(location: 0, length: 1000),
displayData: TextLine.DisplayData(
maxWidth: 150,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .character
),
markedRanges: nil,
attachments: []
)
let firstFragment = try XCTUnwrap(typesetter.lineFragments.first)
for fragment in typesetter.lineFragments {
// The end of the fragment shouldn't extend beyond the valid document range
XCTAssertLessThanOrEqual(fragment.range.max, 1000)
// Because we're breaking on characters, and filling each line with the same char
// Each fragment should be as long or shorter than the first fragment.
XCTAssertLessThanOrEqual(fragment.range.length, firstFragment.range.length)
}
}
// MARK: - Attachments
func test_layoutSingleFragmentWithAttachment() throws {
let attachment = DemoTextAttachment()
typesetter.typeset(
NSAttributedString(string: "ABC"),
documentRange: NSRange(location: 0, length: 3),
displayData: TextLine.DisplayData(
maxWidth: .infinity,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .character
),
markedRanges: nil,
attachments: [AnyTextAttachment(range: NSRange(location: 1, length: 1), attachment: attachment)]
)
XCTAssertEqual(typesetter.lineFragments.count, 1)
let fragment = try XCTUnwrap(typesetter.lineFragments.first?.data)
XCTAssertEqual(fragment.contents.count, 3)
XCTAssertTrue(fragment.contents[0].isText)
XCTAssertFalse(fragment.contents[1].isText)
XCTAssertTrue(fragment.contents[2].isText)
XCTAssertEqual(
fragment.contents[1],
.init(
data: .attachment(attachment: .init(range: NSRange(location: 1, length: 1), attachment: attachment)),
width: attachment.width
)
)
}
func test_layoutSingleFragmentEntirelyAttachment() throws {
let attachment = DemoTextAttachment()
typesetter.typeset(
NSAttributedString(string: "ABC"),
documentRange: NSRange(location: 0, length: 3),
displayData: TextLine.DisplayData(
maxWidth: .infinity,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .character
),
markedRanges: nil,
attachments: [AnyTextAttachment(range: NSRange(location: 0, length: 3), attachment: attachment)]
)
XCTAssertEqual(typesetter.lineFragments.count, 1)
let fragment = try XCTUnwrap(typesetter.lineFragments.first?.data)
XCTAssertEqual(fragment.contents.count, 1)
XCTAssertFalse(fragment.contents[0].isText)
XCTAssertEqual(
fragment.contents[0],
.init(
data: .attachment(attachment: .init(range: NSRange(location: 0, length: 3), attachment: attachment)),
width: attachment.width
)
)
}
func test_wrapLinesWithAttachment() throws {
let attachment = DemoTextAttachment(width: 130)
// Total should be slightly > 160px, breaking off 2 and 3
typesetter.typeset(
NSAttributedString(string: "ABC123", attributes: attributes),
documentRange: NSRange(location: 0, length: 6),
displayData: TextLine.DisplayData(
maxWidth: 150,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .character
),
markedRanges: nil,
attachments: [.init(range: NSRange(location: 1, length: 1), attachment: attachment)]
)
XCTAssertEqual(typesetter.lineFragments.count, 2)
var fragment = try XCTUnwrap(typesetter.lineFragments.first?.data)
XCTAssertEqual(fragment.contents.count, 3) // First fragment includes the attachment and characters after
XCTAssertTrue(fragment.contents[0].isText)
XCTAssertFalse(fragment.contents[1].isText)
XCTAssertTrue(fragment.contents[2].isText)
fragment = try XCTUnwrap(typesetter.lineFragments.getLine(atIndex: 1)?.data)
XCTAssertEqual(fragment.contents.count, 1) // Second fragment is only text
XCTAssertTrue(fragment.contents[0].isText)
}
func test_wrapLinesWithWideAttachment() throws {
// Attachment takes up more than the available room.
// Expected result: attachment is on it's own line fragment with no other text.
let attachment = DemoTextAttachment(width: 150)
typesetter.typeset(
NSAttributedString(string: "ABC123", attributes: attributes),
documentRange: NSRange(location: 0, length: 6),
displayData: TextLine.DisplayData(
maxWidth: 150,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .character
),
markedRanges: nil,
attachments: [.init(range: NSRange(location: 1, length: 1), attachment: attachment)]
)
XCTAssertEqual(typesetter.lineFragments.count, 3)
var fragment = try XCTUnwrap(typesetter.lineFragments.first?.data)
XCTAssertEqual(fragment.documentRange, NSRange(location: 0, length: 1))
XCTAssertEqual(fragment.contents.count, 1)
XCTAssertTrue(fragment.contents[0].isText)
fragment = try XCTUnwrap(typesetter.lineFragments.getLine(atIndex: 1)?.data)
XCTAssertEqual(fragment.documentRange, NSRange(location: 1, length: 1))
XCTAssertEqual(fragment.contents.count, 1)
XCTAssertFalse(fragment.contents[0].isText)
fragment = try XCTUnwrap(typesetter.lineFragments.getLine(atIndex: 2)?.data)
XCTAssertEqual(fragment.documentRange, NSRange(location: 2, length: 4))
XCTAssertEqual(fragment.contents.count, 1)
XCTAssertTrue(fragment.contents[0].isText)
}
func test_wrapLinesDoesNotBreakOnLastNewline() throws {
let attachment = DemoTextAttachment(width: 50)
let string = NSAttributedString(string: "AB CD\n12 34\nWX YZ\n", attributes: attributes)
typesetter.typeset(
string,
documentRange: NSRange(location: 0, length: 15),
displayData: TextLine.DisplayData(
maxWidth: .infinity,
lineHeightMultiplier: 1.0,
estimatedLineHeight: 20.0,
breakStrategy: .word
),
markedRanges: nil,
attachments: [.init(range: NSRange(start: 4, end: 15), attachment: attachment)]
)
XCTAssertEqual(typesetter.lineFragments.count, 1)
}
}