deno/deno2/js/mock_runtime.js

70 lines
1.9 KiB
JavaScript
Raw Normal View History

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
const window = eval("this");
2018-06-11 15:01:35 +00:00
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
}
function typedArrayToArrayBuffer(ta) {
return ta.buffer.slice(ta.byteOffset, ta.byteOffset + ta.byteLength);
}
function CanCallFunction() {
2018-06-14 12:31:31 +00:00
deno.print("Hello world from foo");
return "foo";
}
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]);
function TypedArraySnapshots() {
assert(snapshotted[0] === 1);
assert(snapshotted[1] === 3);
assert(snapshotted[2] === 3);
assert(snapshotted[3] === 7);
}
function PubSuccess() {
2018-06-14 12:31:31 +00:00
deno.sub((channel, msg) => {
2018-06-11 19:57:25 +00:00
assert(channel === "PubSuccess");
2018-06-14 12:31:31 +00:00
deno.print("PubSuccess: ok");
2018-06-11 16:17:28 +00:00
});
}
2018-06-11 18:18:56 +00:00
function PubByteLength() {
2018-06-14 12:31:31 +00:00
deno.sub((channel, msg) => {
2018-06-11 19:57:25 +00:00
assert(channel === "PubByteLength");
assert(msg instanceof ArrayBuffer);
assert(msg.byteLength === 3);
});
2018-06-11 18:18:56 +00:00
}
function SubReturnEmpty() {
2018-06-11 18:18:56 +00:00
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
const ab = typedArrayToArrayBuffer(ui8);
2018-06-14 12:31:31 +00:00
let r = deno.pub("SubReturnEmpty", ab);
2018-06-11 18:18:56 +00:00
assert(r == null);
2018-06-14 12:31:31 +00:00
r = deno.pub("SubReturnEmpty", ab);
2018-06-11 18:18:56 +00:00
assert(r == null);
}
function SubReturnBar() {
2018-06-11 18:18:56 +00:00
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
const ab = typedArrayToArrayBuffer(ui8);
2018-06-14 12:31:31 +00:00
const r = deno.pub("SubReturnBar", ab);
2018-06-11 18:18:56 +00:00
assert(r instanceof ArrayBuffer);
assert(r.byteLength === 3);
const rui8 = new Uint8Array(r);
const rstr = String.fromCharCode(...rui8);
assert(rstr === "bar");
}
2018-06-11 20:51:11 +00:00
function DoubleSubFails() {
2018-06-14 12:31:31 +00:00
// deno.sub is an internal function and should only be called once from the
2018-06-11 20:51:11 +00:00
// runtime.
2018-06-14 12:31:31 +00:00
deno.sub((channel, msg) => assert(false));
deno.sub((channel, msg) => assert(false));
2018-06-11 20:51:11 +00:00
}