Files
operations/test/registry.test.ts
glm-5.1 29f0dd7af0 Initial package implementation: operations registry, call protocol, and adapters
Extracted from alkhub_ts packages/core/operations/ and packages/core/mcp/.
- Runtime-agnostic (injected fs/env deps, no Deno globals)
- Direct @logtape/logtape import instead of logger wrapper
- PendingRequestMap with pubsub-wired call protocol
- Peer-dep isolation for MCP adapter (sub-path export)
- Schema const naming convention (XSchema + X type alias)
- 68 tests passing, build + lint + test all green
2026-04-30 12:34:26 +00:00

101 lines
3.6 KiB
TypeScript

import { describe, it, expect } from "vitest";
import { OperationRegistry } from "../src/registry.js";
import { OperationType, type IOperationDefinition, type OperationContext } from "../src/index.js";
import * as Type from "@alkdev/typebox";
import { Value } from "@alkdev/typebox/value";
function makeOperation(overrides: Partial<IOperationDefinition> = {}): IOperationDefinition {
return {
name: "testOp",
namespace: "test",
version: "1.0.0",
type: OperationType.QUERY,
description: "A test operation",
inputSchema: Type.Object({ value: Type.String() }),
outputSchema: Type.Object({ result: Type.String() }),
accessControl: { requiredScopes: [] },
handler: async (input: any) => ({ result: `processed: ${input.value}` }),
...overrides,
};
}
describe("OperationRegistry", () => {
it("registers and retrieves an operation", () => {
const registry = new OperationRegistry();
const op = makeOperation();
registry.register(op);
expect(registry.get("test.testOp")).toBe(op);
});
it("retrieves by namespace and name", () => {
const registry = new OperationRegistry();
const op = makeOperation();
registry.register(op);
expect(registry.getByName("test", "testOp")).toBe(op);
});
it("returns undefined for missing operations", () => {
const registry = new OperationRegistry();
expect(registry.get("nonexistent.op")).toBeUndefined();
});
it("lists all registered operations", () => {
const registry = new OperationRegistry();
registry.register(makeOperation());
registry.register(makeOperation({ name: "op2" }));
expect(registry.list()).toHaveLength(2);
});
it("registerAll registers multiple operations", () => {
const registry = new OperationRegistry();
registry.registerAll([makeOperation(), makeOperation({ name: "op2" })]);
expect(registry.list()).toHaveLength(2);
});
it("extracts spec without handler", () => {
const registry = new OperationRegistry();
registry.register(makeOperation());
const spec = registry.getSpec("test.testOp")!;
expect(spec).toBeDefined();
expect((spec as any).handler).toBeUndefined();
expect(spec.name).toBe("testOp");
});
it("getAllSpecs returns all specs", () => {
const registry = new OperationRegistry();
registry.register(makeOperation());
registry.register(makeOperation({ name: "op2" }));
expect(registry.getAllSpecs()).toHaveLength(2);
});
it("executes an operation and validates input", async () => {
const registry = new OperationRegistry();
registry.register(makeOperation());
const result = await registry.execute("test.testOp", { value: "hello" }, {} as OperationContext);
expect(result).toEqual({ result: "processed: hello" });
});
it("throws on invalid input", async () => {
const registry = new OperationRegistry();
registry.register(makeOperation());
await expect(
registry.execute("test.testOp", { wrong: "field" }, {} as OperationContext)
).rejects.toThrow();
});
it("throws on missing operation", async () => {
const registry = new OperationRegistry();
await expect(
registry.execute("missing.op", {}, {} as OperationContext)
).rejects.toThrow("Operation not found");
});
it("warns on output mismatch but returns result", async () => {
const registry = new OperationRegistry();
registry.register(makeOperation({
handler: async () => ({ unexpected: "field" }),
}));
const result = await registry.execute("test.testOp", { value: "x" }, {} as OperationContext);
expect(result).toEqual({ unexpected: "field" });
});
});