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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
|
import { beforeEach, describe, expect, test } from "vitest";
import { RuleEngineRule } from "@karakeep/shared/types/rules";
import type { CustomTestContext } from "../testUtils";
import { defaultBeforeEach } from "../testUtils";
describe("Rules Routes", () => {
let tagId1: string;
let tagId2: string;
let otherUserTagId: string;
let listId: string;
let otherUserListId: string;
beforeEach<CustomTestContext>(async (ctx) => {
await defaultBeforeEach(true)(ctx);
tagId1 = (
await ctx.apiCallers[0].tags.create({
name: "Tag 1",
})
).id;
tagId2 = (
await ctx.apiCallers[0].tags.create({
name: "Tag 2",
})
).id;
otherUserTagId = (
await ctx.apiCallers[1].tags.create({
name: "Tag 1",
})
).id;
listId = (
await ctx.apiCallers[0].lists.create({
name: "List 1",
icon: "😘",
})
).id;
otherUserListId = (
await ctx.apiCallers[1].lists.create({
name: "List 1",
icon: "😘",
})
).id;
});
test<CustomTestContext>("create rule with valid data", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules;
const validRuleInput: Omit<RuleEngineRule, "id"> = {
name: "Valid Rule",
description: "A test rule",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [
{ type: "addTag", tagId: tagId1 },
{ type: "addToList", listId: listId },
],
};
const createdRule = await api.create(validRuleInput);
expect(createdRule).toMatchObject({
name: "Valid Rule",
description: "A test rule",
enabled: true,
event: validRuleInput.event,
condition: validRuleInput.condition,
actions: validRuleInput.actions,
});
});
test<CustomTestContext>("create rule fails with invalid data (no actions)", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules;
const invalidRuleInput: Omit<RuleEngineRule, "id"> = {
name: "Invalid Rule",
description: "Missing actions",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [], // Empty actions array - should fail validation
};
await expect(() => api.create(invalidRuleInput)).rejects.toThrow(
/You must specify at least one action/,
);
});
test<CustomTestContext>("create rule fails with invalid event (empty tagId)", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules;
const invalidRuleInput: Omit<RuleEngineRule, "id"> = {
name: "Invalid Rule",
description: "Invalid event",
enabled: true,
event: { type: "tagAdded", tagId: "" }, // Empty tagId - should fail
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: tagId1 }],
};
await expect(() => api.create(invalidRuleInput)).rejects.toThrow(
/You must specify a tag for this event type/,
);
});
test<CustomTestContext>("create rule fails with invalid condition (empty tagId in hasTag)", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules;
const invalidRuleInput: Omit<RuleEngineRule, "id"> = {
name: "Invalid Rule",
description: "Invalid condition",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "hasTag", tagId: "" }, // Empty tagId - should fail
actions: [{ type: "addTag", tagId: tagId1 }],
};
await expect(() => api.create(invalidRuleInput)).rejects.toThrow(
/You must specify a tag for this condition type/,
);
});
test<CustomTestContext>("update rule with valid data", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules;
// First, create a rule
const createdRule = await api.create({
name: "Original Rule",
description: "Original desc",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: tagId1 }],
});
const validUpdateInput: RuleEngineRule = {
id: createdRule.id,
name: "Updated Rule",
description: "Updated desc",
enabled: false,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "removeTag", tagId: tagId2 }],
};
const updatedRule = await api.update(validUpdateInput);
expect(updatedRule).toMatchObject({
id: createdRule.id,
name: "Updated Rule",
description: "Updated desc",
enabled: false,
event: validUpdateInput.event,
condition: validUpdateInput.condition,
actions: validUpdateInput.actions,
});
});
test<CustomTestContext>("update rule fails with invalid data (empty action tagId)", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules;
// First, create a rule
const createdRule = await api.create({
name: "Original Rule",
description: "Original desc",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: tagId1 }],
});
const invalidUpdateInput: RuleEngineRule = {
id: createdRule.id,
name: "Updated Rule",
description: "Updated desc",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "removeTag", tagId: "" }], // Empty tagId - should fail
};
await expect(() => api.update(invalidUpdateInput)).rejects.toThrow(
/You must specify a tag for this action type/,
);
});
test<CustomTestContext>("delete rule", async ({ apiCallers }) => {
const api = apiCallers[0].rules;
const createdRule = await api.create({
name: "Rule to Delete",
description: "",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: tagId1 }],
});
await api.delete({ id: createdRule.id });
// Attempt to fetch the rule should fail
await expect(() =>
api.update({ ...createdRule, name: "Updated" }),
).rejects.toThrow(/Rule not found/);
});
test<CustomTestContext>("list rules", async ({ apiCallers }) => {
const api = apiCallers[0].rules;
await api.create({
name: "Rule 1",
description: "",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: tagId1 }],
});
await api.create({
name: "Rule 2",
description: "",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: tagId2 }],
});
const rulesList = await api.list();
expect(rulesList.rules.length).toBeGreaterThanOrEqual(2);
expect(rulesList.rules.some((rule) => rule.name === "Rule 1")).toBeTruthy();
expect(rulesList.rules.some((rule) => rule.name === "Rule 2")).toBeTruthy();
});
describe("privacy checks", () => {
test<CustomTestContext>("cannot access or manipulate another user's rule", async ({
apiCallers,
}) => {
const apiUserA = apiCallers[0].rules; // First user
const apiUserB = apiCallers[1].rules; // Second user
// User A creates a rule
const createdRule = await apiUserA.create({
name: "User A's Rule",
description: "A rule for User A",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: tagId1 }],
});
// User B tries to update User A's rule
const updateInput: RuleEngineRule = {
id: createdRule.id,
name: "Trying to Update",
description: "Unauthorized update",
enabled: true,
event: createdRule.event,
condition: createdRule.condition,
actions: createdRule.actions,
};
await expect(() => apiUserB.update(updateInput)).rejects.toThrow(
/Rule not found/,
);
});
test<CustomTestContext>("cannot create rule with event on another user's tag", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules; // First user trying to use second user's tag
const invalidRuleInput: Omit<RuleEngineRule, "id"> = {
name: "Invalid Rule",
description: "Event with other user's tag",
enabled: true,
event: { type: "tagAdded", tagId: otherUserTagId }, // Other user's tag
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: tagId1 }],
};
await expect(() => api.create(invalidRuleInput)).rejects.toThrow(
/Tag not found/, // Expect an error indicating lack of ownership
);
});
test<CustomTestContext>("cannot create rule with condition on another user's tag", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules; // First user trying to use second user's tag
const invalidRuleInput: Omit<RuleEngineRule, "id"> = {
name: "Invalid Rule",
description: "Condition with other user's tag",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "hasTag", tagId: otherUserTagId }, // Other user's tag
actions: [{ type: "addTag", tagId: tagId1 }],
};
await expect(() => api.create(invalidRuleInput)).rejects.toThrow(
/Tag not found/,
);
});
test<CustomTestContext>("cannot create rule with action on another user's tag", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules; // First user trying to use second user's tag
const invalidRuleInput: Omit<RuleEngineRule, "id"> = {
name: "Invalid Rule",
description: "Action with other user's tag",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: otherUserTagId }], // Other user's tag
};
await expect(() => api.create(invalidRuleInput)).rejects.toThrow(
/Tag not found/,
);
});
test<CustomTestContext>("cannot create rule with event on another user's list", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules; // First user trying to use second user's list
const invalidRuleInput: Omit<RuleEngineRule, "id"> = {
name: "Invalid Rule",
description: "Event with other user's list",
enabled: true,
event: { type: "addedToList", listId: otherUserListId }, // Other user's list
condition: { type: "alwaysTrue" },
actions: [{ type: "addTag", tagId: tagId1 }],
};
await expect(() => api.create(invalidRuleInput)).rejects.toThrow(
/List not found/,
);
});
test<CustomTestContext>("cannot create rule with action on another user's list", async ({
apiCallers,
}) => {
const api = apiCallers[0].rules; // First user trying to use second user's list
const invalidRuleInput: Omit<RuleEngineRule, "id"> = {
name: "Invalid Rule",
description: "Action with other user's list",
enabled: true,
event: { type: "bookmarkAdded" },
condition: { type: "alwaysTrue" },
actions: [{ type: "addToList", listId: otherUserListId }], // Other user's list
};
await expect(() => api.create(invalidRuleInput)).rejects.toThrow(
/List not found/,
);
});
});
});
|