summaryrefslogtreecommitdiffstats
path: root/devtools/server/tests/xpcshell/test_wasm_source-01.js
blob: fe8e43e236f8a184f69738dbb4582f2340222736 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
/* eslint-disable no-shadow, max-nested-callbacks */

"use strict";

/**
 * Verify if client can receive binary wasm
 */

var gDebuggee;
var gThreadFront;

add_task(
  threadFrontTest(
    async ({ threadFront, debuggee, client }) => {
      gThreadFront = threadFront;
      gDebuggee = debuggee;

      await gThreadFront.reconfigure({
        observeAsmJS: true,
        observeWasm: true,
      });

      test_source();
    },
    { waitForFinish: true, doNotRunWorker: true }
  )
);

const EXPECTED_CONTENT = String.fromCharCode(
  0,
  97,
  115,
  109,
  1,
  0,
  0,
  0,
  1,
  132,
  128,
  128,
  128,
  0,
  1,
  96,
  0,
  0,
  3,
  130,
  128,
  128,
  128,
  0,
  1,
  0,
  6,
  129,
  128,
  128,
  128,
  0,
  0,
  7,
  133,
  128,
  128,
  128,
  0,
  1,
  1,
  102,
  0,
  0,
  10,
  136,
  128,
  128,
  128,
  0,
  1,
  130,
  128,
  128,
  128,
  0,
  0,
  11
);

function test_source() {
  gThreadFront.once("paused", function (packet) {
    gThreadFront.getSources().then(function (response) {
      Assert.ok(!!response);
      Assert.ok(!!response.sources);

      const source = response.sources.filter(function (s) {
        return s.introductionType === "wasm";
      })[0];

      Assert.ok(!!source);

      const sourceFront = gThreadFront.source(source);
      sourceFront.source().then(function (response) {
        Assert.ok(!!response);
        Assert.ok(!!response.contentType);
        Assert.ok(response.contentType.includes("wasm"));

        const sourceContent = response.source;
        Assert.ok(!!sourceContent);
        Assert.equal(typeof sourceContent, "object");
        Assert.ok("binary" in sourceContent);
        Assert.equal(EXPECTED_CONTENT, sourceContent.binary);

        gThreadFront.resume().then(function () {
          threadFrontTestFinished();
        });
      });
    });
  });

  /* eslint-disable comma-spacing, max-len */
  gDebuggee.eval(
    "(" +
      function () {
        // WebAssembly bytecode was generated by running:
        // js -e 'print(wasmTextToBinary("(module(func(export \"f\")))"))'
        const m = new WebAssembly.Module(
          new Uint8Array([
            0, 97, 115, 109, 1, 0, 0, 0, 1, 132, 128, 128, 128, 0, 1, 96, 0, 0,
            3, 130, 128, 128, 128, 0, 1, 0, 6, 129, 128, 128, 128, 0, 0, 7, 133,
            128, 128, 128, 0, 1, 1, 102, 0, 0, 10, 136, 128, 128, 128, 0, 1,
            130, 128, 128, 128, 0, 0, 11,
          ])
        );
        const i = new WebAssembly.Instance(m);
        debugger;
        i.exports.f();
      } +
      ")()"
  );
}