summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wasm/jsapi/exception/constructor.tentative.any.js
blob: 7ad08e1883ba13c38fa9c21b1f053fc6e6d5b1a3 (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
// META: global=window,dedicatedworker,jsshell
// META: script=/wasm/jsapi/assertions.js

test(() => {
  assert_function_name(
    WebAssembly.Exception,
    "Exception",
    "WebAssembly.Exception"
  );
}, "name");

test(() => {
  assert_function_length(WebAssembly.Exception, 1, "WebAssembly.Exception");
}, "length");

test(() => {
  assert_throws_js(TypeError, () => new WebAssembly.Exception());
}, "No arguments");

test(() => {
  const tag = new WebAssembly.Tag({ parameters: [] });
  assert_throws_js(TypeError, () => WebAssembly.Exception(tag));
}, "Calling");

test(() => {
  const invalidArguments = [
    undefined,
    null,
    false,
    true,
    "",
    "test",
    Symbol(),
    1,
    NaN,
    {},
  ];
  for (const invalidArgument of invalidArguments) {
    assert_throws_js(
      TypeError,
      () => new WebAssembly.Exception(invalidArgument),
      `new Exception(${format_value(invalidArgument)})`
    );
  }
}, "Invalid descriptor argument");

test(() => {
  const typesAndArgs = [
    ["i32", 123n],
    ["i32", Symbol()],
    ["f32", 123n],
    ["f64", 123n],
    ["i64", undefined],
  ];
  for (const typeAndArg of typesAndArgs) {
    const tag = new WebAssembly.Tag({ parameters: [typeAndArg[0]] });
    assert_throws_js(
      TypeError,
      () => new WebAssembly.Exception(tag, typeAndArg[1])
    );
  }
}, "Invalid exception argument");