-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCWasm3Tests.swift
395 lines (312 loc) · 14.4 KB
/
CWasm3Tests.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
@testable import CWasm3
import XCTest
final class CWasm3Tests: XCTestCase {
func testCanCreateEnvironmentAndRuntime() throws {
let environment = m3_NewEnvironment()
defer { m3_FreeEnvironment(environment) }
XCTAssertNotNil(environment)
let runtime = m3_NewRuntime(environment, 512, nil)
defer { m3_FreeRuntime(runtime) }
XCTAssertNotNil(runtime)
}
func testCanCallFunctionsWithSameImplementations() throws {
let environment = m3_NewEnvironment()
defer { m3_FreeEnvironment(environment) }
let runtime = m3_NewRuntime(environment, 512, nil)
defer { m3_FreeRuntime(runtime) }
var constantBytes = try constantWasm()
defer { constantBytes.removeAll() }
var module: IM3Module?
XCTAssertNil(m3_ParseModule(
environment,
&module,
constantBytes,
UInt32(constantBytes.count)
))
XCTAssertNil(m3_LoadModule(runtime, module))
var constant1Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant1Function, runtime, "constant_1"))
var constant2Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant2Function, runtime, "constant_2"))
var constant3Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant3Function, runtime, "constant_3"))
var constant4Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant4Function, runtime, "constant_4"))
var constant5Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant5Function, runtime, "constant_5"))
var constant6Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant6Function, runtime, "constant_6"))
var constant7Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant7Function, runtime, "constant_7"))
var constant8Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant8Function, runtime, "constant_8"))
var constant9Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant9Function, runtime, "constant_9"))
var constant10Function: IM3Function?
XCTAssertNil(m3_FindFunction(&constant10Function, runtime, "constant_10"))
var constant11Function: IM3Function?
let err = try XCTUnwrap(m3_FindFunction(&constant11Function, runtime, "constant_11"))
XCTAssertEqual("function lookup failed", String(cString: err))
[constant1Function, constant2Function, constant3Function]
.forEach { function in
guard function != nil else { return XCTFail() }
let size = UnsafeMutablePointer<Int>.allocate(capacity: 1)
let output = UnsafeMutablePointer<Int32>.allocate(capacity: 1)
XCTAssertNil(wasm3_CallWithArgs(function, 0, [], size, output))
XCTAssertEqual(65_536, output.pointee)
size.deallocate()
output.deallocate()
}
}
func testCanCallAndReceiveReturnValueFromAdd() throws {
let environment = m3_NewEnvironment()
defer { m3_FreeEnvironment(environment) }
let runtime = m3_NewRuntime(environment, 512, nil)
defer { m3_FreeRuntime(runtime) }
var addBytes = try addWasm()
defer { addBytes.removeAll() }
var module: IM3Module?
XCTAssertNil(m3_ParseModule(environment, &module, addBytes, UInt32(addBytes.count)))
XCTAssertNil(m3_LoadModule(runtime, module))
var addFunction: IM3Function?
XCTAssertNil(m3_FindFunction(&addFunction, runtime, "add"))
let result = ["3", "12345"].withCStrings { args -> Int32 in
let size = UnsafeMutablePointer<Int>.allocate(capacity: 1)
let output = UnsafeMutablePointer<Int32>.allocate(capacity: 1)
XCTAssertNil(wasm3_CallWithArgs(addFunction, UInt32(2), args, size, output))
XCTAssertEqual(MemoryLayout<Int32>.size, size.pointee)
return output.pointee
}
XCTAssertEqual(12_348, result)
}
func testCanCallAndReceiveReturnValueFromFibonacci() throws {
let environment = m3_NewEnvironment()
defer { m3_FreeEnvironment(environment) }
let runtime = m3_NewRuntime(environment, 1 * 1024 * 1024, nil)
defer { m3_FreeRuntime(runtime) }
var fibonacciBytes = try fibonacciWasm()
defer { fibonacciBytes.removeAll() }
var module: IM3Module?
XCTAssertNil(m3_ParseModule(
environment,
&module,
fibonacciBytes,
UInt32(fibonacciBytes.count)
))
XCTAssertNil(m3_LoadModule(runtime, module))
var fibonacciFunction: IM3Function?
XCTAssertNil(m3_FindFunction(&fibonacciFunction, runtime, "fib"))
let result = ["25"].withCStrings { args -> Int64 in
let size = UnsafeMutablePointer<Int>.allocate(capacity: 1)
let output = UnsafeMutablePointer<Int64>.allocate(capacity: 1)
XCTAssertNil(wasm3_CallWithArgs(fibonacciFunction, UInt32(1), args, size, output))
XCTAssertEqual(MemoryLayout<Int64>.size, size.pointee)
return output.pointee
}
XCTAssertEqual(75_025, result)
}
func testImportingNativeFunction() throws {
let environment = m3_NewEnvironment()
defer { m3_FreeEnvironment(environment) }
let runtime = m3_NewRuntime(environment, 512, nil)
defer { m3_FreeRuntime(runtime) }
var importedAddBytes = try importedAddWasm()
defer { importedAddBytes.removeAll() }
var module: IM3Module?
XCTAssertNil(m3_ParseModule(
environment,
&module,
importedAddBytes,
UInt32(importedAddBytes.count)
))
XCTAssertNil(m3_LoadModule(runtime, module))
// The imported function needs to linked before the exported function can be referenced.
XCTAssertNil(m3_LinkRawFunction(
module, "imports", "imported_add_func", "i(i I)", importedAdd
))
var integerProviderFunction: IM3Function?
XCTAssertNil(m3_FindFunction(
&integerProviderFunction,
runtime,
"integer_provider_func"
))
let size = UnsafeMutablePointer<Int>.allocate(capacity: 1)
defer { size.deallocate() }
let ret = UnsafeMutablePointer<Int32>.allocate(capacity: 1)
defer { ret.deallocate() }
XCTAssertNil(wasm3_CallWithArgs(integerProviderFunction, UInt32(0), nil, size, ret))
XCTAssertEqual(MemoryLayout<Int32>.size, size.pointee)
let sum = ret.pointee
XCTAssertEqual(-3291, sum)
}
func testModifyingHeapMemoryInsideImportedFunction() throws {
let environment = m3_NewEnvironment()
defer { m3_FreeEnvironment(environment) }
let runtime = m3_NewRuntime(environment, 512, nil)
defer { m3_FreeRuntime(runtime) }
var addBytes = try memoryWasm()
defer { addBytes.removeAll() }
var module: IM3Module?
XCTAssertNil(m3_ParseModule(environment, &module, addBytes, UInt32(addBytes.count)))
XCTAssertNil(m3_LoadModule(runtime, module))
XCTAssertNil(m3_LinkRawFunction(
module, "native", "write", "v(i i)", importedWrite
))
var writeUTF8Function: IM3Function?
XCTAssertNil(m3_FindFunction(&writeUTF8Function, runtime, "write_utf8"))
XCTAssertNil(wasm3_CallWithArgs(writeUTF8Function, UInt32(0), nil, nil, nil))
var heapBytes = 0
let heapString = try runtime.stringFromHeap(
offset: 0,
length: 13, // defined in memory.wasm
totalHeapBytes: &heapBytes
)
XCTAssertEqual(65_536, heapBytes) // minimum heap size defined in memory.wasm
XCTAssertEqual("DDDDDDDDDDDDD", heapString)
}
func testModifyHeapMemoryInsideOfWasmFunction() throws {
let environment = m3_NewEnvironment()
defer { m3_FreeEnvironment(environment) }
let runtime = m3_NewRuntime(environment, 512, nil)
defer { m3_FreeRuntime(runtime) }
var addBytes = try memoryWasm()
defer { addBytes.removeAll() }
var module: IM3Module?
XCTAssertNil(m3_ParseModule(environment, &module, addBytes, UInt32(addBytes.count)))
XCTAssertNil(m3_LoadModule(runtime, module))
XCTAssertNil(m3_LinkRawFunction(
module, "native", "write", "v(i i)", importedWrite
))
var writeUTF8Function: IM3Function?
XCTAssertNil(m3_FindFunction(&writeUTF8Function, runtime, "write_utf8"))
var modifyUTF8Function: IM3Function?
XCTAssertNil(m3_FindFunction(&modifyUTF8Function, runtime, "modify_utf8"))
XCTAssertNil(wasm3_CallWithArgs(writeUTF8Function, UInt32(0), nil, nil, nil))
let beforeModification = try runtime.stringFromHeap(offset: 0, length: 13)
XCTAssertEqual("DDDDDDDDDDDDD", beforeModification)
let afterModification = try ["4"].withCStrings { args throws -> String in
XCTAssertNil(wasm3_CallWithArgs(modifyUTF8Function, UInt32(1), args, nil, nil))
return try runtime
.stringFromHeap(offset: 0, length: 13) // length defined in memory.wasm
}
XCTAssertEqual("DDDDEDDDDDDDD", afterModification)
}
static var allTests = [
("testCanCreateEnvironmentAndRuntime", testCanCreateEnvironmentAndRuntime),
(
"testCanCallFunctionsWithSameImplementations",
testCanCallFunctionsWithSameImplementations
),
("testCanCallAndReceiveReturnValueFromAdd", testCanCallAndReceiveReturnValueFromAdd),
(
"testCanCallAndReceiveReturnValueFromFibonacci",
testCanCallAndReceiveReturnValueFromFibonacci
),
("testImportingNativeFunction", testImportingNativeFunction),
(
"testModifyingHeapMemoryInsideImportedFunction",
testModifyingHeapMemoryInsideImportedFunction
),
("testModifyHeapMemoryInsideOfWasmFunction", testModifyHeapMemoryInsideOfWasmFunction),
]
}
private func importedWrite(
runtime _: IM3Runtime?,
context _: IM3ImportContext?,
stackPointer: UnsafeMutablePointer<UInt64>?,
memory: UnsafeMutableRawPointer?
) -> UnsafeRawPointer? {
guard let stackPointer = UnsafeMutableRawPointer(stackPointer) else {
return UnsafeRawPointer(m3Err_trapUnreachable)
}
guard let memory = memory else { return UnsafeRawPointer(m3Err_wasmMemoryOverflow) }
let offset = stackPointer.load(as: Int32.self)
let length = stackPointer.load(fromByteOffset: MemoryLayout<Int64>.stride, as: Int32.self)
memory
.advanced(by: Int(offset))
.initializeMemory(
as: CChar.self,
repeating: CChar(bitPattern: 0x0044),
count: Int(length)
)
return nil
}
private func importedAdd(
runtime _: IM3Runtime?,
context _: IM3ImportContext?,
stackPointer: UnsafeMutablePointer<UInt64>?,
memory _: UnsafeMutableRawPointer?
) -> UnsafeRawPointer? {
guard let stackPointer = UnsafeMutableRawPointer(stackPointer) else {
return UnsafeRawPointer(m3Err_trapUnreachable)
}
// Arguments and return values are passed in and out through the stack pointer _sp.
// Placeholder return value slots are first and arguments after. So, the first
// argument is at _sp [numReturns].
// Return values should be written into _sp [0] to _sp [num_returns - 1].
// Wasm3 always aligns the stack to 64 bits.
let offset = MemoryLayout<Int64>.stride
let first = stackPointer.load(fromByteOffset: offset, as: Int32.self)
let second = stackPointer.load(fromByteOffset: offset + offset, as: Int32.self)
let sum = first + second
stackPointer.storeBytes(of: sum, as: Int32.self)
return nil
}
private extension Optional where Wrapped == IM3Runtime {
func stringFromHeap(
offset: Int,
length: Int,
totalHeapBytes: UnsafeMutablePointer<Int>? = nil
) throws -> String {
let heapBytes = UnsafeMutablePointer<UInt32>.allocate(capacity: 1)
defer { heapBytes.deallocate() }
let heap: UnsafeMutableRawPointer = try XCTUnwrap(
UnsafeMutableRawPointer(m3_GetMemory(self, heapBytes, 0).advanced(by: offset))
)
totalHeapBytes?.pointee = Int(heapBytes.pointee)
let ptr = heap.bindMemory(to: CChar.self, capacity: length)
return String(cString: ptr)
}
}
extension CWasm3Tests {
// compile and copy base64 binaries in Bash via:
// `wat2wasm -o >(base64) path/to/file.wat | pbcopy`
private enum TestError: Error {
case couldNotDecodeWasm(String)
case couldNotLoadResource(String)
}
private func addWasm() throws -> [UInt8] {
let base64 = "AGFzbQEAAAABBwFgAn9/AX8DAgEABwcBA2FkZAAACgkBBwAgACABags="
guard let data = Data(base64Encoded: base64)
else { throw TestError.couldNotDecodeWasm("add.wasm") }
return [UInt8](data)
}
private func constantWasm() throws -> [UInt8] {
let base64 =
"AGFzbQEAAAABBQFgAAF/AwIBAAeSAQsKY29uc3RhbnRfMQAACmNvbnN0YW50XzIAAApjb25zdGFudF8zAAAKY29uc3RhbnRfNAAACmNvbnN0YW50XzUAAApjb25zdGFudF82AAAKY29uc3RhbnRfNwAACmNvbnN0YW50XzgAAApjb25zdGFudF85AAALY29uc3RhbnRfMTAAAAtjb25zdGFudF8xMQAACggBBgBBgIAECw=="
guard let data = Data(base64Encoded: base64)
else { throw TestError.couldNotDecodeWasm("constant.wasm") }
return [UInt8](data)
}
private func fibonacciWasm() throws -> [UInt8] {
let base64 =
"AGFzbQEAAAABBgFgAX4BfgMCAQAHBwEDZmliAAAKHwEdACAAQgJUBEAgAA8LIABCAn0QACAAQgF9EAB8Dws="
guard let data = Data(base64Encoded: base64)
else { throw TestError.couldNotDecodeWasm("fib64.wasm") }
return [UInt8](data)
}
private func importedAddWasm() throws -> [UInt8] {
let base64 =
"AGFzbQEAAAABCwJgAn9+AX9gAAF/Ah0BB2ltcG9ydHMRaW1wb3J0ZWRfYWRkX2Z1bmMAAAMCAQEHGQEVaW50ZWdlcl9wcm92aWRlcl9mdW5jAAEKCwEJAEH7ZUIqEAAL"
guard let data = Data(base64Encoded: base64)
else { throw TestError.couldNotDecodeWasm("imported-add.wasm") }
return [UInt8](data)
}
private func memoryWasm() throws -> [UInt8] {
let base64 =
"AGFzbQEAAAABDQNgAn9/AGAAAGABfwACEAEGbmF0aXZlBXdyaXRlAAADAwIBAgUDAQABBxwCCndyaXRlX3V0ZjgAAQttb2RpZnlfdXRmOAACChoCCABBAEENEAALDwAgACAAKAIAQQFqNgIACw=="
guard let data = Data(base64Encoded: base64)
else { throw TestError.couldNotDecodeWasm("memory.wasm") }
return [UInt8](data)
}
}