-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathAccessModifierTests.swift
More file actions
284 lines (251 loc) · 9.69 KB
/
AccessModifierTests.swift
File metadata and controls
284 lines (251 loc) · 9.69 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
import Foundation
import MetaCodable
import Testing
@testable import PluginCore
@Suite("Access Modifier Tests")
struct AccessModifierTests {
@Suite("Access Modifier - Open")
struct Open {
@Codable
open class SomeCodable {
let value: String
}
@Test("Generates @Codable conformance for class with 'open' access", .tags(.accessModifiers, .classes, .codable, .decoding, .encoding, .enums, .macroExpansion))
func expansion() throws {
assertMacroExpansion(
"""
@Codable
open class SomeCodable {
let value: String
}
""",
expandedSource:
"""
open class SomeCodable {
let value: String
public required init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.value = try container.decode(String.self, forKey: CodingKeys.value)
}
public func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(self.value, forKey: CodingKeys.value)
}
enum CodingKeys: String, CodingKey {
case value = "value"
}
}
extension SomeCodable: Decodable {
}
extension SomeCodable: Encodable {
}
"""
)
}
@Test("Decodes class from JSON successfully", .tags(.accessModifiers, .classes, .decoding))
func openClassDecodingOnly() throws {
// Open class doesn't have memberwise init, only decoder init
let jsonStr = """
{
"value": "open_test"
}
"""
let jsonData = try #require(jsonStr.data(using: .utf8))
let decoded = try JSONDecoder().decode(
SomeCodable.self, from: jsonData)
#expect(decoded.value == "open_test")
}
@Test("Decodes from JSON successfully", .tags(.accessModifiers, .decoding))
func openClassFromJSON() throws {
let jsonStr = """
{
"value": "open_value"
}
"""
let jsonData = try #require(jsonStr.data(using: .utf8))
let decoded = try JSONDecoder().decode(
SomeCodable.self, from: jsonData)
#expect(decoded.value == "open_value")
}
}
@Suite("Access Modifier - Public")
struct Public {
@Codable
@MemberInit
public struct SomeCodable {
let value: String
}
@Test("Generates macro expansion with @Codable for struct with 'public' access", .tags(.accessModifiers, .codable, .decoding, .encoding, .enums, .macroExpansion, .memberInit, .structs))
func expansion() throws {
assertMacroExpansion(
"""
@Codable
@MemberInit
public struct SomeCodable {
let value: String
}
""",
expandedSource:
"""
public struct SomeCodable {
let value: String
public init(value: String) {
self.value = value
}
}
extension SomeCodable: Decodable {
public init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.value = try container.decode(String.self, forKey: CodingKeys.value)
}
}
extension SomeCodable: Encodable {
public func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(self.value, forKey: CodingKeys.value)
}
}
extension SomeCodable {
enum CodingKeys: String, CodingKey {
case value = "value"
}
}
"""
)
}
@Test("Encodes and decodes successfully", .tags(.accessModifiers, .decoding, .encoding))
func publicStructDecodingAndEncoding() throws {
let original = SomeCodable(value: "public_test")
let encoded = try JSONEncoder().encode(original)
let decoded = try JSONDecoder().decode(
SomeCodable.self, from: encoded)
#expect(decoded.value == "public_test")
}
@Test("Decodes from JSON successfully (AccessModifierTests #1)", .tags(.accessModifiers, .decoding))
func publicStructFromJSON() throws {
let jsonStr = """
{
"value": "public_value"
}
"""
let jsonData = try #require(jsonStr.data(using: .utf8))
let decoded = try JSONDecoder().decode(
SomeCodable.self, from: jsonData)
#expect(decoded.value == "public_value")
}
}
@Suite("Access Modifier - Package")
struct Package {
@Codable
@MemberInit
package struct SomeCodable {
let value: String
}
@Test("Generates macro expansion with @Codable for struct", .tags(.accessModifiers, .codable, .decoding, .encoding, .enums, .macroExpansion, .memberInit, .structs))
func expansion() throws {
assertMacroExpansion(
"""
@Codable
@MemberInit
package struct SomeCodable {
let value: String
}
""",
expandedSource:
"""
package struct SomeCodable {
let value: String
package init(value: String) {
self.value = value
}
}
extension SomeCodable: Decodable {
package init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.value = try container.decode(String.self, forKey: CodingKeys.value)
}
}
extension SomeCodable: Encodable {
package func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(self.value, forKey: CodingKeys.value)
}
}
extension SomeCodable {
enum CodingKeys: String, CodingKey {
case value = "value"
}
}
"""
)
}
}
@Suite("Access Modifier - Others")
struct Others {
struct Internal {
@Codable
@MemberInit
internal struct SomeCodable {
let value: String
}
}
struct FilePrivate {
@Codable
@MemberInit
fileprivate struct SomeCodable {
let value: String
}
}
struct None {
@Codable
@MemberInit
struct SomeCodable {
let value: String
}
}
@Test(arguments: ["internal", "fileprivate", "private", ""])
func expansion(_ modifier: String) throws {
let prefix = modifier.isEmpty ? "" : "\(modifier) "
assertMacroExpansion(
"""
@Codable
@MemberInit
\(prefix)struct SomeCodable {
let value: String
}
""",
expandedSource:
"""
\(prefix)struct SomeCodable {
let value: String
init(value: String) {
self.value = value
}
}
extension SomeCodable: Decodable {
init(from decoder: any Decoder) throws {
let container = try decoder.container(keyedBy: CodingKeys.self)
self.value = try container.decode(String.self, forKey: CodingKeys.value)
}
}
extension SomeCodable: Encodable {
func encode(to encoder: any Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(self.value, forKey: CodingKeys.value)
}
}
extension SomeCodable {
enum CodingKeys: String, CodingKey {
case value = "value"
}
}
"""
)
}
}
}
@Codable
@MemberInit
private struct SomeCodable {
let value: String
}