1
0
silverbullet/plugos/runtime.test.ts
Zef Hemel 8527528af4
Lazy plugs (#596)
* Manifest caching and lazy loading of plug workers
* Fixes #546 Plug unloading after time out
2023-12-06 18:44:48 +01:00

52 lines
1.2 KiB
TypeScript

import { createSandbox } from "./environments/deno_sandbox.ts";
import { System } from "./system.ts";
import { assertEquals } from "../test_deps.ts";
import { compileManifest } from "./compile.ts";
import { esbuild } from "./deps.ts";
Deno.test("Run a deno sandbox", async () => {
const system = new System("server");
system.registerSyscalls([], {
addNumbers: (_ctx, a, b) => {
return a + b;
},
failingSyscall: () => {
throw new Error("#fail");
},
});
system.registerSyscalls(["restricted"], {
restrictedSyscall: () => {
return "restricted";
},
});
system.registerSyscalls(["dangerous"], {
dangerousSyscall: () => {
return "yay";
},
});
const tempDir = await Deno.makeTempDir();
const workerPath = await compileManifest(
new URL("test.plug.yaml", import.meta.url).pathname,
tempDir,
);
const plug = await system.load(
new URL(`file://${workerPath}`),
"test",
0,
createSandbox,
);
console.log("Plug", plug.manifest);
assertEquals("hello", await plug.invoke("boot", []));
await system.unloadAll();
await Deno.remove(tempDir, { recursive: true });
esbuild.stop();
});