summaryrefslogtreecommitdiffstats
path: root/dom/promise/tests/test_webassembly_compile.html
blob: 1f3bb7e099825dad76e60b8112ce1f3de5fcb1bf (plain)
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
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
  <title>WebAssembly.compile Test</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<script>
const wasmIsSupported = SpecialPowers.Cu.getJSTestingFunctions().wasmIsSupported;

// The test_webassembly_compile_sample.wasm is a medium-sized module with 100
// functions that call each other recursively, returning a computed sum.
// Any other non-trivial module could be generated and used.
var sampleCode;
const sampleURL = "test_webassembly_compile_sample.wasm";
const sampleExportName = "run";
const sampleResult = 1275;

function checkSampleModule(m) {
  ok(m instanceof WebAssembly.Module, "got a module");
  var i = new WebAssembly.Instance(m);
  ok(i instanceof WebAssembly.Instance, "got an instance");
  ok(i.exports[sampleExportName]() === sampleResult, "got result");
}

function checkSampleInstance(i) {
  ok(i instanceof WebAssembly.Instance, "got a module");
  ok(i.exports[sampleExportName]() === sampleResult, "got result");
}

function fetchSampleModuleCode() {
  fetch(sampleURL)
  .then(response => response.arrayBuffer())
  .then(buffer => { sampleCode = buffer; runTest(); })
  .catch(err => ok(false, String(err)));
}

function propertiesExist() {
  if (!wasmIsSupported()) {
    ok(!this.WebAssembly, "If the device doesn't support, there will be no WebAssembly object");
    SimpleTest.finish();
    return;
  }

  ok(WebAssembly, "WebAssembly object should exist");
  ok(WebAssembly.compile, "WebAssembly.compile function should exist");
  runTest();
}

function compileFail() {
  WebAssembly.compile().then(
    () => { ok(false, "should have failed"); runTest(); }
  ).catch(
    err => { ok(err instanceof TypeError, "empty compile failed"); runTest(); }
  );
}

function compileSuccess() {
  WebAssembly.compile(sampleCode).then(
    m => { checkSampleModule(m); runTest(); }
  ).catch(
    err => { ok(false, String(err)); runTest(); }
  );
}

function compileManySuccess() {
  const N = 100;

  var arr = [];
  for (var i = 0; i < N; i++)
    arr.push(WebAssembly.compile(sampleCode));

  SpecialPowers.gc();

  Promise.all(arr).then(ms => {
    ok(ms.length === N, "got the right number");
    for (var j = 0; j < N; j++)
      checkSampleModule(ms[j]);
    runTest();
  }).catch(
    err => { ok(false, String(err)); runTest(); }
  );
}

function terminateCompileInWorker() {
    var w = new Worker(`data:text/plain,
      var sampleCode;
      function spawnWork() {
        const N = 100;
        var arr = [];
        for (var i = 0; i < N; i++)
          arr.push(WebAssembly.compile(sampleCode));
        Promise.all(arr).then(spawnWork);
      }
      onmessage = e => {
        sampleCode = e.data;
        spawnWork();
        postMessage("ok");
      }
    `);
    w.postMessage(sampleCode);
    w.onmessage = e => {
      ok(e.data === "ok", "worker finished first step");
      w.terminate();
      runTest();
    };
}

function instantiateFail() {
  WebAssembly.instantiate().then(
    () => { ok(false, "should have failed"); runTest(); }
  ).catch(
    err => { ok(err instanceof TypeError, "empty compile failed"); runTest(); }
  );
}

function instantiateSuccess() {
  WebAssembly.instantiate(sampleCode).then(
    r => { checkSampleModule(r.module); checkSampleInstance(r.instance); runTest(); }
  ).catch(
    err => { ok(false, String(err)); runTest(); }
  );
}

function chainSuccess() {
  WebAssembly.compile(sampleCode).then(
    m => WebAssembly.instantiate(m)
  ).then(
    i => { checkSampleInstance(i); runTest(); }
  ).catch(
    err => { ok(false, String(err)); runTest(); }
  );
}

function compileStreamingNonResponse() {
  WebAssembly.compileStreaming({})
  .then(() => { ok(false); })
  .catch(err => { ok(err instanceof TypeError, "rejected {}"); runTest(); });
}

function compileStreamingNoMime() {
  WebAssembly.compileStreaming(new Response(new ArrayBuffer()))
  .then(() => { ok(false); })
  .catch(err => { ok(err instanceof TypeError, "rejected no MIME type"); runTest(); });
}

