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
272 lines (253 loc) · 7.21 KB
/
Copy pathtask-runner.test.ts
File metadata and controls
272 lines (253 loc) · 7.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import { describe, expect, it } from "vitest";
import {
ActionExecutor,
AgentInstanceManager,
InMemoryMemoryStore,
RuntimeError,
TaskRunner,
ToolRegistry,
UnconfiguredModelProvider,
InMemoryRuntimeStateStore,
RuntimeError,
type RuntimeErrorCode
} from "../src/index.js";
import { RuntimeError } from "../src/errors/runtime-errors.js";
describe("TaskRunner error propagation", () => {
it("wraps plain Error in EXECUTION_FAILED", async () => {
const toolRegistry = new ToolRegistry();
const expected = new Error("boom");
toolRegistry.register({
name: "explode",
description: "Throws a plain Error",
execute() {
throw failure;
}
});
await expect(
runner.run(
{
taskId: "task-6",
agentId: "agent-1",
toolName: "missing",
input: "Trigger typed failure",
payload: {}
},
createContext("task-5")
)
).rejects.toBe(failure);
});
it("preserves a tool RuntimeError and its original code", async () => {
const failure = new RuntimeError("TOOL_NOT_FOUND", "tool rejected task");
const runner = createRunner({
name: "reject",
description: "Throws a typed RuntimeError",
execute() {
throw failure;
}
});
try {
await runner.run(
{
taskId: "task-6",
agentId: "agent-1",
toolName: "reject",
input: "Trigger typed failure",
payload: {}
},
createContext("task-6")
);
expect.fail("should have thrown");
} catch (error) {
expect(error).toBe(failure);
expect(error).toBeInstanceOf(RuntimeError);
expect((error as RuntimeError).code).toBe("TOOL_NOT_FOUND");
}
});
it("wraps plain memory append failures in EXECUTION_FAILED", async () => {
const memoryStore: MemoryStore = {
append: async () => {
throw new Error("disk unavailable");
},
listByAgent: async () => []
};
const runner = createRunner(
{
name: "ok",
description: "Returns normally",
execute: async () => ({ ok: true })
},
memoryStore
);
await expect(
runner.run(
{
taskId: "task-7",
agentId: "agent-1",
toolName: "ok",
input: "Persist output",
payload: {}
},
createContext("task-7")
)
).rejects.toMatchObject({
code: "EXECUTION_FAILED",
message: "disk unavailable",
details: { cause: "disk unavailable" }
});
});
it("wraps typed RuntimeErrors from memory append in EXECUTION_FAILED", async () => {
const memoryStore: MemoryStore = {
append: async () => {
throw new RuntimeError("TOOL_NOT_FOUND", "store rejected append");
},
listByAgent: async () => []
};
const runner = createRunner(
{
name: "ok",
description: "Returns normally",
execute: async () => ({ ok: true })
},
memoryStore
);
await expect(
runner.run(
{
taskId: "task-8",
agentId: "agent-1",
toolName: "ok",
input: "Persist typed failure",
payload: {}
},
createContext("task-8")
)
).rejects.toMatchObject({
code: "EXECUTION_FAILED",
message: "store rejected append",
details: { cause: "store rejected append" }
});
});
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" }
});
const runner = new TaskRunner(
new ActionExecutor(toolRegistry),
new InMemoryMemoryStore()
);
const agent = new AgentInstanceManager().getOrCreate("agent-1");
let caught: unknown;
try {
await runner.run(
{
taskId: "task-6",
agentId: "agent-1",
toolName: "typedExplode",
input: "Trigger failure",
payload: {}
},
{
runtimeId: "runtime-1",
taskId: "task-6",
agent,
memory: new InMemoryMemoryStore(),
modelProvider: new UnconfiguredModelProvider(),
state: new InMemoryRuntimeStateStore(),
now: new Date().toISOString()
}
);
} catch (err) {
caught = err;
}
expect(caught).toBeInstanceOf(RuntimeError);
expect((caught as RuntimeError).code).toBe("TOOL_NOT_FOUND");
expect((caught as RuntimeError).message).toBe("Missing dependency");
});
});