2018-07-23 14:46:30 -04:00
|
|
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
2018-06-11 11:01:35 -04:00
|
|
|
// A simple runtime that doesn't involve typescript or protobufs to test
|
2018-08-10 15:09:28 -04:00
|
|
|
// libdeno. Invoked by libdeno_test.cc
|
2018-06-11 11:01:35 -04:00
|
|
|
|
2018-06-19 11:45:58 -04:00
|
|
|
const global = this;
|
|
|
|
|
2018-06-11 12:17:28 -04:00
|
|
|
function assert(cond) {
|
2018-08-10 15:09:28 -04:00
|
|
|
if (!cond) throw Error("libdeno_test.js assert failed");
|
2018-06-11 12:17:28 -04:00
|
|
|
}
|
|
|
|
|
2018-06-19 11:45:58 -04:00
|
|
|
global.CanCallFunction = () => {
|
2018-08-06 18:37:32 -04:00
|
|
|
libdeno.print("Hello world from foo");
|
2018-06-11 15:30:58 -04:00
|
|
|
return "foo";
|
2018-06-19 11:45:58 -04:00
|
|
|
};
|
2018-06-11 15:30:58 -04:00
|
|
|
|
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]);
|
|
|
|
|
2018-06-19 11:45:58 -04:00
|
|
|
global.TypedArraySnapshots = () => {
|
2018-06-12 00:36:01 -04:00
|
|
|
assert(snapshotted[0] === 1);
|
|
|
|
assert(snapshotted[1] === 3);
|
|
|
|
assert(snapshotted[2] === 3);
|
|
|
|
assert(snapshotted[3] === 7);
|
2018-06-19 11:45:58 -04:00
|
|
|
};
|
2018-06-12 00:36:01 -04:00
|
|
|
|
2018-07-01 12:07:12 -04:00
|
|
|
global.RecvReturnEmpty = () => {
|
2018-07-08 21:35:34 -04:00
|
|
|
const m1 = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
|
|
|
|
const m2 = m1.slice();
|
2018-08-06 18:37:32 -04:00
|
|
|
const r1 = libdeno.send(m1);
|
2018-07-08 21:35:34 -04:00
|
|
|
assert(r1 == null);
|
2018-08-06 18:37:32 -04:00
|
|
|
const r2 = libdeno.send(m2);
|
2018-07-08 21:35:34 -04:00
|
|
|
assert(r2 == null);
|
2018-06-19 11:45:58 -04:00
|
|
|
};
|
2018-06-11 14:18:56 -04:00
|
|
|
|
2018-07-01 12:07:12 -04:00
|
|
|
global.RecvReturnBar = () => {
|
2018-07-08 21:35:34 -04:00
|
|
|
const m = new Uint8Array("abc".split("").map(c => c.charCodeAt(0)));
|
2018-08-06 18:37:32 -04:00
|
|
|
const r = libdeno.send(m);
|
2018-07-08 21:35:34 -04:00
|
|
|
assert(r instanceof Uint8Array);
|
2018-06-11 14:18:56 -04:00
|
|
|
assert(r.byteLength === 3);
|
2018-07-08 21:35:34 -04:00
|
|
|
const rstr = String.fromCharCode(...r);
|
2018-06-11 14:18:56 -04:00
|
|
|
assert(rstr === "bar");
|
2018-06-19 11:45:58 -04:00
|
|
|
};
|
2018-06-11 16:51:11 -04:00
|
|
|
|
2018-07-01 12:07:12 -04:00
|
|
|
global.DoubleRecvFails = () => {
|
2018-08-06 18:37:32 -04:00
|
|
|
// libdeno.recv is an internal function and should only be called once from the
|
2018-06-11 16:51:11 -04:00
|
|
|
// runtime.
|
2018-08-06 18:37:32 -04:00
|
|
|
libdeno.recv((channel, msg) => assert(false));
|
|
|
|
libdeno.recv((channel, msg) => assert(false));
|
2018-06-19 11:45:58 -04:00
|
|
|
};
|
2018-06-18 09:55:36 -04:00
|
|
|
|
2018-07-08 21:35:34 -04:00
|
|
|
global.SendRecvSlice = () => {
|
|
|
|
const abLen = 1024;
|
|
|
|
let buf = new Uint8Array(abLen);
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
|
|
// Set first and last byte, for verification by the native side.
|
|
|
|
buf[0] = 100 + i;
|
|
|
|
buf[buf.length - 1] = 100 - i;
|
|
|
|
// On the native side, the slice is shortened by 19 bytes.
|
2018-08-06 18:37:32 -04:00
|
|
|
buf = libdeno.send(buf);
|
2018-07-08 21:35:34 -04:00
|
|
|
assert(buf.byteOffset === i * 11);
|
|
|
|
assert(buf.byteLength === abLen - i * 30 - 19);
|
|
|
|
assert(buf.buffer.byteLength == abLen);
|
|
|
|
// Look for values written by the backend.
|
|
|
|
assert(buf[0] === 200 + i);
|
|
|
|
assert(buf[buf.length - 1] === 200 - i);
|
|
|
|
// On the JS side, the start of the slice is moved up by 11 bytes.
|
|
|
|
buf = buf.subarray(11);
|
|
|
|
assert(buf.byteOffset === (i + 1) * 11);
|
|
|
|
assert(buf.byteLength === abLen - (i + 1) * 30);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
global.JSSendArrayBufferViewTypes = () => {
|
|
|
|
// Test that ArrayBufferView slices are transferred correctly.
|
|
|
|
// Send Uint8Array.
|
|
|
|
const ab1 = new ArrayBuffer(4321);
|
|
|
|
const u8 = new Uint8Array(ab1, 2468, 1000);
|
|
|
|
u8[0] = 1;
|
2018-08-06 18:37:32 -04:00
|
|
|
libdeno.send(u8);
|
2018-07-08 21:35:34 -04:00
|
|
|
// Send Uint32Array.
|
|
|
|
const ab2 = new ArrayBuffer(4321);
|
|
|
|
const u32 = new Uint32Array(ab2, 2468, 1000 / Uint32Array.BYTES_PER_ELEMENT);
|
|
|
|
u32[0] = 0x02020202;
|
2018-08-06 18:37:32 -04:00
|
|
|
libdeno.send(u32);
|
2018-07-08 21:35:34 -04:00
|
|
|
// Send DataView.
|
|
|
|
const ab3 = new ArrayBuffer(4321);
|
|
|
|
const dv = new DataView(ab3, 2468, 1000);
|
|
|
|
dv.setUint8(0, 3);
|
2018-08-06 18:37:32 -04:00
|
|
|
libdeno.send(dv);
|
2018-07-08 21:35:34 -04:00
|
|
|
};
|
|
|
|
|
2018-06-18 09:55:36 -04:00
|
|
|
// The following join has caused SnapshotBug to segfault when using kKeep.
|
|
|
|
[].join("");
|
|
|
|
|
2018-06-19 11:45:58 -04:00
|
|
|
global.SnapshotBug = () => {
|
2018-06-18 09:55:36 -04:00
|
|
|
assert("1,2,3" === String([1, 2, 3]));
|
2018-06-19 11:45:58 -04:00
|
|
|
};
|
2018-06-22 08:57:49 -04:00
|
|
|
|
2018-08-26 03:57:16 -04:00
|
|
|
global.GlobalErrorHandling = () => {
|
2018-06-22 08:57:49 -04:00
|
|
|
eval("\n\n notdefined()\n//# sourceURL=helloworld.js");
|
|
|
|
};
|
2018-07-23 14:11:41 -04:00
|
|
|
|
2018-09-27 17:33:10 -04:00
|
|
|
// Allocate this buf at the top level to avoid GC.
|
|
|
|
const dataBuf = new Uint8Array([3, 4]);
|
|
|
|
|
|
|
|
global.DataBuf = () => {
|
|
|
|
const a = new Uint8Array([1, 2]);
|
|
|
|
const b = dataBuf;
|
|
|
|
// The second parameter of send should modified by the
|
|
|
|
// privileged side.
|
|
|
|
const r = libdeno.send(a, b);
|
|
|
|
assert(r == null);
|
|
|
|
// b is different.
|
|
|
|
assert(b[0] === 4);
|
|
|
|
assert(b[1] === 2);
|
|
|
|
// Now we modify it again.
|
|
|
|
b[0] = 9;
|
|
|
|
b[1] = 8;
|
2018-07-23 14:11:41 -04:00
|
|
|
};
|
2018-10-12 14:22:52 -04:00
|
|
|
|
2018-12-06 23:05:36 -05:00
|
|
|
global.CheckPromiseErrors = () => {
|
2018-10-12 14:22:52 -04:00
|
|
|
async function fn() {
|
|
|
|
throw new Error("message");
|
|
|
|
}
|
|
|
|
|
|
|
|
(async () => {
|
|
|
|
try {
|
|
|
|
await fn();
|
|
|
|
} catch (e) {
|
2018-12-06 23:05:36 -05:00
|
|
|
libdeno.send(new Uint8Array([42]));
|
2018-10-12 14:22:52 -04:00
|
|
|
}
|
|
|
|
})();
|
2018-12-06 23:05:36 -05:00
|
|
|
};
|
2018-10-24 02:17:10 -04:00
|
|
|
|
|
|
|
global.Shared = () => {
|
|
|
|
const ab = libdeno.shared;
|
|
|
|
assert(ab instanceof ArrayBuffer);
|
|
|
|
assert(ab.byteLength === 3);
|
|
|
|
const ui8 = new Uint8Array(ab);
|
|
|
|
assert(ui8[0] === 0);
|
|
|
|
assert(ui8[1] === 1);
|
|
|
|
assert(ui8[2] === 2);
|
|
|
|
ui8[0] = 42;
|
|
|
|
ui8[1] = 43;
|
|
|
|
ui8[2] = 44;
|
2018-12-06 23:05:36 -05:00
|
|
|
};
|