-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathMacroToolkitTests.swift
More file actions
444 lines (385 loc) · 13.3 KB
/
MacroToolkitTests.swift
File metadata and controls
444 lines (385 loc) · 13.3 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
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
import MacroToolkit
import MacroToolkitExamplePlugin
import SwiftDiagnostics
import SwiftSyntax
import SwiftSyntaxMacros
import SwiftSyntaxMacrosTestSupport
import XCTest
let testMacros: [String: Macro.Type] = [
"AddAsync": AddAsyncMacro.self,
"AddCompletionHandler": AddCompletionHandlerMacro.self,
"CaseDetection": CaseDetectionMacro.self,
"addBlocker": AddBlockerMacro.self,
"MyOptionSet": OptionSetMacro.self,
"MetaEnum": MetaEnumMacro.self,
"CustomCodable": CustomCodableMacro.self,
"CodableKey": CodableKeyMacro.self,
"DictionaryStorage": DictionaryStorageMacro.self,
]
final class MacroToolkitTests: XCTestCase {
func testAddAsyncMacro() {
assertMacroExpansion(
"""
@Before
@AddAsync
@After
func d(a: Int, for b: String, _ value: Double, completionBlock: @escaping (Bool) -> Void) {
completionBlock(true)
}
""",
expandedSource: """
@Before
@After
func d(a: Int, for b: String, _ value: Double, completionBlock: @escaping (Bool) -> Void) {
completionBlock(true)
}
@Before
@After
func d(a: Int, for b: String, _ value: Double) async -> Bool {
await withCheckedContinuation { continuation in
d(a: a, for: b, value) { returnValue in
continuation.resume(returning: returnValue)
}
}
}
""",
macros: testMacros
)
}
func testAddCompletionHandlerMacro() {
assertMacroExpansion(
"""
@Before
@AddCompletionHandler
@After
func f(a: Int, for b: String, _ value: Double) async -> String {
return b
}
""",
expandedSource: """
@Before
@After
func f(a: Int, for b: String, _ value: Double) async -> String {
return b
}
@Before
@After
func f(a: Int, for b: String, _ value: Double, completionHandler: @escaping (String) -> Void) {
Task {
completionHandler(
await f(a: a, for: b, value)
)
}
}
""",
macros: testMacros
)
}
func testCaseDetectionMacro() {
assertMacroExpansion(
"""
@CaseDetection
enum Colours {
case red, gray(darkness: Int)
}
@CaseDetection
enum Colours: Int {
case red = 1, green = 2
case blue
}
""",
expandedSource: """
enum Colours {
case red, gray(darkness: Int)
var isRed: Bool {
if case .red = self {
return true
}
return false
}
var isGray: Bool {
if case .gray = self {
return true
}
return false
}
}
enum Colours: Int {
case red = 1, green = 2
case blue
var isRed: Bool {
if case .red = self {
return true
}
return false
}
var isGreen: Bool {
if case .green = self {
return true
}
return false
}
var isBlue: Bool {
if case .blue = self {
return true
}
return false
}
}
""",
macros: testMacros
)
}
func testAddBlockerMacro() {
assertMacroExpansion(
"""
#addBlocker(1 + 2 * 3)
""",
expandedSource: """
1 - 2 * 3
""",
diagnostics: [
DiagnosticSpec(
id: MessageID(domain: "ExampleMacros", id: "addBlocker"),
message: "blocked an add; did you mean to subtract?",
line: 1,
column: 15,
severity: .warning,
fixIts: [
FixItSpec(message: "use '-'")
]
)
],
macros: testMacros
)
}
func testOptionSetMacro() {
assertMacroExpansion(
"""
@MyOptionSet<UInt8>
struct ShippingOptions {
private enum Options: Int {
case nextDay
case secondDay
case priority
case standard
}
static let express: ShippingOptions = [.nextDay, .secondDay]
static let all: ShippingOptions = [.express, .priority, .standard]
}
""",
expandedSource: """
struct ShippingOptions {
private enum Options: Int {
case nextDay
case secondDay
case priority
case standard
}
static let express: ShippingOptions = [.nextDay, .secondDay]
static let all: ShippingOptions = [.express, .priority, .standard]
typealias RawValue = UInt8
var rawValue: RawValue
init() {
self.rawValue = 0
}
init(rawValue: RawValue) {
self.rawValue = rawValue
}
static let nextDay: Self =
Self (rawValue: 1 << Options.nextDay.rawValue)
static let secondDay: Self =
Self (rawValue: 1 << Options.secondDay.rawValue)
static let priority: Self =
Self (rawValue: 1 << Options.priority.rawValue)
static let standard: Self =
Self (rawValue: 1 << Options.standard.rawValue)
}
extension ShippingOptions: OptionSet {
}
""",
macros: testMacros
)
}
func testMetaEnumMacro() {
assertMacroExpansion(
"""
@MetaEnum
public enum Color {
case red, green, blue
case gray(darkness: Float)
}
""",
expandedSource: """
public enum Color {
case red, green, blue
case gray(darkness: Float)
public enum Meta {
case red
case green
case blue
case gray
public init(_ __macro_local_6parentfMu_: Color) {
switch __macro_local_6parentfMu_ {
case .red:
self = .red
case .green:
self = .green
case .blue:
self = .blue
case .gray:
self = .gray
}
}
}
}
""",
macros: testMacros
)
}
func testCustomCodableMacro() {
assertMacroExpansion(
"""
@CustomCodable
struct CustomCodableString: Codable {
@CodableKey(name: "OtherName")
var propertyWithOtherName: String
var propertyWithSameName: Bool
func randomFunction() {}
}
""",
expandedSource: """
struct CustomCodableString: Codable {
var propertyWithOtherName: String
var propertyWithSameName: Bool
func randomFunction() {}
enum CodingKeys: String, CodingKey {
case propertyWithOtherName = "OtherName"
case propertyWithSameName
}
}
""",
macros: testMacros
)
}
func testDictionaryStorageMacro() {
assertMacroExpansion(
"""
@DictionaryStorage
struct Point {
var x: Int = 1
var y: Int = 2
}
""",
expandedSource: """
struct Point {
var x: Int = 1 {
get {
_storage["x", default: 1] as! Int
}
set {
_storage["x"] = newValue
}
}
var y: Int = 2 {
get {
_storage["y", default: 2] as! Int
}
set {
_storage["y"] = newValue
}
}
var _storage: [String: Any] = [:]
}
""",
macros: testMacros
)
}
func testNumericLiteralParsing() {
let octalLiteral: ExprSyntax = "-0o600_015"
let binaryLiteral: ExprSyntax = "0b01_10__11"
let hexLiteral: ExprSyntax = "0xf_E"
let decimalLiteral: ExprSyntax = "1507"
XCTAssertEqual(IntegerLiteral(octalLiteral)?.value, -0o600_015)
XCTAssertEqual(IntegerLiteral(binaryLiteral)?.value, 0b01_10__11)
XCTAssertEqual(IntegerLiteral(hexLiteral)?.value, 0xfE)
XCTAssertEqual(IntegerLiteral(decimalLiteral)?.value, 1507)
let decimalFloatLiteral: ExprSyntax = "5_00_.01_00"
let hexFloatLiteral: ExprSyntax = "-0xFp-2_" // yep, that's valid Swift lol
let hexFloatLiteralWithFractional: ExprSyntax = "-0xF.0f_ep-2_"
XCTAssertEqual(FloatLiteral(decimalFloatLiteral)?.value, 5_00_.01_00)
XCTAssertEqual(FloatLiteral(hexFloatLiteral)?.value, -0xFp-2_)
XCTAssertEqual(
FloatLiteral(hexFloatLiteralWithFractional)?.value, -0xF.0f_ep-2_, "Fair enough")
}
func testStringLiteralParsing() {
let basicLiteral: ExprSyntax = """
"Hello, world!"
"""
let literalWithEscapeSequences: ExprSyntax = #"""
"My literal has \t a tab in the middle\n and a random newline \u{2023} \0 \r \\ \" \'"
"""#
let multilineLiteral: ExprSyntax = #"""
"""
This is a multiline literal!
"""
"""#
let rawLiteral: ExprSyntax = ###"""
##"Hi \(name) \n \t \#t \##t \#(test)"##
"""###
let literalWithInterpolation: ExprSyntax = #"""
"Hi \(name)"
"""#
XCTAssertEqual(StringLiteral(basicLiteral)?.value, "Hello, world!")
XCTAssertEqual(
StringLiteral(literalWithEscapeSequences)?.value,
"My literal has \t a tab in the middle\n and a random newline \u{2023} \0 \r \\ \" \'"
)
XCTAssertEqual(
StringLiteral(rawLiteral)?.value,
##"Hi \(name) \n \t \#t \##t \#(test)"##
)
XCTAssertEqual(
StringLiteral(multilineLiteral)?.value,
"""
This is a multiline literal!
"""
)
if let literal = StringLiteral(literalWithInterpolation) {
XCTAssertEqual(
literal.value,
nil
)
} else {
XCTFail("Failed to wrap string literal with interpolation")
}
}
func testRegexLiteralParsing() {
let basicLiteral: ExprSyntax = """
/abc/
"""
// TODO: Figure out a more precise way to test regex literal parsing
XCTAssert((try? RegexLiteral(basicLiteral)?.regexValue()) != nil)
}
func testBooleanLiteralParsing() {
let trueLiteral: ExprSyntax = "true"
let falseLiteral: ExprSyntax = "false"
XCTAssertEqual(BooleanLiteral(trueLiteral)?.value, true)
XCTAssertEqual(BooleanLiteral(falseLiteral)?.value, false)
}
func testNilLiteralParsing() {
let nilLiteral: ExprSyntax = "nil"
// Pretty cursed
XCTAssert(NilLiteral(nilLiteral)?.value != nil)
}
func testQuotedVariableIdentifier() {
let decl: DeclSyntax = """
var `default`: String
"""
guard let variable = Decl(decl).asVariable else {
XCTFail("Expected decl to be variable")
return
}
XCTAssertEqual(variable.identifiers[0], "default")
}
}