feat(KB-501): implement multi-project runtime architecture with HybridExecutor
- Add ProjectRuntime interface with InProcessRuntime and ChildProcessRuntime implementations - Implement HybridExecutor for multi-project task orchestration - Add IPC protocol for host-worker communication in child-process mode - Implement health monitoring with automatic restart for child processes - Add comprehensive tests for hybrid-executor and project-runtime - Update AGENTS.md with multi-project runtime documentation - Add changeset for hybrid-executor-runtime release
This commit is contained in:
362
packages/engine/src/__tests__/project-runtime.test.ts
Normal file
362
packages/engine/src/__tests__/project-runtime.test.ts
Normal file
@@ -0,0 +1,362 @@
|
||||
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
|
||||
import { EventEmitter } from "node:events";
|
||||
import type { Task, TaskStore, CentralCore } from "@fusion/core";
|
||||
import type { Scheduler } from "../scheduler.js";
|
||||
import type {
|
||||
ProjectRuntime,
|
||||
ProjectRuntimeConfig,
|
||||
RuntimeStatus,
|
||||
RuntimeMetrics,
|
||||
ProjectRuntimeEvents,
|
||||
} from "../project-runtime.js";
|
||||
import { InProcessRuntime } from "../runtimes/in-process-runtime.js";
|
||||
import { ChildProcessRuntime } from "../runtimes/child-process-runtime.js";
|
||||
|
||||
/**
|
||||
* Mock implementation of ProjectRuntime for interface compliance testing.
|
||||
* This verifies the interface contract without relying on the full implementation.
|
||||
*/
|
||||
class MockProjectRuntime
|
||||
extends EventEmitter<ProjectRuntimeEvents>
|
||||
implements ProjectRuntime
|
||||
{
|
||||
private _status: RuntimeStatus = "stopped";
|
||||
private _metrics: RuntimeMetrics = {
|
||||
inFlightTasks: 0,
|
||||
activeAgents: 0,
|
||||
lastActivityAt: new Date().toISOString(),
|
||||
};
|
||||
|
||||
constructor(private config: ProjectRuntimeConfig) {
|
||||
super();
|
||||
this.setMaxListeners(100);
|
||||
}
|
||||
|
||||
async start(): Promise<void> {
|
||||
this._status = "starting";
|
||||
this.emit("health-changed", { status: "starting", previous: "stopped" });
|
||||
this._status = "active";
|
||||
this.emit("health-changed", { status: "active", previous: "starting" });
|
||||
}
|
||||
|
||||
async stop(): Promise<void> {
|
||||
this._status = "stopping";
|
||||
this.emit("health-changed", { status: "stopping", previous: "active" });
|
||||
this._status = "stopped";
|
||||
this.emit("health-changed", { status: "stopped", previous: "stopping" });
|
||||
}
|
||||
|
||||
getStatus(): RuntimeStatus {
|
||||
return this._status;
|
||||
}
|
||||
|
||||
getTaskStore(): TaskStore {
|
||||
throw new Error("Mock: getTaskStore not implemented");
|
||||
}
|
||||
|
||||
getScheduler(): Scheduler {
|
||||
throw new Error("Mock: getScheduler not implemented");
|
||||
}
|
||||
|
||||
getMetrics(): RuntimeMetrics {
|
||||
return { ...this._metrics };
|
||||
}
|
||||
|
||||
simulateTaskCreated(task: Task): void {
|
||||
this.emit("task:created", task);
|
||||
}
|
||||
|
||||
simulateTaskMoved(
|
||||
task: Task,
|
||||
from: string,
|
||||
to: string
|
||||
): void {
|
||||
this.emit("task:moved", { task, from, to });
|
||||
}
|
||||
|
||||
simulateTaskUpdated(task: Task): void {
|
||||
this.emit("task:updated", task);
|
||||
}
|
||||
|
||||
simulateError(error: Error): void {
|
||||
this.emit("error", error);
|
||||
}
|
||||
}
|
||||
|
||||
describe("ProjectRuntime Interface", () => {
|
||||
const testConfig: ProjectRuntimeConfig = {
|
||||
projectId: "proj_test123",
|
||||
workingDirectory: "/tmp/test-project",
|
||||
isolationMode: "in-process",
|
||||
maxConcurrent: 2,
|
||||
maxWorktrees: 4,
|
||||
};
|
||||
|
||||
describe("interface contract", () => {
|
||||
let runtime: MockProjectRuntime;
|
||||
|
||||
beforeEach(() => {
|
||||
runtime = new MockProjectRuntime(testConfig);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
try {
|
||||
await runtime.stop();
|
||||
} catch {
|
||||
// Ignore cleanup errors
|
||||
}
|
||||
});
|
||||
|
||||
it("should extend EventEmitter", () => {
|
||||
expect(runtime).toBeInstanceOf(EventEmitter);
|
||||
});
|
||||
|
||||
it("should have required methods", () => {
|
||||
expect(typeof runtime.start).toBe("function");
|
||||
expect(typeof runtime.stop).toBe("function");
|
||||
expect(typeof runtime.getStatus).toBe("function");
|
||||
expect(typeof runtime.getTaskStore).toBe("function");
|
||||
expect(typeof runtime.getScheduler).toBe("function");
|
||||
expect(typeof runtime.getMetrics).toBe("function");
|
||||
});
|
||||
|
||||
it("should return RuntimeStatus from getStatus()", () => {
|
||||
const status = runtime.getStatus();
|
||||
expect(["active", "paused", "errored", "stopped", "starting", "stopping"]).toContain(status);
|
||||
});
|
||||
|
||||
it("should return RuntimeMetrics from getMetrics()", () => {
|
||||
const metrics = runtime.getMetrics();
|
||||
expect(metrics).toHaveProperty("inFlightTasks");
|
||||
expect(metrics).toHaveProperty("activeAgents");
|
||||
expect(metrics).toHaveProperty("lastActivityAt");
|
||||
expect(typeof metrics.inFlightTasks).toBe("number");
|
||||
expect(typeof metrics.activeAgents).toBe("number");
|
||||
expect(typeof metrics.lastActivityAt).toBe("string");
|
||||
});
|
||||
});
|
||||
|
||||
describe("status lifecycle", () => {
|
||||
let runtime: MockProjectRuntime;
|
||||
|
||||
beforeEach(() => {
|
||||
runtime = new MockProjectRuntime(testConfig);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
try {
|
||||
await runtime.stop();
|
||||
} catch {
|
||||
// Ignore cleanup errors
|
||||
}
|
||||
});
|
||||
|
||||
it("should start with status 'stopped'", () => {
|
||||
expect(runtime.getStatus()).toBe("stopped");
|
||||
});
|
||||
|
||||
it("should transition through starting to active", async () => {
|
||||
const transitions: Array<{ status: RuntimeStatus; previous: RuntimeStatus }> = [];
|
||||
runtime.on("health-changed", (data) => {
|
||||
transitions.push(data);
|
||||
});
|
||||
|
||||
await runtime.start();
|
||||
|
||||
expect(runtime.getStatus()).toBe("active");
|
||||
expect(transitions).toContainEqual({ status: "starting", previous: "stopped" });
|
||||
expect(transitions).toContainEqual({ status: "active", previous: "starting" });
|
||||
});
|
||||
|
||||
it("should transition through stopping to stopped", async () => {
|
||||
await runtime.start();
|
||||
|
||||
const transitions: Array<{ status: RuntimeStatus; previous: RuntimeStatus }> = [];
|
||||
runtime.on("health-changed", (data) => {
|
||||
transitions.push(data);
|
||||
});
|
||||
|
||||
await runtime.stop();
|
||||
|
||||
expect(runtime.getStatus()).toBe("stopped");
|
||||
expect(transitions).toContainEqual({ status: "stopping", previous: "active" });
|
||||
expect(transitions).toContainEqual({ status: "stopped", previous: "stopping" });
|
||||
});
|
||||
});
|
||||
|
||||
describe("event emission", () => {
|
||||
let runtime: MockProjectRuntime;
|
||||
|
||||
beforeEach(() => {
|
||||
runtime = new MockProjectRuntime(testConfig);
|
||||
});
|
||||
|
||||
it("should emit task:created events", () => {
|
||||
const handler = vi.fn();
|
||||
runtime.on("task:created", handler);
|
||||
|
||||
const mockTask = { id: "KB-001", title: "Test Task" } as Task;
|
||||
runtime.simulateTaskCreated(mockTask);
|
||||
|
||||
expect(handler).toHaveBeenCalledWith(mockTask);
|
||||
});
|
||||
|
||||
it("should emit task:moved events", () => {
|
||||
const handler = vi.fn();
|
||||
runtime.on("task:moved", handler);
|
||||
|
||||
const mockTask = { id: "KB-001", title: "Test Task" } as Task;
|
||||
runtime.simulateTaskMoved(mockTask, "todo", "in-progress");
|
||||
|
||||
expect(handler).toHaveBeenCalledWith({
|
||||
task: mockTask,
|
||||
from: "todo",
|
||||
to: "in-progress",
|
||||
});
|
||||
});
|
||||
|
||||
it("should emit task:updated events", () => {
|
||||
const handler = vi.fn();
|
||||
runtime.on("task:updated", handler);
|
||||
|
||||
const mockTask = { id: "KB-001", title: "Updated Task" } as Task;
|
||||
runtime.simulateTaskUpdated(mockTask);
|
||||
|
||||
expect(handler).toHaveBeenCalledWith(mockTask);
|
||||
});
|
||||
|
||||
it("should emit error events", () => {
|
||||
const handler = vi.fn();
|
||||
runtime.on("error", handler);
|
||||
|
||||
const error = new Error("Test error");
|
||||
runtime.simulateError(error);
|
||||
|
||||
expect(handler).toHaveBeenCalledWith(error);
|
||||
});
|
||||
|
||||
it("should support removing event listeners with off()", () => {
|
||||
const handler = vi.fn();
|
||||
runtime.on("task:created", handler);
|
||||
runtime.off("task:created", handler);
|
||||
|
||||
const mockTask = { id: "KB-001", title: "Test Task" } as Task;
|
||||
runtime.simulateTaskCreated(mockTask);
|
||||
|
||||
expect(handler).not.toHaveBeenCalled();
|
||||
});
|
||||
});
|
||||
|
||||
describe("real implementations", () => {
|
||||
let mockCentralCore: CentralCore;
|
||||
|
||||
beforeEach(() => {
|
||||
mockCentralCore = {
|
||||
getGlobalConcurrencyState: vi.fn().mockResolvedValue({
|
||||
globalMaxConcurrent: 4,
|
||||
currentlyActive: 0,
|
||||
queuedCount: 0,
|
||||
projectsActive: {},
|
||||
}),
|
||||
recordTaskCompletion: vi.fn().mockResolvedValue(undefined),
|
||||
} as unknown as CentralCore;
|
||||
});
|
||||
|
||||
describe("InProcessRuntime", () => {
|
||||
let runtime: InProcessRuntime;
|
||||
|
||||
beforeEach(() => {
|
||||
runtime = new InProcessRuntime(testConfig, mockCentralCore);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
try {
|
||||
await runtime.stop();
|
||||
} catch {
|
||||
// Ignore cleanup errors
|
||||
}
|
||||
});
|
||||
|
||||
it("should implement ProjectRuntime interface", () => {
|
||||
expect(typeof runtime.start).toBe("function");
|
||||
expect(typeof runtime.stop).toBe("function");
|
||||
expect(typeof runtime.getStatus).toBe("function");
|
||||
expect(typeof runtime.getTaskStore).toBe("function");
|
||||
expect(typeof runtime.getScheduler).toBe("function");
|
||||
expect(typeof runtime.getMetrics).toBe("function");
|
||||
});
|
||||
|
||||
it("should be an EventEmitter", () => {
|
||||
expect(runtime).toBeInstanceOf(EventEmitter);
|
||||
});
|
||||
});
|
||||
|
||||
describe("ChildProcessRuntime", () => {
|
||||
let runtime: ChildProcessRuntime;
|
||||
|
||||
beforeEach(() => {
|
||||
runtime = new ChildProcessRuntime(testConfig, mockCentralCore);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
try {
|
||||
await runtime.stop();
|
||||
} catch {
|
||||
// Ignore cleanup errors
|
||||
}
|
||||
});
|
||||
|
||||
it("should implement ProjectRuntime interface", () => {
|
||||
expect(typeof runtime.start).toBe("function");
|
||||
expect(typeof runtime.stop).toBe("function");
|
||||
expect(typeof runtime.getStatus).toBe("function");
|
||||
expect(typeof runtime.getTaskStore).toBe("function");
|
||||
expect(typeof runtime.getScheduler).toBe("function");
|
||||
expect(typeof runtime.getMetrics).toBe("function");
|
||||
});
|
||||
|
||||
it("should be an EventEmitter", () => {
|
||||
expect(runtime).toBeInstanceOf(EventEmitter);
|
||||
});
|
||||
|
||||
it("should throw for getTaskStore() (not accessible in child mode)", () => {
|
||||
expect(() => runtime.getTaskStore()).toThrow("not accessible in ChildProcessRuntime");
|
||||
});
|
||||
|
||||
it("should throw for getScheduler() (not accessible in child mode)", () => {
|
||||
expect(() => runtime.getScheduler()).toThrow("not accessible in ChildProcessRuntime");
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
describe("type guards", () => {
|
||||
it("should validate RuntimeStatus values", () => {
|
||||
const validStatuses: RuntimeStatus[] = [
|
||||
"active",
|
||||
"paused",
|
||||
"errored",
|
||||
"stopped",
|
||||
"starting",
|
||||
"stopping",
|
||||
];
|
||||
|
||||
for (const status of validStatuses) {
|
||||
expect(status).toBeDefined();
|
||||
}
|
||||
});
|
||||
|
||||
it("should validate RuntimeMetrics structure", () => {
|
||||
const metrics: RuntimeMetrics = {
|
||||
inFlightTasks: 0,
|
||||
activeAgents: 0,
|
||||
lastActivityAt: new Date().toISOString(),
|
||||
memoryBytes: 1024 * 1024,
|
||||
};
|
||||
|
||||
expect(metrics.inFlightTasks).toBe(0);
|
||||
expect(metrics.activeAgents).toBe(0);
|
||||
expect(typeof metrics.lastActivityAt).toBe("string");
|
||||
expect(typeof metrics.memoryBytes).toBe("number");
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user