-
Notifications
You must be signed in to change notification settings - Fork 19
/
PrettyColorsTests.swift
410 lines (345 loc) · 11.3 KB
/
PrettyColorsTests.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
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
import PrettyColors
import Foundation
import XCTest
class PrettyColorsTests: XCTestCase {
override func setUp() {
super.setUp()
}
override func tearDown() {
super.tearDown()
}
func test_basics() {
let redText: String = Color.Wrap(foreground: .red).wrap("A red piece of text.")
print(redText)
_ = ((
Color.Wrap(foreground: .yellow, style: .bold),
Color.Wrap(foreground: .green, background: .black, style: .bold, .underlined),
// 8-bit (256) color support
Color.Wrap(foreground: 114),
Color.Wrap(foreground: 114, style: .bold)
))
}
func test_problem_SingleStyleParameter() {
/*
As of `swiftlang-700.0.57.3`, the following statement errors:
«Ambiguous use of 'init(foreground:background:style:)'»
*/
// Color.Wrap(style: .bold)
_ = ((
// Workarounds:
Color.Wrap(foreground: nil as UInt8?, style: .bold),
Color.Wrap(foreground: nil as Color.Named.Color?, style: .bold),
[StyleParameter.bold] as Color.Wrap,
Color.Wrap(styles: .bold),
// Multiple
Color.Wrap(styles: .bold, .blink)
))
}
func test_problem_TypeInference() {
// As of `swiftlang-700.0.57.3`, this doesn't get type-inferred properly.
/*
Color.Wrap(
parameters: [
Color.Named(foreground: .green),
Color.EightBit(foreground: 114),
StyleParameter.bold
]
)
*/
_ = ((
// Workarounds:
Color.Wrap(
parameters: [
Color.Named(foreground: .green),
Color.EightBit(foreground: 114),
StyleParameter.bold
] as [Color.Wrap.Element]
),
Color.Wrap(
parameters: [
Color.Named(foreground: .green),
Color.EightBit(foreground: 114),
StyleParameter.bold
] as [Parameter]
),
[
Color.Named(foreground: .green),
Color.EightBit(foreground: 114),
StyleParameter.bold
] as Color.Wrap
))
}
func testImmutableFilterOrMap() {
let redBold = Color.Wrap(foreground: .red, style: .bold)
let redItalic = Color.Wrap(foreground: .red, style: .italic)
// Filter
XCTAssert(
redBold == redItalic
.filter { $0 != StyleParameter.italic }
+ [ StyleParameter.bold ]
)
// Map
XCTAssert(
// `ArrayLiteralConvertible` inferred
[] + redItalic
.map {
switch $0 as? StyleParameter {
case .some: /* replace value */ return StyleParameter.bold
case .none: /* same value */ return $0
}
}
== redBold
)
}
func testEmptyWrap() {
XCTAssert(
Color.Wrap(parameters: []).code.enable == "",
"Wrap with no parameters wrapping an empty string should return an empty SelectGraphicRendition."
)
XCTAssert(
Color.Wrap(parameters: []).wrap("") == "",
"Wrap with no parameters wrapping an empty string should return an empty string."
)
}
func testMulti() {
let multi = [
Color.EightBit(foreground: 227),
Color.Named(foreground: .green, brightness: .nonBright)
] as Color.Wrap
XCTAssert(
multi.code.enable ==
ECMA48.controlSequenceIntroducer + "38;5;227" + ";" + "32" + "m"
)
XCTAssert(
multi.code.disable ==
ECMA48.controlSequenceIntroducer + "0" + "m"
)
}
func testLetWorkflow() {
let redOnBlack = Color.Wrap(foreground: .red, background: .black)
let boldRedOnBlack: Color.Wrap = redOnBlack + [ StyleParameter.bold ] as Color.Wrap
XCTAssert(
boldRedOnBlack == Color.Wrap(foreground: .red, background: .black, style: .bold)
)
XCTAssert(
[
boldRedOnBlack,
Color.Wrap(foreground: .red, background: .black, style: .bold)
].reduce(true) {
(previous, value) in
return previous && value.parameters.reduce(true) {
(previous, value) in
// For some reason, referencing `value` avoids the
// `Expression was too complex to be solved in reasonable time`
// error for the returned expression… 😕
_ = value
return previous && (
value == Color.Named(foreground: .red) as Parameter ||
value == Color.Named(background: .black) as Parameter ||
value == StyleParameter.bold
)
}
} == true
)
}
func testAppendStyleParameter() {
let red = Color.Wrap(foreground: .red)
let _ = { (wrap: Color.Wrap) -> Void in
var formerlyRed = wrap
formerlyRed.append(StyleParameter.bold)
XCTAssert(
formerlyRed == Color.Wrap(foreground: .red, style: .bold)
)
}(red)
let _ = { (wrap: Color.Wrap) -> Void in
var formerlyRed = wrap
formerlyRed.append(style: .bold)
XCTAssert(
formerlyRed == Color.Wrap(foreground: .red, style: .bold)
)
}(red)
XCTAssert(
red + Color.Wrap(styles: .bold) == Color.Wrap(foreground: .red, style: .bold)
)
// Multiple
let _ = { (wrap: Color.Wrap) -> Void in
var formerlyRed = wrap
formerlyRed.append(StyleParameter.bold)
formerlyRed.append(StyleParameter.italic)
XCTAssert(
formerlyRed == Color.Wrap(foreground: .red, style: .bold, .italic)
)
}(red)
let _ = { (wrap: Color.Wrap) -> Void in
var formerlyRed = wrap
formerlyRed.append(style: .bold, .italic)
XCTAssert(
formerlyRed == Color.Wrap(foreground: .red, style: .bold, .italic)
)
}(red)
XCTAssert(
red + Color.Wrap(styles: .bold, .italic) == Color.Wrap(foreground: .red, style: .bold, .italic)
)
}
func testMutableAppend() {
var formerlyRed = Color.Wrap(foreground: .red)
let redBlackBackground = Color.Wrap(foreground: .red, background: .black)
formerlyRed.append( Color.Named(background: .black) )
XCTAssert(
formerlyRed == redBlackBackground
)
}
//------------------------------------------------------------------------------
// MARK: - Foreground/Background
//------------------------------------------------------------------------------
func testSetForeground() {
var formerlyRed = Color.Wrap(foreground: .red)
formerlyRed.foreground = Color.EightBit(foreground: 227) // A nice yellow
XCTAssert(
formerlyRed == Color.Wrap(foreground: 227)
)
}
func testSetForegroundToNil() {
var formerlyRed = Color.Wrap(foreground: .red)
formerlyRed.foreground = nil
XCTAssert(
formerlyRed == Color.Wrap(foreground: nil as Color.Named.Color?)
)
XCTAssert(
formerlyRed == Color.Wrap(foreground: nil as UInt8?)
)
}
func testSetForegroundToParameter() {
var formerlyRed = Color.Wrap(foreground: .red)
formerlyRed.foreground = StyleParameter.bold
XCTAssert( formerlyRed == [StyleParameter.bold] as Color.Wrap )
}
func testTransformForeground() {
var formerlyRed = Color.Wrap(foreground: .red)
_ = formerlyRed.foreground { _ in
return Color.EightBit(foreground: 227) // A nice yellow
}
XCTAssert( formerlyRed == Color.Wrap(foreground: 227) )
}
func testTransformForeground2() {
var formerlyRed = Color.Wrap(foreground: 124)
_ = formerlyRed.foreground { color in
guard var soonYellow = color as? Color.EightBit else { return color }
soonYellow.color += (227 as UInt8 - 124)
return soonYellow
}
XCTAssert( formerlyRed == Color.Wrap(foreground: 227) )
}
func testTransformForegroundWithVar() {
var formerlyRed = Color.Wrap(foreground: .red)
_ = formerlyRed.foreground { color in
if let namedColor = color as? Color.Named {
var soonYellow = namedColor
soonYellow.color = .yellow
return soonYellow
} else { return color }
}
XCTAssert( formerlyRed == Color.Wrap(foreground: .yellow) )
}
func testTransformForegroundToBright() {
var formerlyRed = Color.Wrap(foreground: .red)
_ = formerlyRed.foreground {
var clone = $0 as! Color.Named
clone.brightness.toggle()
return clone
}
let brightRed = [
Color.Named(foreground: .red, brightness: .bright)
] as Color.Wrap
XCTAssert( formerlyRed == brightRed )
}
func testComputedVariableForegroundEquality() {
XCTAssert(
Color.Named(foreground: .red) == Color.Wrap(foreground: .red).foreground! as! Color.Named
)
}
func testEightBitForegroundBackgroundDifference() {
let foreground = Color.Named(foreground: .green).code.enable
let background = Color.Named(background: .green).code.enable
let difference = zip(foreground, background)
.reduce(0 as UInt8) { sum, values in
let (foreground, background) = values
return sum + background - foreground
}
XCTAssert( difference == 10 )
}
func testNamedForegroundBackgroundDifference() {
let foreground = Color.Named(foreground: .green).code.enable
let background = Color.Named(background: .green).code.enable
let difference = zip(foreground, background)
.reduce(0 as UInt8) { sum, values in
let (foreground, background) = values
return sum + background - foreground
}
XCTAssert( difference == 10 )
}
func testNamedBrightnessDifference() {
let non·bright = Color.Named(foreground: .green).code.enable
let bright = Color.Named(foreground: .green, brightness: .bright).code.enable
let difference = zip(non·bright, bright)
.reduce(0 as UInt8) { sum, values in
let (non·bright, bright) = values
return sum + bright - non·bright
}
XCTAssert( difference == 60 )
}
//------------------------------------------------------------------------------
// MARK: - Zap
//------------------------------------------------------------------------------
func testZapAllStyleParameters() {
for wrap in [
Color.Wrap(foreground: .red),
Color.Wrap(foreground: 114)
] {
for (number, style·wrap): (UInt8, Color.Wrap) in (
(1 as UInt8 ... 55).flatMap /* more accurately, concatenate optionals */ {
guard let style = StyleParameter(rawValue: $0) else { return nil }
return ($0 as UInt8, [style] as Color.Wrap)
}
) {
let formatted·number = NSString(format: "%02d", number).appending("")
for (appended·wrap, suffix) in [
(wrap, "normal"),
// TODO: Investigate why `as (Color.Wrap, String)` before above comma
// doesn't provide enough type info for the remaining lines in the array.
(wrap + [ StyleParameter.bold ], "bold"),
(wrap + [ StyleParameter.italic ], "italic"),
(wrap + [ StyleParameter.underlined ], "underlined")
] /* type-inference fails without */ as [(Color.Wrap, String)] {
let styled·output = (appended·wrap + style·wrap).wrap("__|øat·•ªº^∆©|__")
print( "• \(styled·output) \(formatted·number) + \(suffix)" )
}
}
}
}
}
extension PrettyColorsTests {
static var allTests = [
("test_basics", test_basics),
("test_problem_SingleStyleParameter", test_problem_SingleStyleParameter),
("test_problem_TypeInference", test_problem_TypeInference),
("testImmutableFilterOrMap", testImmutableFilterOrMap),
("testEmptyWrap", testEmptyWrap),
("testMulti", testMulti),
("testLetWorkflow", testLetWorkflow),
("testAppendStyleParameter", testAppendStyleParameter),
("testMutableAppend", testMutableAppend),
("testSetForeground", testSetForeground),
("testSetForegroundToNil", testSetForegroundToNil),
("testSetForegroundToParameter", testSetForegroundToParameter),
("testTransformForeground", testTransformForeground),
("testTransformForeground2", testTransformForeground2),
("testTransformForegroundWithVar", testTransformForegroundWithVar),
("testTransformForegroundToBright", testTransformForegroundToBright),
("testComputedVariableForegroundEquality", testComputedVariableForegroundEquality),
("testEightBitForegroundBackgroundDifference", testEightBitForegroundBackgroundDifference),
("testNamedForegroundBackgroundDifference", testNamedForegroundBackgroundDifference),
("testNamedBrightnessDifference", testNamedBrightnessDifference),
("testZapAllStyleParameters", testZapAllStyleParameters),
]
}