forked from Lilly-Protocol/agentlily-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask-runner.test.ts
More file actions
153 lines (143 loc) · 4.21 KB
/
Copy pathtask-runner.test.ts
File metadata and controls
153 lines (143 loc) · 4.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import { describe, expect, it } from "vitest";
import {
ActionExecutor,
AgentInstanceManager,
InMemoryMemoryStore,
TaskRunner,
ToolRegistry,
UnconfiguredModelProvider,
InMemoryRuntimeStateStore,
RuntimeError,
type RuntimeErrorCode
} from "../src/index.js";
describe("TaskRunner", () => {
it("wraps unexpected tool failures in EXECUTION_FAILED", async () => {
const toolRegistry = new ToolRegistry();
toolRegistry.register({
name: "explode",
description: "Throws unexpectedly",
execute() {
throw new Error("boom");
}
});
const runner = new TaskRunner(
new ActionExecutor(toolRegistry),
new InMemoryMemoryStore()
);
const agent = new AgentInstanceManager().getOrCreate("agent-1");
await expect(
runner.run(
{
taskId: "task-5",
agentId: "agent-1",
toolName: "explode",
input: "Trigger failure",
payload: {}
},
{
runtimeId: "runtime-1",
taskId: "task-5",
agent,
memory: new InMemoryMemoryStore(),
modelProvider: new UnconfiguredModelProvider(),
state: new InMemoryRuntimeStateStore(),
now: new Date().toISOString()
}
)
).rejects.toMatchObject({
code: "EXECUTION_FAILED"
});
});
it("preserves tool-thrown RuntimeError code, message, and details without wrapping", async () => {
const customDetails = {
reason: "validation_constraint",
field: "amount",
value: -50
};
const customMessage =
"Payment authorization rejected due to invalid parameters";
const customCode: RuntimeErrorCode = "MAX_TOOL_CALLS_EXCEEDED";
const toolRegistry = new ToolRegistry();
toolRegistry.register({
name: "pay",
description: "Throws typed RuntimeError",
execute() {
throw new RuntimeError(customCode, customMessage, customDetails);
}
});
const runner = new TaskRunner(
new ActionExecutor(toolRegistry),
new InMemoryMemoryStore()
);
const agent = new AgentInstanceManager().getOrCreate("agent-1");
try {
await runner.run(
{
taskId: "task-typed-err",
agentId: "agent-1",
toolName: "pay",
input: "Send payment",
payload: {}
},
{
runtimeId: "runtime-1",
taskId: "task-typed-err",
agent,
memory: new InMemoryMemoryStore(),
modelProvider: new UnconfiguredModelProvider(),
state: new InMemoryRuntimeStateStore(),
now: new Date().toISOString()
}
);
expect.unreachable("should have thrown RuntimeError");
} catch (error) {
expect(error).toBeInstanceOf(RuntimeError);
const err = error as RuntimeError;
expect(err.code).toBe(customCode);
expect(err.code).not.toBe("EXECUTION_FAILED");
expect(err.message).toBe(customMessage);
expect(err.details).toEqual(customDetails);
}
});
it("propagates standard RuntimeError instances directly", async () => {
const toolRegistry = new ToolRegistry();
toolRegistry.register({
name: "duplicate_tool",
description: "Throws DUPLICATE_TOOL",
execute() {
throw new RuntimeError("DUPLICATE_TOOL", "Tool already registered", {
toolName: "duplicate_tool"
});
}
});
const runner = new TaskRunner(
new ActionExecutor(toolRegistry),
new InMemoryMemoryStore()
);
const agent = new AgentInstanceManager().getOrCreate("agent-2");
await expect(
runner.run(
{
taskId: "task-dup",
agentId: "agent-2",
toolName: "duplicate_tool",
input: "Trigger duplicate tool error",
payload: {}
},
{
runtimeId: "runtime-1",
taskId: "task-dup",
agent,
memory: new InMemoryMemoryStore(),
modelProvider: new UnconfiguredModelProvider(),
state: new InMemoryRuntimeStateStore(),
now: new Date().toISOString()
}
)
).rejects.toMatchObject({
code: "DUPLICATE_TOOL",
message: "Tool already registered",
details: { toolName: "duplicate_tool" }
});
});
});