| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- import { expect, spyOn, test } from "bun:test"
- import fs from "fs/promises"
- import path from "path"
- import { pathToFileURL } from "url"
- import { tmpdir } from "../../fixture/fixture"
- import { createTuiPluginApi } from "../../fixture/tui-plugin"
- import { TuiConfig } from "../../../src/cli/cmd/tui/config/tui"
- const { TuiPluginRuntime } = await import("../../../src/cli/cmd/tui/plugin/runtime")
- test("adds tui plugin at runtime from spec", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const file = path.join(dir, "add-plugin.ts")
- const spec = pathToFileURL(file).href
- const marker = path.join(dir, "add.txt")
- await Bun.write(
- file,
- `export default {
- id: "demo.add",
- tui: async () => {
- await Bun.write(${JSON.stringify(marker)}, "called")
- },
- }
- `,
- )
- return { spec, marker }
- },
- })
- process.env.KILO_PLUGIN_META_FILE = path.join(tmp.path, "plugin-meta.json")
- const config: TuiConfig.Info = {
- plugin: [],
- plugin_origins: undefined,
- }
- const wait = spyOn(TuiConfig, "waitForDependencies").mockResolvedValue()
- const cwd = spyOn(process, "cwd").mockImplementation(() => tmp.path)
- try {
- await TuiPluginRuntime.init({
- api: createTuiPluginApi(),
- config,
- })
- await expect(TuiPluginRuntime.addPlugin(tmp.extra.spec)).resolves.toBe(true)
- await expect(fs.readFile(tmp.extra.marker, "utf8")).resolves.toBe("called")
- expect(TuiPluginRuntime.list().find((item) => item.id === "demo.add")).toEqual({
- id: "demo.add",
- source: "file",
- spec: tmp.extra.spec,
- target: tmp.extra.spec,
- enabled: true,
- active: true,
- })
- } finally {
- await TuiPluginRuntime.dispose()
- cwd.mockRestore()
- wait.mockRestore()
- delete process.env.KILO_PLUGIN_META_FILE
- }
- })
- test("retries runtime add for file plugins after dependency wait", async () => {
- await using tmp = await tmpdir({
- init: async (dir) => {
- const mod = path.join(dir, "retry-plugin")
- const spec = pathToFileURL(mod).href
- const marker = path.join(dir, "retry-add.txt")
- await fs.mkdir(mod, { recursive: true })
- return { mod, spec, marker }
- },
- })
- process.env.KILO_PLUGIN_META_FILE = path.join(tmp.path, "plugin-meta.json")
- const config: TuiConfig.Info = {
- plugin: [],
- plugin_origins: undefined,
- }
- const wait = spyOn(TuiConfig, "waitForDependencies").mockImplementation(async () => {
- await Bun.write(
- path.join(tmp.extra.mod, "index.ts"),
- `export default {
- id: "demo.add.retry",
- tui: async () => {
- await Bun.write(${JSON.stringify(tmp.extra.marker)}, "called")
- },
- }
- `,
- )
- })
- const cwd = spyOn(process, "cwd").mockImplementation(() => tmp.path)
- try {
- await TuiPluginRuntime.init({
- api: createTuiPluginApi(),
- config,
- })
- await expect(TuiPluginRuntime.addPlugin(tmp.extra.spec)).resolves.toBe(true)
- await expect(fs.readFile(tmp.extra.marker, "utf8")).resolves.toBe("called")
- expect(wait).toHaveBeenCalledTimes(1)
- expect(TuiPluginRuntime.list().find((item) => item.id === "demo.add.retry")?.active).toBe(true)
- } finally {
- await TuiPluginRuntime.dispose()
- cwd.mockRestore()
- wait.mockRestore()
- delete process.env.KILO_PLUGIN_META_FILE
- }
- })
|