1
0
silverbullet/plugos/runtime.test.ts

50 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-10-12 09:47:13 +00:00
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"], {
2022-03-25 11:03:06 +00:00
restrictedSyscall: () => {
return "restricted";
},
});
system.registerSyscalls(["dangerous"], {
2022-03-25 11:03:06 +00:00
dangerousSyscall: () => {
return "yay";
},
});
const tempDir = await Deno.makeTempDir();
2022-10-13 13:16:18 +00:00
const workerPath = await compileManifest(
new URL("test.plug.yaml", import.meta.url).pathname,
tempDir,
);
const plug = await system.load(
new URL(`file://${workerPath}`),
createSandbox,
);
console.log("Plug", plug.manifest);
assertEquals("hello", await plug.invoke("boot", []));
2022-03-25 11:03:06 +00:00
2022-03-21 14:21:34 +00:00
await system.unloadAll();
await Deno.remove(tempDir, { recursive: true });
esbuild.stop();
});