mirror of
https://github.com/denoland/deno.git
synced 2024-11-14 16:33:45 -05:00
66 lines
1.6 KiB
JavaScript
66 lines
1.6 KiB
JavaScript
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();
|