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

59 lines
1.5 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
const window = eval("this");
2018-06-11 17:01:35 +02:00
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
}
function typedArrayToArrayBuffer(ta) {
return ta.buffer.slice(ta.byteOffset, ta.byteOffset + ta.byteLength);
}
function CanCallFunction() {
2018-06-11 22:41:43 +02:00
denoPrint("Hello world from foo");
return "foo";
}
function PubSuccess() {
2018-06-11 22:41:43 +02:00
denoSub((channel, msg) => {
2018-06-11 21:57:25 +02:00
assert(channel === "PubSuccess");
2018-06-11 22:41:43 +02:00
denoPrint("PubSuccess: ok");
2018-06-11 18:17:28 +02:00
});
}
2018-06-11 20:18:56 +02:00
function PubByteLength() {
2018-06-11 22:41:43 +02:00
denoSub((channel, msg) => {
2018-06-11 21:57:25 +02:00
assert(channel === "PubByteLength");
assert(msg instanceof ArrayBuffer);
assert(msg.byteLength === 3);
});
2018-06-11 20:18:56 +02:00
}
function 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-11 22:41:43 +02:00
let r = denoPub("SubReturnEmpty", ab);
2018-06-11 20:18:56 +02:00
assert(r == null);
2018-06-11 22:41:43 +02:00
r = denoPub("SubReturnEmpty", ab);
2018-06-11 20:18:56 +02:00
assert(r == null);
}
function 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-11 22:41:43 +02:00
const r = denoPub("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-11 22:51:11 +02:00
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));
}