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() {
|
|
|
|
deno_print("Hello world from foo");
|
|
|
|
return "foo";
|
|
|
|
}
|
|
|
|
|
|
|
|
function PubSuccess() {
|
2018-06-11 14:18:56 -04:00
|
|
|
deno_sub(msg => {
|
2018-06-11 15:30:58 -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() {
|
|
|
|
deno_sub(msg => {
|
|
|
|
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);
|
|
|
|
let r = deno_pub(ab);
|
|
|
|
assert(r == null);
|
|
|
|
r = deno_pub(ab);
|
|
|
|
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);
|
|
|
|
const r = deno_pub(ab);
|
|
|
|
assert(r instanceof ArrayBuffer);
|
|
|
|
assert(r.byteLength === 3);
|
|
|
|
const rui8 = new Uint8Array(r);
|
|
|
|
const rstr = String.fromCharCode(...rui8);
|
|
|
|
assert(rstr === "bar");
|
|
|
|
}
|