2019-12-05 15:30:20 -05:00
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
2020-01-09 13:37:01 -05:00
|
|
|
const filename = `../target/${Deno.args[0]}/${filenamePrefix}${filenameBase}${filenameSuffix}`;
|
2019-12-05 15:30:20 -05:00
|
|
|
|
|
|
|
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!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-07 15:09:09 -05:00
|
|
|
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!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-05 15:30:20 -05:00
|
|
|
runTestSync();
|
|
|
|
runTestAsync();
|
2019-12-07 15:09:09 -05:00
|
|
|
|
|
|
|
runTestOpCount();
|