2023-08-04 16:56:55 +00:00
|
|
|
import { AssetBundle } from "../plugos/asset_bundle/bundle.ts";
|
|
|
|
import { compileManifest } from "../plugos/compile.ts";
|
|
|
|
import { esbuild } from "../plugos/deps.ts";
|
|
|
|
import { runPlug } from "./plug_run.ts";
|
2024-01-15 15:46:37 +00:00
|
|
|
import assets from "../dist/plug_asset_bundle.json" assert { type: "json" };
|
2023-08-04 16:56:55 +00:00
|
|
|
import { assertEquals } from "../test_deps.ts";
|
|
|
|
import { path } from "../common/deps.ts";
|
|
|
|
|
2023-10-03 12:16:33 +00:00
|
|
|
Deno.test("Test plug run", {
|
|
|
|
sanitizeResources: false,
|
|
|
|
sanitizeOps: false,
|
|
|
|
}, async () => {
|
2023-08-04 16:56:55 +00:00
|
|
|
// const tempDir = await Deno.makeTempDir();
|
2023-08-30 15:25:54 +00:00
|
|
|
const tempDbFile = await Deno.makeTempFile({ suffix: ".db" });
|
2023-08-04 16:56:55 +00:00
|
|
|
|
|
|
|
const assetBundle = new AssetBundle(assets);
|
|
|
|
|
|
|
|
const testFolder = path.dirname(new URL(import.meta.url).pathname);
|
|
|
|
const testSpaceFolder = path.join(testFolder, "test_space");
|
|
|
|
|
|
|
|
const plugFolder = path.join(testSpaceFolder, "_plug");
|
|
|
|
await Deno.mkdir(plugFolder, { recursive: true });
|
|
|
|
|
|
|
|
await compileManifest(
|
|
|
|
path.join(testFolder, "test.plug.yaml"),
|
|
|
|
plugFolder,
|
|
|
|
);
|
|
|
|
assertEquals(
|
|
|
|
await runPlug(
|
|
|
|
testSpaceFolder,
|
|
|
|
"test.run",
|
|
|
|
[],
|
|
|
|
assetBundle,
|
|
|
|
),
|
|
|
|
"Hello",
|
|
|
|
);
|
|
|
|
|
|
|
|
// await Deno.remove(tempDir, { recursive: true });
|
|
|
|
esbuild.stop();
|
2023-08-30 15:25:54 +00:00
|
|
|
await Deno.remove(tempDbFile);
|
2023-08-04 16:56:55 +00:00
|
|
|
});
|