summaryrefslogtreecommitdiff
path: root/deno2/js/mock_runtime.js
blob: 570d6cf28d199eb1b91bb5b8bb20de9fb8cc4c33 (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
// A simple runtime that doesn't involve typescript or protobufs to test
// libdeno. Invoked by mock_runtime_test.cc
const window = eval("this");

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

function typedArrayToArrayBuffer(ta) {
  return ta.buffer.slice(ta.byteOffset, ta.byteOffset + ta.byteLength);
}

function CanCallFunction() {
  denoPrint("Hello world from foo");
  return "foo";
}

function PubSuccess() {
  denoSub((channel, msg) => {
    assert(channel === "PubSuccess");
    denoPrint("PubSuccess: ok");
  });
}

function PubByteLength() {
  denoSub((channel, msg) => {
    assert(channel === "PubByteLength");
    assert(msg instanceof ArrayBuffer);
    assert(msg.byteLength === 3);
  });
}

function SubReturnEmpty() {
  const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
  const ab = typedArrayToArrayBuffer(ui8);
  let r = denoPub("SubReturnEmpty", ab);
  assert(r == null);
  r = denoPub("SubReturnEmpty", ab);
  assert(r == null);
}

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

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