-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfile-storage.test.ts
236 lines (202 loc) · 5.76 KB
/
file-storage.test.ts
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
import { jest } from "@jest/globals";
import { join } from "path";
import { mkdtemp, rm } from "fs/promises";
import * as os from "os";
import {
configureLogger,
FileStore,
Task,
TaskState,
Message,
} from "../src/index.js";
configureLogger({ level: "silent" });
describe("FileStore", () => {
let tempDir: string;
let fileStore: FileStore;
// Create a temporary directory for testing
beforeEach(async () => {
tempDir = await mkdtemp(join(os.tmpdir(), "a2a-file-store-test-"));
fileStore = new FileStore(tempDir);
});
// Clean up the temporary directory after tests
afterEach(async () => {
await rm(tempDir, { recursive: true, force: true });
});
it("should save and retrieve a task", async () => {
const taskId = "test-task-1";
const task: Task = {
id: taskId,
status: {
state: "working" as TaskState,
timestamp: new Date().toISOString(),
},
};
// Save the task
await fileStore.save({ task, history: [] });
// Retrieve the task
const result = await fileStore.load(taskId);
expect(result).toBeDefined();
expect(result?.task.id).toBe(taskId);
expect(result?.task.status.state).toBe("working");
});
it("should update an existing task", async () => {
const taskId = "test-task-2";
const task: Task = {
id: taskId,
status: {
state: "submitted" as TaskState,
timestamp: new Date().toISOString(),
},
};
// Save the task initially
await fileStore.save({ task, history: [] });
// Update the task
const updatedTask: Task = {
id: taskId,
status: {
state: "completed" as TaskState,
timestamp: new Date().toISOString(),
},
artifacts: [
{
name: "result.txt",
parts: [
{
type: "text",
text: "Task completed successfully",
},
],
},
],
};
await fileStore.save({ task: updatedTask, history: [] });
// Retrieve the updated task
const result = await fileStore.load(taskId);
expect(result).toBeDefined();
expect(result?.task.id).toBe(taskId);
expect(result?.task.status.state).toBe("completed");
expect(result?.task.artifacts).toBeDefined();
expect(result?.task.artifacts?.length).toBe(1);
expect(result?.task.artifacts?.[0].name).toBe("result.txt");
});
it("should return null for non-existent task", async () => {
const nonExistentTaskId = "non-existent-task";
const result = await fileStore.load(nonExistentTaskId);
expect(result).toBeNull();
});
it("should handle tasks with artifacts containing file parts", async () => {
const taskId = "test-file-task";
const fileContent = "SGVsbG8gQTJBIQ=="; // Base64 encoded "Hello A2A!"
const task: Task = {
id: taskId,
status: {
state: "completed" as TaskState,
timestamp: new Date().toISOString(),
},
artifacts: [
{
name: "example.txt",
parts: [
{
type: "file",
file: {
name: "example.txt",
mimeType: "text/plain",
bytes: fileContent,
},
},
],
},
],
};
// Save the task
await fileStore.save({ task, history: [] });
// Retrieve the task
const result = await fileStore.load(taskId);
expect(result).toBeDefined();
expect(result?.task.artifacts).toBeDefined();
expect(result?.task.artifacts?.length).toBe(1);
const filePart = result?.task.artifacts?.[0].parts[0];
expect(filePart?.type).toBe("file");
expect((filePart as any).file.name).toBe("example.txt");
expect((filePart as any).file.bytes).toBe(fileContent);
});
it("should handle tasks with multiple artifacts", async () => {
const taskId = "multi-artifact-task";
const task: Task = {
id: taskId,
status: {
state: "completed" as TaskState,
timestamp: new Date().toISOString(),
},
artifacts: [
{
name: "result1.txt",
parts: [
{
type: "text",
text: "First result",
},
],
},
{
name: "result2.txt",
parts: [
{
type: "text",
text: "Second result",
},
],
},
],
};
// Save the task
await fileStore.save({ task, history: [] });
// Retrieve the task
const result = await fileStore.load(taskId);
expect(result).toBeDefined();
expect(result?.task.artifacts).toBeDefined();
expect(result?.task.artifacts?.length).toBe(2);
expect(result?.task.artifacts?.[0].name).toBe("result1.txt");
expect(result?.task.artifacts?.[1].name).toBe("result2.txt");
});
it("should save and retrieve task history", async () => {
const taskId = "history-task";
const task: Task = {
id: taskId,
status: {
state: "completed" as TaskState,
timestamp: new Date().toISOString(),
},
};
const history: Message[] = [
{
role: "user",
parts: [
{
type: "text",
text: "Initial request",
},
],
},
{
role: "agent",
parts: [
{
type: "text",
text: "Agent response",
},
],
},
];
// Save the task with history
await fileStore.save({ task, history });
// Retrieve the task and history
const result = await fileStore.load(taskId);
expect(result).toBeDefined();
expect(result?.history).toBeDefined();
expect(result?.history.length).toBe(2);
expect(result?.history[0].role).toBe("user");
expect(result?.history[1].role).toBe("agent");
});
});