summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ctypes/function-definition.js
blob: 5882ba8891ba4687183ae45794b2c093a63f2562 (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
load(libdir + 'asserts.js');

function test() {
  assertRangeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t, []).ptr(x=>1)(1); },
                         "number of arguments does not match declaration of ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t) (expected 0, got 1)");

  assertTypeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t, [1]); },
                         "the type of argument 1 is not a ctypes type (got the number 1)");
  assertTypeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t, [ctypes.void_t]); },
                         "the type of argument 1 cannot be void or function (got ctypes.void)");
  assertTypeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t, [ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t, [])]); },
                         "the type of argument 1 cannot be void or function (got ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t))");
  assertTypeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t, [ctypes.StructType("a")]); },
                         "the type of argument 1 must have defined size (got ctypes.StructType(\"a\"))");

  assertTypeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t, [])(); },
                         "cannot construct from FunctionType; use FunctionType.ptr instead");

  assertTypeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, 1, []); },
                         "return type is not a ctypes type (got the number 1)");
  assertTypeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t.array(), []); },
                         "return type cannot be an array or function (got ctypes.int32_t.array())");
  assertTypeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t, []), []); },
                         "return type cannot be an array or function (got ctypes.FunctionType(ctypes.default_abi, ctypes.int32_t))");
  assertTypeErrorMessage(() => { ctypes.FunctionType(ctypes.default_abi, ctypes.StructType("a"), []); },
                         "return type must have defined size (got ctypes.StructType(\"a\"))");

  let lib;
  try {
    lib = ctypes.open(ctypes.libraryName("m"));
  } catch (e) {
  }
  if (!lib)
    return;

  let func = lib.declare("hypot",
                         ctypes.default_abi,
                         ctypes.double,
                         ctypes.double, "...");
  assertRangeErrorMessage(() => { func(); },
                          "number of arguments does not match declaration of double hypot(double, ...) (expected 1 or more, got 0)");
  assertTypeErrorMessage(() => { func(1, 2); },
                          "variadic argument 2 must be a CData object (got the number 2)");
}

if (typeof ctypes === "object")
  test();