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

function test() {
  assertTypeErrorMessage(() => { ctypes.StructType("a").define.call(1); },
                         "StructType.prototype.define called on incompatible object, got the number 1");
  assertTypeErrorMessage(() => { ctypes.StructType("a").define.call(ctypes.int32_t); },
                         "StructType.prototype.define called on non-StructType, got ctypes.int32_t");

  let p = Object.getPrototypeOf(ctypes.StructType("a", [ { "x": ctypes.int32_t, } ])());
  let o = {};
  Object.setPrototypeOf(o, p);
  assertTypeErrorMessage(() => { let a = o.x; },
                         "StructType property getter called on incompatible object, got <<error converting value to string>>");
  assertTypeErrorMessage(() => { o.x = 1; },
                         "StructType property setter called on incompatible object, got <<error converting value to string>>");

  o = ctypes.int32_t(0);
  Object.setPrototypeOf(o, p);
  assertTypeErrorMessage(() => { let a = o.x; },
                         "StructType property getter called on non-StructType CData, got ctypes.int32_t(0)");
  assertTypeErrorMessage(() => { o.x = 1; },
                         "StructType property setter called on non-StructType CData, got ctypes.int32_t(0)");

  assertTypeErrorMessage(() => { ctypes.StructType("a", [])().addressOfField.call(1); },
                         "StructType.prototype.addressOfField called on incompatible object, got the number 1");
  assertTypeErrorMessage(() => { ctypes.StructType("a", [])().addressOfField.call(ctypes.int32_t(0)); },
                         "StructType.prototype.addressOfField called on non-StructType CData, got ctypes.int32_t(0)");
}

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