function compileStreamingBadMime() {
  var badMimes = [
    "",
    "application/js",
    "application/js;application/wasm",
    "application/wasm;application/js",
    "application/wasm;",
    "application/wasm1",
  ];
  var promises = [];
  for (let mimeType of badMimes) {
    var init = { headers: { "Content-Type": mimeType } };
    promises.push(
      WebAssembly.compileStreaming(new Response(sampleCode, init))
      .then(() => Promise.reject(), err => {
        is(err.message,
          `WebAssembly: Response has unsupported MIME type '${mimeType}' expected 'application/wasm'`,
          "correct MIME type error message");
        return Promise.resolve();
      })
    );
  }
  Promise.all(promises)
  .then(() => { ok(true, "all bad MIME types rejected"); runTest(); });
}

function compileStreamingGoodMime() {
  var badMimes = [
    "application/wasm",
    "   application/wasm ",
    "application/wasm   ",
  ];
  var promises = [];
  for (let mimeType of badMimes) {
    var init = { headers: { "Content-Type": mimeType } };
    promises.push(
      WebAssembly.compileStreaming(new Response(sampleCode, init))
    );
  }
  Promise.all(promises)
  .then(() => { ok(true, "all good MIME types accepted"); runTest(); });
}

function compileStreamingDoubleUseFail() {
  fetch(sampleURL)
  .then(response => {
      WebAssembly.compileStreaming(response)
      .then(m => {
        checkSampleModule(m);
        return WebAssembly.compileStreaming(response);
      })
      .then(
        () => ok(false, "should have failed on second use"),
        err => { ok(true, "failed on second use"); runTest(); }
      );
  });
}

function compileStreamingNullBody() {
  var init = { headers: { "Content-Type": "application/wasm" } };
  WebAssembly.compileStreaming(new Response(undefined, init))
  .then(() => { ok(false); })
  .catch(err => { ok(err instanceof WebAssembly.CompileError, "null body"); runTest(); });
}

function compileStreamingFetch() {
  WebAssembly.compileStreaming(fetch(sampleURL))
  .then(m => { checkSampleModule(m); runTest(); })
  .catch(err => { ok(false, String(err)); });
}

function instantiateStreamingFetch() {
  WebAssembly.instantiateStreaming(fetch(sampleURL))
  .then(({module, instance}) => { checkSampleModule(module); checkSampleInstance(instance); runTest(); })
  .catch(err => { ok(false, String(err)); });
}

function compileManyStreamingFetch() {
  const N = 20;

  var arr = [];
  for (var i = 0; i < N; i++)
    arr.push(WebAssembly.compileStreaming(fetch(sampleURL)));

  SpecialPowers.gc();

  Promise.all(arr).then(ms => {
    ok(ms.length === N, "got the right number");
    for (var j = 0; j < N; j++)
      checkSampleModule(ms[j]);
    runTest();
  }).catch(
    err => { ok(false, String(err)); runTest(); }
  );
}

function runWorkerTests() {
  var w = new Worker("test_webassembly_compile_worker.js");
  w.postMessage(sampleCode);
  w.onmessage = e => {
    ok(e.data === "ok", "worker test: " + e.data);
    runTest();
  };
}

function terminateCompileStreamingInWorker() {
  var w = new Worker("test_webassembly_compile_worker_terminate.js");
  w.onmessage = e => {
    ok(e.data === "ok", "worker streaming terminate test: " + e.data);
    w.terminate();
    runTest();
  };
}

var tests = [ propertiesExist,
              compileFail,
              compileSuccess,
              compileManySuccess,
              terminateCompileInWorker,
              instantiateFail,
              instantiateSuccess,
              chainSuccess,
              compileStreamingNonResponse,
              compileStreamingNoMime,
              compileStreamingBadMime,
              compileStreamingGoodMime,
              compileStreamingDoubleUseFail,
              compileStreamingNullBody,
              compileStreamingFetch,
              instantiateStreamingFetch,
              compileManyStreamingFetch,
              runWorkerTests,
              terminateCompileStreamingInWorker,
            ];

// This initialization must always run
tests.unshift(fetchSampleModuleCode);

function runTest() {
  if (!tests.length) {
    SimpleTest.finish();
    return;
  }

  var test = tests.shift();
  test();
}

SimpleTest.waitForExplicitFinish();
runTest();
</script>
</body>
</html>