1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-14 16:33:45 -05:00
denoland-deno/test_plugin/tests/test.js

67 lines
1.6 KiB
JavaScript
Raw Normal View History

const filenameBase = "test_plugin";
let filenameSuffix = ".so";
let filenamePrefix = "lib";
if (Deno.build.os === "win") {
filenameSuffix = ".dll";
filenamePrefix = "";
}
if (Deno.build.os === "mac") {
filenameSuffix = ".dylib";
}
const filename = `../target/${Deno.args[1]}/${filenamePrefix}${filenameBase}${filenameSuffix}`;
const plugin = Deno.openPlugin(filename);
const { testSync, testAsync } = plugin.ops;
const textDecoder = new TextDecoder();
function runTestSync() {
const response = testSync.dispatch(
new Uint8Array([116, 101, 115, 116]),
new Uint8Array([116, 101, 115, 116])
);
console.log(`Plugin Sync Response: ${textDecoder.decode(response)}`);
}
testAsync.setAsyncHandler(response => {
console.log(`Plugin Async Response: ${textDecoder.decode(response)}`);
});
function runTestAsync() {
const response = testAsync.dispatch(
new Uint8Array([116, 101, 115, 116]),
new Uint8Array([116, 101, 115, 116])
);
if (response != null || response != undefined) {
throw new Error("Expected null response!");
}
}
function runTestOpCount() {
const start = Deno.metrics();
testSync.dispatch(new Uint8Array([116, 101, 115, 116]));
const end = Deno.metrics();
if (end.opsCompleted - start.opsCompleted !== 2) {
// one op for the plugin and one for Deno.metrics
throw new Error("The opsCompleted metric is not correct!");
}
if (end.opsDispatched - start.opsDispatched !== 2) {
// one op for the plugin and one for Deno.metrics
throw new Error("The opsDispatched metric is not correct!");
}
}
runTestSync();
runTestAsync();
runTestOpCount();