1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/js/mock_runtime.js

91 lines
2.6 KiB
JavaScript
Raw Normal View History

2018-06-11 11:01:35 -04:00
// A simple runtime that doesn't involve typescript or protobufs to test
// libdeno. Invoked by mock_runtime_test.cc
2018-06-11 11:01:35 -04:00
2018-06-19 11:45:58 -04:00
const global = this;
2018-06-11 12:17:28 -04:00
function assert(cond) {
if (!cond) throw Error("mock_runtime.js assert failed");
2018-06-11 12:17:28 -04:00
}
2018-06-22 15:16:27 -04:00
global.typedArrayToArrayBuffer = ta => {
return ta.buffer.slice(ta.byteOffset, ta.byteOffset + ta.byteLength);
2018-06-19 11:45:58 -04:00
};
2018-06-19 11:45:58 -04:00
global.CanCallFunction = () => {
2018-06-14 08:31:31 -04:00
deno.print("Hello world from foo");
return "foo";
2018-06-19 11:45:58 -04:00
};
2018-06-12 00:36:01 -04:00
// This object is created to test snapshotting.
// See DeserializeInternalFieldsCallback and SerializeInternalFieldsCallback.
const snapshotted = new Uint8Array([1, 3, 3, 7]);
2018-06-19 11:45:58 -04:00
global.TypedArraySnapshots = () => {
2018-06-12 00:36:01 -04:00
assert(snapshotted[0] === 1);
assert(snapshotted[1] === 3);
assert(snapshotted[2] === 3);
assert(snapshotted[3] === 7);
2018-06-19 11:45:58 -04:00
};
2018-06-12 00:36:01 -04:00
global.SendSuccess = () => {
deno.recv((channel, msg) => {
assert(channel === "SendSuccess");
deno.print("SendSuccess: ok");
2018-06-11 12:17:28 -04:00
});
2018-06-19 11:45:58 -04:00
};
2018-06-11 14:18:56 -04:00
global.SendByteLength = () => {
deno.recv((channel, msg) => {
assert(channel === "SendByteLength");
assert(msg instanceof ArrayBuffer);
assert(msg.byteLength === 3);
});
2018-06-19 11:45:58 -04:00
};
2018-06-11 14:18:56 -04:00
global.RecvReturnEmpty = () => {
2018-06-11 14:18:56 -04:00
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
const ab = typedArrayToArrayBuffer(ui8);
let r = deno.send("RecvReturnEmpty", ab);
2018-06-11 14:18:56 -04:00
assert(r == null);
r = deno.send("RecvReturnEmpty", ab);
2018-06-11 14:18:56 -04:00
assert(r == null);
2018-06-19 11:45:58 -04:00
};
2018-06-11 14:18:56 -04:00
global.RecvReturnBar = () => {
2018-06-11 14:18:56 -04:00
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
const ab = typedArrayToArrayBuffer(ui8);
const r = deno.send("RecvReturnBar", ab);
2018-06-11 14:18:56 -04:00
assert(r instanceof ArrayBuffer);
assert(r.byteLength === 3);
const rui8 = new Uint8Array(r);
const rstr = String.fromCharCode(...rui8);
assert(rstr === "bar");
2018-06-19 11:45:58 -04:00
};
2018-06-11 16:51:11 -04:00
global.DoubleRecvFails = () => {
// deno.recv is an internal function and should only be called once from the
2018-06-11 16:51:11 -04:00
// runtime.
deno.recv((channel, msg) => assert(false));
deno.recv((channel, msg) => assert(false));
2018-06-19 11:45:58 -04:00
};
2018-06-18 09:55:36 -04:00
// The following join has caused SnapshotBug to segfault when using kKeep.
[].join("");
2018-06-19 11:45:58 -04:00
global.SnapshotBug = () => {
2018-06-18 09:55:36 -04:00
assert("1,2,3" === String([1, 2, 3]));
2018-06-19 11:45:58 -04:00
};
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("ErrorHandling", typedArrayToArrayBuffer(new Uint8Array([42])));
};
eval("\n\n notdefined()\n//# sourceURL=helloworld.js");
};