mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-26 10:35:15 +00:00
117 lines
3.9 KiB
TypeScript
117 lines
3.9 KiB
TypeScript
import type * as Lark from "@larksuiteoapi/node-sdk";
|
|
import { describe, expect, it, vi } from "vitest";
|
|
import { BATCH_SIZE, insertBlocksInBatches } from "./docx-batch-insert.js";
|
|
import type { FeishuDocxBlock } from "./docx-types.js";
|
|
|
|
type InsertBlocksClient = Parameters<typeof insertBlocksInBatches>[0];
|
|
type DocxDescendantCreate = Lark.Client["docx"]["documentBlockDescendant"]["create"];
|
|
type DocxDescendantCreateParams = Parameters<DocxDescendantCreate>[0];
|
|
type DocxDescendantCreateResponse = Awaited<ReturnType<DocxDescendantCreate>>;
|
|
type RequiredDocxDescendantCreateParams = NonNullable<DocxDescendantCreateParams> & {
|
|
data: NonNullable<NonNullable<DocxDescendantCreateParams>["data"]>;
|
|
};
|
|
|
|
function createDocxDescendantClient(create: DocxDescendantCreate): InsertBlocksClient {
|
|
return {
|
|
docx: {
|
|
documentBlockDescendant: {
|
|
create,
|
|
},
|
|
},
|
|
} as InsertBlocksClient;
|
|
}
|
|
|
|
function createCountingIterable<T>(values: T[]) {
|
|
let iterations = 0;
|
|
return {
|
|
values: {
|
|
[Symbol.iterator]: function* () {
|
|
iterations += 1;
|
|
yield* values;
|
|
},
|
|
},
|
|
getIterations: () => iterations,
|
|
};
|
|
}
|
|
|
|
function createSuccessfulDocxDescendantCreateMock() {
|
|
return vi.fn(
|
|
async (params?: DocxDescendantCreateParams): Promise<DocxDescendantCreateResponse> => ({
|
|
code: 0,
|
|
data: {
|
|
children: (params?.data?.children_id ?? []).map((id) => ({
|
|
block_id: id,
|
|
block_type: 2,
|
|
})),
|
|
},
|
|
}),
|
|
);
|
|
}
|
|
|
|
function createCallParams(
|
|
createMock: ReturnType<typeof createSuccessfulDocxDescendantCreateMock>,
|
|
index = 0,
|
|
): RequiredDocxDescendantCreateParams {
|
|
const call = createMock.mock.calls.at(index);
|
|
if (!call) {
|
|
throw new Error(`Expected DOCX descendant create call ${index}`);
|
|
}
|
|
const params = call.at(0);
|
|
if (!params) {
|
|
throw new Error(`Expected DOCX descendant create params ${index}`);
|
|
}
|
|
if (!params.data) {
|
|
throw new Error(`Expected DOCX descendant create data ${index}`);
|
|
}
|
|
return params as RequiredDocxDescendantCreateParams;
|
|
}
|
|
|
|
describe("insertBlocksInBatches", () => {
|
|
it("builds the source block map once for large flat trees", async () => {
|
|
const blockCount = BATCH_SIZE + 200;
|
|
const blocks = Array.from({ length: blockCount }, (_, index) => ({
|
|
block_id: `block_${index}`,
|
|
block_type: 2,
|
|
}));
|
|
const counting = createCountingIterable(blocks);
|
|
const createMock = createSuccessfulDocxDescendantCreateMock();
|
|
const client = createDocxDescendantClient((params) => createMock(params));
|
|
|
|
const result = await insertBlocksInBatches(
|
|
client,
|
|
"doc_1",
|
|
Array.from(counting.values),
|
|
blocks.map((block) => block.block_id),
|
|
);
|
|
|
|
expect(counting.getIterations()).toBe(1);
|
|
expect(createMock).toHaveBeenCalledTimes(2);
|
|
expect(createCallParams(createMock).data.children_id).toHaveLength(BATCH_SIZE);
|
|
expect(createCallParams(createMock, 1).data.children_id).toHaveLength(200);
|
|
expect(result.children).toHaveLength(blockCount);
|
|
});
|
|
|
|
it("keeps nested descendants grouped with their root blocks", async () => {
|
|
const createMock = createSuccessfulDocxDescendantCreateMock();
|
|
const client = createDocxDescendantClient((params) => createMock(params));
|
|
const blocks: FeishuDocxBlock[] = [
|
|
{ block_id: "root_a", block_type: 1, children: ["child_a"] },
|
|
{ block_id: "child_a", block_type: 2 },
|
|
{ block_id: "root_b", block_type: 1, children: ["child_b"] },
|
|
{ block_id: "child_b", block_type: 2 },
|
|
];
|
|
|
|
await insertBlocksInBatches(client, "doc_1", blocks, ["root_a", "root_b"]);
|
|
|
|
expect(createMock).toHaveBeenCalledTimes(1);
|
|
const createParams = createCallParams(createMock);
|
|
expect(createParams.data.children_id).toEqual(["root_a", "root_b"]);
|
|
expect(createParams.data.descendants.map((block) => block.block_id ?? "")).toEqual([
|
|
"root_a",
|
|
"child_a",
|
|
"root_b",
|
|
"child_b",
|
|
]);
|
|
});
|
|
});
|