|
| 1 | +// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file |
| 2 | +// for details. All rights reserved. Use of this source code is governed by a |
| 3 | +// BSD-style license that can be found in the LICENSE file. |
| 4 | + |
| 5 | +// Test that we can load a wasm module, find a function, and call it. |
| 6 | +import 'dart:typed_data'; |
| 7 | + |
| 8 | +import 'package:test/test.dart'; |
| 9 | +import 'package:wasm/wasm.dart'; |
| 10 | + |
| 11 | +void main() { |
| 12 | + test('async compilation', () async { |
| 13 | + // int64_t square(int64_t n) { return n * n; } |
| 14 | + final data = Uint8List.fromList([ |
| 15 | + 0x00, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00, 0x01, 0x06, 0x01, 0x60, // |
| 16 | + 0x01, 0x7e, 0x01, 0x7e, 0x03, 0x02, 0x01, 0x00, 0x04, 0x05, 0x01, 0x70, |
| 17 | + 0x01, 0x01, 0x01, 0x05, 0x03, 0x01, 0x00, 0x02, 0x06, 0x08, 0x01, 0x7f, |
| 18 | + 0x01, 0x41, 0x80, 0x88, 0x04, 0x0b, 0x07, 0x13, 0x02, 0x06, 0x6d, 0x65, |
| 19 | + 0x6d, 0x6f, 0x72, 0x79, 0x02, 0x00, 0x06, 0x73, 0x71, 0x75, 0x61, 0x72, |
| 20 | + 0x65, 0x00, 0x00, 0x0a, 0x09, 0x01, 0x07, 0x00, 0x20, 0x00, 0x20, 0x00, |
| 21 | + 0x7e, 0x0b, |
| 22 | + ]); |
| 23 | + |
| 24 | + final mod = await WasmModule.compileAsync(data); |
| 25 | + final inst = await mod.builder().buildAsync(); |
| 26 | + final fn = inst.lookupFunction('square'); |
| 27 | + final n = fn(1234) as int; |
| 28 | + |
| 29 | + expect(n, 1234 * 1234); |
| 30 | + |
| 31 | + expect(inst.lookupFunction('not_a_function'), isNull); |
| 32 | + }); |
| 33 | +} |
0 commit comments