-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathIgnoreCodingTests.swift
More file actions
616 lines (571 loc) · 22.9 KB
/
IgnoreCodingTests.swift
File metadata and controls
616 lines (571 loc) · 22.9 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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
#if SWIFT_SYNTAX_EXTENSION_MACRO_FIXED
import XCTest
@testable import PluginCore
final class IgnoreCodingTests: XCTestCase {
func testMisuseOnUninitializedVariable() throws {
assertMacroExpansion(
"""
@Codable
struct SomeCodable {
@IgnoreCoding
var one: String
@IgnoreDecoding
var two: String
@IgnoreCoding
var three: String { "some" }
@IgnoreDecoding
var four: String { get { "some" } }
@IgnoreCoding
var five: String = "some" {
didSet {
print(five)
}
}
}
""",
expandedSource:
"""
struct SomeCodable {
var one: String
var two: String
var three: String { "some" }
var four: String { get { "some" } }
var five: String = "some" {
didSet {
print(five)
}
}
}
extension SomeCodable: Decodable {
init(from decoder: any Decoder) throws {
}
}
extension SomeCodable: Encodable {
func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(self.two, forKey: CodingKeys.two)
}
}
extension SomeCodable {
enum CodingKeys: String, CodingKey {
case two = "two"
}
}
""",
diagnostics: [
.init(
id: IgnoreCoding.misuseID,
message:
"@IgnoreCoding can't be used with uninitialized variable one",
line: 3, column: 5,
fixIts: [
.init(message: "Remove @IgnoreCoding attribute")
]
),
.init(
id: IgnoreDecoding.misuseID,
message:
"@IgnoreDecoding can't be used with uninitialized variable two",
line: 5, column: 5,
fixIts: [
.init(message: "Remove @IgnoreDecoding attribute")
]
),
]
)
}
func testMisuseWithInvalidCombination() throws {
assertMacroExpansion(
"""
@Codable
struct SomeCodable {
@IgnoreCoding
@CodedAt
var one: String = "some"
}
""",
expandedSource:
"""
struct SomeCodable {
var one: String = "some"
}
extension SomeCodable: Decodable {
init(from decoder: any Decoder) throws {
}
}
extension SomeCodable: Encodable {
func encode(to encoder: any Encoder) throws {
}
}
""",
diagnostics: [
.init(
id: IgnoreCoding.misuseID,
message:
"@IgnoreCoding can't be used in combination with @CodedAt",
line: 3, column: 5,
fixIts: [
.init(message: "Remove @IgnoreCoding attribute")
]
),
.init(
id: CodedAt.misuseID,
message:
"@CodedAt can't be used in combination with @IgnoreCoding",
line: 4, column: 5,
fixIts: [
.init(message: "Remove @CodedAt attribute")
]
),
]
)
}
func testDecodingEncodingIgnore() throws {
assertMacroExpansion(
"""
@Codable
struct SomeCodable {
@IgnoreCoding
var one: String = "some"
}
""",
expandedSource:
"""
struct SomeCodable {
var one: String = "some"
}
extension SomeCodable: Decodable {
init(from decoder: any Decoder) throws {
}
}
extension SomeCodable: Encodable {
func encode(to encoder: any Encoder) throws {
}
}
"""
)
}
func testEnumDecodingEncodingIgnore() throws {
assertMacroExpansion(
"""
@Codable
enum SomeEnum {
@IgnoreCoding
case bool(_ variableBool: Bool)
}
""",
expandedSource:
"""
enum SomeEnum {
case bool(_ variableBool: Bool)
}
extension SomeEnum: Decodable {
init(from decoder: any Decoder) throws {
let context = DecodingError.Context(
codingPath: decoder.codingPath,
debugDescription: "No decodable case present."
)
throw DecodingError.typeMismatch(SomeEnum.self, context)
}
}
extension SomeEnum: Encodable {
func encode(to encoder: any Encoder) throws {
}
}
"""
)
}
func testDecodingIgnore() throws {
assertMacroExpansion(
"""
@Codable
struct SomeCodable {
@IgnoreDecoding
var one: String = "some"
}
""",
expandedSource:
"""
struct SomeCodable {
var one: String = "some"
}
extension SomeCodable: Decodable {
init(from decoder: any Decoder) throws {
}
}
extension SomeCodable: Encodable {
func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(self.one, forKey: CodingKeys.one)
}
}
extension SomeCodable {
enum CodingKeys: String, CodingKey {
case one = "one"
}
}
"""
)
}
func testEnumDecodingIgnore() throws {
assertMacroExpansion(
"""
@Codable
enum SomeEnum {
@IgnoreDecoding
case bool(_ variableBool: Bool)
}
""",
expandedSource:
"""
enum SomeEnum {
case bool(_ variableBool: Bool)
}
extension SomeEnum: Decodable {
init(from decoder: any Decoder) throws {
let context = DecodingError.Context(
codingPath: decoder.codingPath,
debugDescription: "No decodable case present."
)
throw DecodingError.typeMismatch(SomeEnum.self, context)
}
}
extension SomeEnum: Encodable {
func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
switch self {
case .bool(_: let variableBool):
let contentEncoder = container.superEncoder(forKey: CodingKeys.bool)
var container = contentEncoder.container(keyedBy: CodingKeys.self)
try container.encode(variableBool, forKey: CodingKeys.variableBool)
}
}
}
extension SomeEnum {
enum CodingKeys: String, CodingKey {
case variableBool = "variableBool"
case bool = "bool"
}
}
"""
)
}
func testEncodingIgnore() throws {
assertMacroExpansion(
"""
@Codable
struct SomeCodable {
@IgnoreEncoding
var one: String = "some"
@IgnoreEncoding
var two: String
}
""",
expandedSource:
"""
struct SomeCodable {
var one: String = "some"
var two: String
}
extension SomeCodable: Decodable {
init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
do {
self.one = try container.decodeIfPresent(String.self, forKey: CodingKeys.one) ?? "some"
} catch {
self.one = "some"
}
self.two = try container.decode(String.self, forKey: CodingKeys.two)
}
}
extension SomeCodable: Encodable {
func encode(to encoder: any Encoder) throws {
}
}
extension SomeCodable {
enum CodingKeys: String, CodingKey {
case one = "one"
case two = "two"
}
}
"""
)
}
func testEnumEncodingIgnore() throws {
assertMacroExpansion(
"""
@Codable
enum SomeEnum {
@IgnoreEncoding
case bool(_ variableBool: Bool)
}
""",
expandedSource:
"""
enum SomeEnum {
case bool(_ variableBool: Bool)
}
extension SomeEnum: Decodable {
init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: DecodingKeys.self)
guard container.allKeys.count == 1 else {
let context = DecodingError.Context(
codingPath: container.codingPath,
debugDescription: "Invalid number of keys found, expected one."
)
throw DecodingError.typeMismatch(SomeEnum.self, context)
}
let contentDecoder = try container.superDecoder(forKey: container.allKeys.first.unsafelyUnwrapped)
switch container.allKeys.first.unsafelyUnwrapped {
case DecodingKeys.bool:
let container = try contentDecoder.container(keyedBy: CodingKeys.self)
let variableBool = try container.decode(Bool.self, forKey: CodingKeys.variableBool)
self = .bool(_: variableBool)
}
}
}
extension SomeEnum: Encodable {
func encode(to encoder: any Encoder) throws {
}
}
extension SomeEnum {
enum CodingKeys: String, CodingKey {
case variableBool = "variableBool"
}
enum DecodingKeys: String, CodingKey {
case bool = "bool"
}
}
"""
)
}
func testCombinationWithOtherMacros() throws {
assertMacroExpansion(
"""
@Codable
struct SomeCodable {
@IgnoreDecoding
@CodedIn("deeply", "nested")
var one: String = "some"
@IgnoreDecoding
@CodedAt("deeply", "nested", "key")
var two: String = "some"
@IgnoreEncoding
@CodedIn("deeply", "nested")
var three: String = "some"
@IgnoreEncoding
@CodedAt("deeply", "nested", "key")
var four: String = "some"
}
""",
expandedSource:
"""
struct SomeCodable {
var one: String = "some"
var two: String = "some"
var three: String = "some"
var four: String = "some"
}
extension SomeCodable: Decodable {
init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
if let deeply_container = try? container.nestedContainer(keyedBy: CodingKeys.self, forKey: CodingKeys.deeply) {
if let nested_deeply_container = try? deeply_container.nestedContainer(keyedBy: CodingKeys.self, forKey: CodingKeys.nested) {
do {
self.four = try nested_deeply_container.decodeIfPresent(String.self, forKey: CodingKeys.two) ?? "some"
} catch {
self.four = "some"
}
do {
self.three = try nested_deeply_container.decodeIfPresent(String.self, forKey: CodingKeys.three) ?? "some"
} catch {
self.three = "some"
}
} else {
self.one = "some"
self.two = "some"
self.four = "some"
self.three = "some"
}
} else {
self.one = "some"
self.two = "some"
self.four = "some"
self.three = "some"
}
}
}
extension SomeCodable: Encodable {
func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
var deeply_container = container.nestedContainer(keyedBy: CodingKeys.self, forKey: CodingKeys.deeply)
var nested_deeply_container = deeply_container.nestedContainer(keyedBy: CodingKeys.self, forKey: CodingKeys.nested)
try nested_deeply_container.encode(self.one, forKey: CodingKeys.one)
try nested_deeply_container.encode(self.two, forKey: CodingKeys.two)
}
}
extension SomeCodable {
enum CodingKeys: String, CodingKey {
case one = "one"
case deeply = "deeply"
case nested = "nested"
case two = "key"
case three = "three"
}
}
"""
)
}
func testClassCombinationWithOtherMacros() throws {
assertMacroExpansion(
"""
@Codable
class SomeCodable {
@IgnoreDecoding
@CodedIn("deeply", "nested")
var one: String = "some"
@IgnoreDecoding
@CodedAt("deeply", "nested", "key")
var two: String = "some"
@IgnoreEncoding
@CodedIn("deeply", "nested")
var three: String = "some"
@IgnoreEncoding
@CodedAt("deeply", "nested", "key")
var four: String = "some"
}
""",
expandedSource:
"""
class SomeCodable {
var one: String = "some"
var two: String = "some"
var three: String = "some"
var four: String = "some"
required init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
if let deeply_container = try? container.nestedContainer(keyedBy: CodingKeys.self, forKey: CodingKeys.deeply) {
if let nested_deeply_container = try? deeply_container.nestedContainer(keyedBy: CodingKeys.self, forKey: CodingKeys.nested) {
do {
self.four = try nested_deeply_container.decodeIfPresent(String.self, forKey: CodingKeys.two) ?? "some"
} catch {
self.four = "some"
}
do {
self.three = try nested_deeply_container.decodeIfPresent(String.self, forKey: CodingKeys.three) ?? "some"
} catch {
self.three = "some"
}
} else {
self.one = "some"
self.two = "some"
self.four = "some"
self.three = "some"
}
} else {
self.one = "some"
self.two = "some"
self.four = "some"
self.three = "some"
}
}
func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
var deeply_container = container.nestedContainer(keyedBy: CodingKeys.self, forKey: CodingKeys.deeply)
var nested_deeply_container = deeply_container.nestedContainer(keyedBy: CodingKeys.self, forKey: CodingKeys.nested)
try nested_deeply_container.encode(self.one, forKey: CodingKeys.one)
try nested_deeply_container.encode(self.two, forKey: CodingKeys.two)
}
enum CodingKeys: String, CodingKey {
case one = "one"
case deeply = "deeply"
case nested = "nested"
case two = "key"
case three = "three"
}
}
extension SomeCodable: Decodable {
}
extension SomeCodable: Encodable {
}
"""
)
}
func testEnumCombinationWithOtherMacros() throws {
assertMacroExpansion(
"""
@Codable
enum SomeEnum {
@IgnoreCoding
case bool(_ variableBool: Bool)
@IgnoreDecoding
@CodedAs("altInt")
case int(val: Int)
@IgnoreEncoding
@CodedAs("altString")
case string(String)
@IgnoreEncoding
case multi(_ variable: Bool, val: Int, String)
}
""",
expandedSource:
"""
enum SomeEnum {
case bool(_ variableBool: Bool)
case int(val: Int)
case string(String)
case multi(_ variable: Bool, val: Int, String)
}
extension SomeEnum: Decodable {
init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: DecodingKeys.self)
guard container.allKeys.count == 1 else {
let context = DecodingError.Context(
codingPath: container.codingPath,
debugDescription: "Invalid number of keys found, expected one."
)
throw DecodingError.typeMismatch(SomeEnum.self, context)
}
let contentDecoder = try container.superDecoder(forKey: container.allKeys.first.unsafelyUnwrapped)
switch container.allKeys.first.unsafelyUnwrapped {
case DecodingKeys.string:
let _0 = try String(from: contentDecoder)
self = .string(_0)
case DecodingKeys.multi:
let _2 = try String(from: contentDecoder)
let container = try contentDecoder.container(keyedBy: CodingKeys.self)
let variable = try container.decode(Bool.self, forKey: CodingKeys.variable)
let val = try container.decode(Int.self, forKey: CodingKeys.val)
self = .multi(_: variable, val: val, _2)
}
}
}
extension SomeEnum: Encodable {
func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
switch self {
case .int(val: let val):
let contentEncoder = container.superEncoder(forKey: CodingKeys.int)
var container = contentEncoder.container(keyedBy: CodingKeys.self)
try container.encode(val, forKey: CodingKeys.val)
default:
break
}
}
}
extension SomeEnum {
enum CodingKeys: String, CodingKey {
case val = "val"
case int = "altInt"
case variable = "variable"
}
enum DecodingKeys: String, CodingKey {
case string = "altString"
case multi = "multi"
}
}
"""
)
}
}
#endif