summaryrefslogtreecommitdiff
path: root/js/mock_runtime.js
blob: 66a34657ead1b596bd6de252604e0c7ef58bea55 (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
// A simple runtime that doesn't involve typescript or protobufs to test
// libdeno. Invoked by mock_runtime_test.cc

const global = this;

function assert(cond) {
  if (!cond) throw Error("mock_runtime.js assert failed");
}

global.typedArrayToArrayBuffer = ta => {
  return ta.buffer.slice(ta.byteOffset, ta.byteOffset + ta.byteLength);
};

global.CanCallFunction = () => {
  deno.print("Hello world from foo");
  return "foo";
};

// This object is created to test snapshotting.
// See DeserializeInternalFieldsCallback and SerializeInternalFieldsCallback.
const snapshotted = new Uint8Array([1, 3, 3, 7]);

global.TypedArraySnapshots = () => {
  assert(snapshotted[0] === 1);
  assert(snapshotted[1] === 3);
  assert(snapshotted[2] === 3);
  assert(snapshotted[3] === 7);
};

global.SendSuccess = () => {
  deno.recv(msg => {
    deno.print("SendSuccess: ok");
  });
};

global.SendByteLength = () => {
  deno.recv(msg => {
    assert(msg instanceof ArrayBuffer);
    assert(msg.byteLength === 3);
  });
};

global.RecvReturnEmpty = () => {
  const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
  const ab = typedArrayToArrayBuffer(ui8);
  let r = deno.send(ab);
  assert(r == null);
  r = deno.send(ab);
  assert(r == null);
};

global.RecvReturnBar = () => {
  const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
  const ab = typedArrayToArrayBuffer(ui8);
  const r = deno.send(ab);
  assert(r instanceof ArrayBuffer);
  assert(r.byteLength === 3);
  const rui8 = new Uint8Array(r);
  const rstr = String.fromCharCode(...rui8);
  assert(rstr === "bar");
};

global.DoubleRecvFails = () => {
  // deno.recv is an internal function and should only be called once from the
  // runtime.
  deno.recv((channel, msg) => assert(false));
  deno.recv((channel, msg) => assert(false));
};

// The following join has caused SnapshotBug to segfault when using kKeep.
[].join("");

global.SnapshotBug = () => {
  assert("1,2,3" === String([1, 2, 3]));
};

global.ErrorHandling = () => {
  global.onerror = (message, source, line, col, error) => {
    deno.print(`line ${line} col ${col}`);
    assert("ReferenceError: notdefined is not defined" === message);
    assert(source === "helloworld.js");
    assert(line === 3);
    assert(col === 1);
    assert(error instanceof Error);
    deno.send(typedArrayToArrayBuffer(new Uint8Array([42])));
  };
  eval("\n\n notdefined()\n//# sourceURL=helloworld.js");
};