0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-31 03:36:06 -05:00
denoland-deno/deno2/js/mock_runtime.js

78 lines
2.1 KiB
JavaScript
Raw Normal View History

2018-06-11 17:01:35 +02:00
// A simple runtime that doesn't involve typescript or protobufs to test
// libdeno. Invoked by mock_runtime_test.cc
2018-06-11 17:01:35 +02:00
2018-06-19 17:45:58 +02:00
const global = this;
2018-06-11 18:17:28 +02:00
function assert(cond) {
if (!cond) throw Error("mock_runtime.js assert failed");
2018-06-11 18:17:28 +02:00
}
2018-06-19 17:45:58 +02:00
global.typedArrayToArrayBuffer = (ta) => {
return ta.buffer.slice(ta.byteOffset, ta.byteOffset + ta.byteLength);
2018-06-19 17:45:58 +02:00
};
2018-06-19 17:45:58 +02:00
global.CanCallFunction = () => {
2018-06-14 14:31:31 +02:00
deno.print("Hello world from foo");
return "foo";
2018-06-19 17:45:58 +02:00
};
2018-06-12 06:36:01 +02:00
// This object is created to test snapshotting.
// See DeserializeInternalFieldsCallback and SerializeInternalFieldsCallback.
const snapshotted = new Uint8Array([1, 3, 3, 7]);
2018-06-19 17:45:58 +02:00
global.TypedArraySnapshots = () => {
2018-06-12 06:36:01 +02:00
assert(snapshotted[0] === 1);
assert(snapshotted[1] === 3);
assert(snapshotted[2] === 3);
assert(snapshotted[3] === 7);
2018-06-19 17:45:58 +02:00
};
2018-06-12 06:36:01 +02:00
2018-06-19 17:45:58 +02:00
global.PubSuccess = () => {
2018-06-14 14:31:31 +02:00
deno.sub((channel, msg) => {
2018-06-11 21:57:25 +02:00
assert(channel === "PubSuccess");
2018-06-14 14:31:31 +02:00
deno.print("PubSuccess: ok");
2018-06-11 18:17:28 +02:00
});
2018-06-19 17:45:58 +02:00
};
2018-06-11 20:18:56 +02:00
2018-06-19 17:45:58 +02:00
global.PubByteLength = () => {
2018-06-14 14:31:31 +02:00
deno.sub((channel, msg) => {
2018-06-11 21:57:25 +02:00
assert(channel === "PubByteLength");
assert(msg instanceof ArrayBuffer);
assert(msg.byteLength === 3);
});
2018-06-19 17:45:58 +02:00
};
2018-06-11 20:18:56 +02:00
2018-06-19 17:45:58 +02:00
global.SubReturnEmpty = () => {
2018-06-11 20:18:56 +02:00
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
const ab = typedArrayToArrayBuffer(ui8);
2018-06-14 14:31:31 +02:00
let r = deno.pub("SubReturnEmpty", ab);
2018-06-11 20:18:56 +02:00
assert(r == null);
2018-06-14 14:31:31 +02:00
r = deno.pub("SubReturnEmpty", ab);
2018-06-11 20:18:56 +02:00
assert(r == null);
2018-06-19 17:45:58 +02:00
};
2018-06-11 20:18:56 +02:00
2018-06-19 17:45:58 +02:00
global.SubReturnBar = () => {
2018-06-11 20:18:56 +02:00
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
const ab = typedArrayToArrayBuffer(ui8);
2018-06-14 14:31:31 +02:00
const r = deno.pub("SubReturnBar", ab);
2018-06-11 20:18:56 +02: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 17:45:58 +02:00
};
2018-06-11 22:51:11 +02:00
2018-06-19 17:45:58 +02:00
global.DoubleSubFails = () => {
2018-06-14 14:31:31 +02:00
// deno.sub is an internal function and should only be called once from the
2018-06-11 22:51:11 +02:00
// runtime.
2018-06-14 14:31:31 +02:00
deno.sub((channel, msg) => assert(false));
deno.sub((channel, msg) => assert(false));
2018-06-19 17:45:58 +02:00
};
2018-06-18 15:55:36 +02:00
// The following join has caused SnapshotBug to segfault when using kKeep.
[].join("");
2018-06-19 17:45:58 +02:00
global.SnapshotBug = () => {
2018-06-18 15:55:36 +02:00
assert("1,2,3" === String([1, 2, 3]));
2018-06-19 17:45:58 +02:00
};