2023-01-13 02:51:32 -05:00
|
|
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
import { assert, assertEquals, assertRejects } from "./test_util.ts";
|
2021-07-03 17:33:36 -04:00
|
|
|
|
|
|
|
// The following blob can be created by taking the following s-expr and pass
|
|
|
|
// it through wat2wasm.
|
|
|
|
// (module
|
|
|
|
// (func $add (param $a i32) (param $b i32) (result i32)
|
|
|
|
// local.get $a
|
|
|
|
// local.get $b
|
|
|
|
// i32.add)
|
|
|
|
// (export "add" (func $add))
|
|
|
|
// )
|
|
|
|
// deno-fmt-ignore
|
|
|
|
const simpleWasm = new Uint8Array([
|
|
|
|
0x00, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00, 0x01, 0x07, 0x01, 0x60,
|
|
|
|
0x02, 0x7f, 0x7f, 0x01, 0x7f, 0x03, 0x02, 0x01, 0x00, 0x07, 0x07, 0x01,
|
|
|
|
0x03, 0x61, 0x64, 0x64, 0x00, 0x00, 0x0a, 0x09, 0x01, 0x07, 0x00, 0x20,
|
|
|
|
0x00, 0x20, 0x01, 0x6a, 0x0b
|
|
|
|
]);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(async function wasmInstantiateWorksWithBuffer() {
|
2021-07-03 17:33:36 -04:00
|
|
|
const { module, instance } = await WebAssembly.instantiate(simpleWasm);
|
|
|
|
assertEquals(WebAssembly.Module.exports(module), [{
|
|
|
|
name: "add",
|
|
|
|
kind: "function",
|
|
|
|
}]);
|
|
|
|
assertEquals(WebAssembly.Module.imports(module), []);
|
|
|
|
assert(typeof instance.exports.add === "function");
|
|
|
|
const add = instance.exports.add as (a: number, b: number) => number;
|
|
|
|
assertEquals(add(1, 3), 4);
|
|
|
|
});
|
|
|
|
|
|
|
|
// V8's default implementation of `WebAssembly.instantiateStreaming()` if you
|
|
|
|
// don't set the WASM streaming callback, is to take a byte source. Here we
|
|
|
|
// check that our implementation of the callback disallows it.
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-08-05 07:08:58 -04:00
|
|
|
async function wasmInstantiateStreamingFailsWithBuffer() {
|
2021-09-22 09:21:11 -04:00
|
|
|
await assertRejects(async () => {
|
2021-07-03 17:33:36 -04:00
|
|
|
await WebAssembly.instantiateStreaming(
|
|
|
|
// Bypassing the type system
|
|
|
|
simpleWasm as unknown as Promise<Response>,
|
|
|
|
);
|
|
|
|
}, TypeError);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-08-16 06:53:30 -04:00
|
|
|
async function wasmInstantiateStreamingNoContentType() {
|
2022-03-29 08:44:33 -04:00
|
|
|
const response = new Response(simpleWasm);
|
|
|
|
// Rejects, not throws.
|
|
|
|
const wasmPromise = WebAssembly.instantiateStreaming(response);
|
2021-09-22 09:21:11 -04:00
|
|
|
await assertRejects(
|
2022-03-29 08:44:33 -04:00
|
|
|
() => wasmPromise,
|
2021-08-16 06:53:30 -04:00
|
|
|
TypeError,
|
|
|
|
"Invalid WebAssembly content type.",
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(async function wasmInstantiateStreaming() {
|
2021-07-03 17:33:36 -04:00
|
|
|
let isomorphic = "";
|
|
|
|
for (const byte of simpleWasm) {
|
|
|
|
isomorphic += String.fromCharCode(byte);
|
|
|
|
}
|
|
|
|
const base64Url = "data:application/wasm;base64," + btoa(isomorphic);
|
|
|
|
|
|
|
|
const { module, instance } = await WebAssembly.instantiateStreaming(
|
|
|
|
fetch(base64Url),
|
|
|
|
);
|
|
|
|
assertEquals(WebAssembly.Module.exports(module), [{
|
|
|
|
name: "add",
|
|
|
|
kind: "function",
|
|
|
|
}]);
|
|
|
|
assertEquals(WebAssembly.Module.imports(module), []);
|
|
|
|
assert(typeof instance.exports.add === "function");
|
|
|
|
const add = instance.exports.add as (a: number, b: number) => number;
|
|
|
|
assertEquals(add(1, 3), 4);
|
|
|
|
});
|
|
|
|
|
2021-11-26 03:52:41 -05:00
|
|
|
Deno.test(
|
|
|
|
{ permissions: { read: true } },
|
|
|
|
async function wasmFileStreaming() {
|
2022-09-19 10:32:21 -04:00
|
|
|
const url = import.meta.resolve("../testdata/assets/unreachable.wasm");
|
2022-07-20 10:56:53 -04:00
|
|
|
assert(url.startsWith("file://"));
|
2021-11-26 03:52:41 -05:00
|
|
|
|
|
|
|
const { module } = await WebAssembly.instantiateStreaming(fetch(url));
|
|
|
|
assertEquals(WebAssembly.Module.exports(module), [{
|
|
|
|
name: "unreachable",
|
|
|
|
kind: "function",
|
|
|
|
}]);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(
|
2021-09-22 19:50:50 -04:00
|
|
|
{ permissions: { net: true } },
|
2021-08-05 07:08:58 -04:00
|
|
|
async function wasmStreamingNonTrivial() {
|
2021-07-03 17:33:36 -04:00
|
|
|
// deno-dom's WASM file is a real-world non-trivial case that gave us
|
|
|
|
// trouble when implementing this.
|
|
|
|
await WebAssembly.instantiateStreaming(fetch(
|
2022-09-19 10:32:21 -04:00
|
|
|
"http://localhost:4545/assets/deno_dom_0.1.3-alpha2.wasm",
|
2021-07-03 17:33:36 -04:00
|
|
|
));
|
|
|
|
},
|
|
|
|
);
|