2018-06-11 11:01:35 -04:00
|
|
|
// A simple runtime that doesn't involve typescript or protobufs to test
|
2018-06-11 15:30:58 -04:00
|
|
|
// libdeno. Invoked by mock_runtime_test.cc
|
2018-06-11 13:05:27 -04:00
|
|
|
const window = eval("this");
|
2018-06-11 11:01:35 -04:00
|
|
|
|
2018-06-11 12:17:28 -04:00
|
|
|
function assert(cond) {
|
2018-06-11 13:05:27 -04:00
|
|
|
if (!cond) throw Error("mock_runtime.js assert failed");
|
2018-06-11 12:17:28 -04:00
|
|
|
}
|
|
|
|
|
2018-06-11 15:30:58 -04:00
|
|
|
function typedArrayToArrayBuffer(ta) {
|
|
|
|
return ta.buffer.slice(ta.byteOffset, ta.byteOffset + ta.byteLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
function CanCallFunction() {
|
2018-06-14 08:31:31 -04:00
|
|
|
deno.print("Hello world from foo");
|
2018-06-11 15:30:58 -04:00
|
|
|
return "foo";
|
|
|
|
}
|
|
|
|
|
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]);
|
|
|
|
|
|
|
|
function TypedArraySnapshots() {
|
|
|
|
assert(snapshotted[0] === 1);
|
|
|
|
assert(snapshotted[1] === 3);
|
|
|
|
assert(snapshotted[2] === 3);
|
|
|
|
assert(snapshotted[3] === 7);
|
|
|
|
}
|
|
|
|
|
2018-06-11 15:30:58 -04:00
|
|
|
function PubSuccess() {
|
2018-06-14 08:31:31 -04:00
|
|
|
deno.sub((channel, msg) => {
|
2018-06-11 15:57:25 -04:00
|
|
|
assert(channel === "PubSuccess");
|
2018-06-14 08:31:31 -04:00
|
|
|
deno.print("PubSuccess: ok");
|
2018-06-11 12:17:28 -04:00
|
|
|
});
|
|
|
|
}
|
2018-06-11 14:18:56 -04:00
|
|
|
|
2018-06-11 15:30:58 -04:00
|
|
|
function PubByteLength() {
|
2018-06-14 08:31:31 -04:00
|
|
|
deno.sub((channel, msg) => {
|
2018-06-11 15:57:25 -04:00
|
|
|
assert(channel === "PubByteLength");
|
2018-06-11 15:30:58 -04:00
|
|
|
assert(msg instanceof ArrayBuffer);
|
|
|
|
assert(msg.byteLength === 3);
|
|
|
|
});
|
2018-06-11 14:18:56 -04:00
|
|
|
}
|
|
|
|
|
2018-06-11 15:30:58 -04:00
|
|
|
function SubReturnEmpty() {
|
2018-06-11 14:18:56 -04:00
|
|
|
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
|
|
|
|
const ab = typedArrayToArrayBuffer(ui8);
|
2018-06-14 08:31:31 -04:00
|
|
|
let r = deno.pub("SubReturnEmpty", ab);
|
2018-06-11 14:18:56 -04:00
|
|
|
assert(r == null);
|
2018-06-14 08:31:31 -04:00
|
|
|
r = deno.pub("SubReturnEmpty", ab);
|
2018-06-11 14:18:56 -04:00
|
|
|
assert(r == null);
|
|
|
|
}
|
|
|
|
|
2018-06-11 15:30:58 -04:00
|
|
|
function SubReturnBar() {
|
2018-06-11 14:18:56 -04:00
|
|
|
const ui8 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
|
|
|
|
const ab = typedArrayToArrayBuffer(ui8);
|
2018-06-14 08:31:31 -04:00
|
|
|
const r = deno.pub("SubReturnBar", 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-11 16:51:11 -04:00
|
|
|
|
|
|
|
function DoubleSubFails() {
|
2018-06-14 08:31:31 -04:00
|
|
|
// deno.sub is an internal function and should only be called once from the
|
2018-06-11 16:51:11 -04:00
|
|
|
// runtime.
|
2018-06-14 08:31:31 -04:00
|
|
|
deno.sub((channel, msg) => assert(false));
|
|
|
|
deno.sub((channel, msg) => assert(false));
|
2018-06-11 16:51:11 -04:00
|
|
|
}
|