mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-15 02:20:38 +09:00
65 lines
1.7 KiB
TypeScript
65 lines
1.7 KiB
TypeScript
|
|
import { beforeEach, describe, expect, it, vi } from "vitest";
|
||
|
|
|
||
|
|
const mockApi = vi.hoisted(() => ({
|
||
|
|
get: vi.fn(),
|
||
|
|
post: vi.fn(),
|
||
|
|
put: vi.fn(),
|
||
|
|
}));
|
||
|
|
|
||
|
|
vi.mock("./client", () => ({
|
||
|
|
api: mockApi,
|
||
|
|
}));
|
||
|
|
|
||
|
|
import { pluginsApi } from "./plugins";
|
||
|
|
|
||
|
|
describe("pluginsApi local folders", () => {
|
||
|
|
beforeEach(() => {
|
||
|
|
mockApi.get.mockReset();
|
||
|
|
mockApi.post.mockReset();
|
||
|
|
mockApi.put.mockReset();
|
||
|
|
mockApi.get.mockResolvedValue({});
|
||
|
|
mockApi.post.mockResolvedValue({});
|
||
|
|
mockApi.put.mockResolvedValue({});
|
||
|
|
});
|
||
|
|
|
||
|
|
it("lists company-scoped local folders for a plugin", async () => {
|
||
|
|
await pluginsApi.listLocalFolders("plugin-1", "company-1");
|
||
|
|
|
||
|
|
expect(mockApi.get).toHaveBeenCalledWith(
|
||
|
|
"/plugins/plugin-1/companies/company-1/local-folders",
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
it("validates a candidate folder path without saving", async () => {
|
||
|
|
await pluginsApi.validateLocalFolder("plugin-1", "company-1", "wiki-root", {
|
||
|
|
path: "/tmp/wiki",
|
||
|
|
access: "readWrite",
|
||
|
|
requiredFiles: ["WIKI.md"],
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(mockApi.post).toHaveBeenCalledWith(
|
||
|
|
"/plugins/plugin-1/companies/company-1/local-folders/wiki-root/validate",
|
||
|
|
{
|
||
|
|
path: "/tmp/wiki",
|
||
|
|
access: "readWrite",
|
||
|
|
requiredFiles: ["WIKI.md"],
|
||
|
|
},
|
||
|
|
);
|
||
|
|
});
|
||
|
|
|
||
|
|
it("saves through the local-folder PUT endpoint", async () => {
|
||
|
|
await pluginsApi.configureLocalFolder("plugin-1", "company-1", "wiki-root", {
|
||
|
|
path: "/tmp/wiki",
|
||
|
|
requiredDirectories: ["wiki"],
|
||
|
|
});
|
||
|
|
|
||
|
|
expect(mockApi.put).toHaveBeenCalledWith(
|
||
|
|
"/plugins/plugin-1/companies/company-1/local-folders/wiki-root",
|
||
|
|
{
|
||
|
|
path: "/tmp/wiki",
|
||
|
|
requiredDirectories: ["wiki"],
|
||
|
|
},
|
||
|
|
);
|
||
|
|
});
|
||
|
|
});
|