deno/js/mock_runtime.js

148 lines
4.2 KiB
JavaScript
Raw Normal View History

// Copyright 2018 the Deno authors. All rights reserved. MIT license.
2018-06-11 15:01:35 +00:00
// A simple runtime that doesn't involve typescript or protobufs to test
// libdeno. Invoked by mock_runtime_test.cc
2018-06-11 15:01:35 +00:00
2018-06-19 15:45:58 +00:00
const global = this;
2018-06-11 16:17:28 +00:00
function assert(cond) {
if (!cond) throw Error("mock_runtime.js assert failed");
2018-06-11 16:17:28 +00:00
}
2018-06-19 15:45:58 +00:00
global.CanCallFunction = () => {
2018-08-06 22:37:32 +00:00
libdeno.print("Hello world from foo");
return "foo";
2018-06-19 15:45:58 +00:00
};
2018-06-12 04:36:01 +00:00
// This object is created to test snapshotting.
// See DeserializeInternalFieldsCallback and SerializeInternalFieldsCallback.
const snapshotted = new Uint8Array([1, 3, 3, 7]);
2018-06-19 15:45:58 +00:00
global.TypedArraySnapshots = () => {
2018-06-12 04:36:01 +00:00
assert(snapshotted[0] === 1);
assert(snapshotted[1] === 3);
assert(snapshotted[2] === 3);
assert(snapshotted[3] === 7);
2018-06-19 15:45:58 +00:00
};
2018-06-12 04:36:01 +00:00
global.SendSuccess = () => {
2018-08-06 22:37:32 +00:00
libdeno.recv(msg => {
libdeno.print("SendSuccess: ok");
2018-06-11 16:17:28 +00:00
});
2018-06-19 15:45:58 +00:00
};
2018-06-11 18:18:56 +00:00
global.SendWrongByteLength = () => {
2018-08-06 22:37:32 +00:00
libdeno.recv(msg => {
assert(msg.byteLength === 3);
});
2018-06-19 15:45:58 +00:00
};
2018-06-11 18:18:56 +00:00
global.RecvReturnEmpty = () => {
const m1 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
const m2 = m1.slice();
2018-08-06 22:37:32 +00:00
const r1 = libdeno.send(m1);
assert(r1 == null);
2018-08-06 22:37:32 +00:00
const r2 = libdeno.send(m2);
assert(r2 == null);
2018-06-19 15:45:58 +00:00
};
2018-06-11 18:18:56 +00:00
global.RecvReturnBar = () => {
const m = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
2018-08-06 22:37:32 +00:00
const r = libdeno.send(m);
assert(r instanceof Uint8Array);
2018-06-11 18:18:56 +00:00
assert(r.byteLength === 3);
const rstr = String.fromCharCode(...r);
2018-06-11 18:18:56 +00:00
assert(rstr === "bar");
2018-06-19 15:45:58 +00:00
};
2018-06-11 20:51:11 +00:00
global.DoubleRecvFails = () => {
2018-08-06 22:37:32 +00:00
// libdeno.recv is an internal function and should only be called once from the
2018-06-11 20:51:11 +00:00
// runtime.
2018-08-06 22:37:32 +00:00
libdeno.recv((channel, msg) => assert(false));
libdeno.recv((channel, msg) => assert(false));
2018-06-19 15:45:58 +00:00
};
2018-06-18 13:55:36 +00:00
global.SendRecvSlice = () => {
const abLen = 1024;
let buf = new Uint8Array(abLen);
for (let i = 0; i < 5; i++) {
// Set first and last byte, for verification by the native side.
buf[0] = 100 + i;
buf[buf.length - 1] = 100 - i;
// On the native side, the slice is shortened by 19 bytes.
2018-08-06 22:37:32 +00:00
buf = libdeno.send(buf);
assert(buf.byteOffset === i * 11);
assert(buf.byteLength === abLen - i * 30 - 19);
assert(buf.buffer.byteLength == abLen);
// Look for values written by the backend.
assert(buf[0] === 200 + i);
assert(buf[buf.length - 1] === 200 - i);
// On the JS side, the start of the slice is moved up by 11 bytes.
buf = buf.subarray(11);
assert(buf.byteOffset === (i + 1) * 11);
assert(buf.byteLength === abLen - (i + 1) * 30);
}
};
global.JSSendArrayBufferViewTypes = () => {
// Test that ArrayBufferView slices are transferred correctly.
// Send Uint8Array.
const ab1 = new ArrayBuffer(4321);
const u8 = new Uint8Array(ab1, 2468, 1000);
u8[0] = 1;
2018-08-06 22:37:32 +00:00
libdeno.send(u8);
// Send Uint32Array.
const ab2 = new ArrayBuffer(4321);
const u32 = new Uint32Array(ab2, 2468, 1000 / Uint32Array.BYTES_PER_ELEMENT);
u32[0] = 0x02020202;
2018-08-06 22:37:32 +00:00
libdeno.send(u32);
// Send DataView.
const ab3 = new ArrayBuffer(4321);
const dv = new DataView(ab3, 2468, 1000);
dv.setUint8(0, 3);
2018-08-06 22:37:32 +00:00
libdeno.send(dv);
};
global.JSSendNeutersBuffer = () => {
// Buffer should be neutered after transferring it to the native side.
const u8 = new Uint8Array([42]);
assert(u8.byteLength === 1);
assert(u8.buffer.byteLength === 1);
assert(u8[0] === 42);
2018-08-06 22:37:32 +00:00
const r = libdeno.send(u8);
assert(u8.byteLength === 0);
assert(u8.buffer.byteLength === 0);
assert(u8[0] === undefined);
};
2018-06-18 13:55:36 +00:00
// The following join has caused SnapshotBug to segfault when using kKeep.
[].join("");
2018-06-19 15:45:58 +00:00
global.SnapshotBug = () => {
2018-06-18 13:55:36 +00:00
assert("1,2,3" === String([1, 2, 3]));
2018-06-19 15:45:58 +00:00
};
global.ErrorHandling = () => {
global.onerror = (message, source, line, col, error) => {
2018-08-06 22:37:32 +00:00
libdeno.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);
2018-08-06 22:37:32 +00:00
libdeno.send(new Uint8Array([42]));
};
eval("\n\n notdefined()\n//# sourceURL=helloworld.js");
};
global.SendNullAllocPtr = () => {
2018-08-06 22:37:32 +00:00
libdeno.recv(msg => {
assert(msg instanceof Uint8Array);
assert(msg.byteLength === 4);
assert(msg[0] === "a".charCodeAt(0));
assert(msg[1] === "b".charCodeAt(0));
assert(msg[2] === "c".charCodeAt(0));
assert(msg[3] === "d".charCodeAt(0));
});
};