forked from tursodatabase/libsql-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextensions.test.js
More file actions
586 lines (478 loc) · 17.4 KB
/
extensions.test.js
File metadata and controls
586 lines (478 loc) · 17.4 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
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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
import test from "ava";
import { Authorization, Action } from "libsql";
test.serial("Statement.run() returning duration", async (t) => {
const db = t.context.db;
const stmt = db.prepare("SELECT 1");
const info = stmt.timing().run();
t.not(info.duration, undefined);
t.log(info.duration)
});
test.serial("Statement.get() returning duration", async (t) => {
const db = t.context.db;
const stmt = db.prepare("SELECT ?");
const info = stmt.timing().get(1);
t.not(info._metadata?.duration, undefined);
t.log(info._metadata?.duration)
});
// ---- Legacy API (backward compatibility) ----
test.serial("Database.authorizer()/allow (legacy)", async (t) => {
const db = t.context.db;
db.authorizer({
"users": Authorization.ALLOW
});
const stmt = db.prepare("SELECT * FROM users");
const users = stmt.all();
t.is(users.length, 2);
});
test.serial("Database.authorizer()/deny (legacy)", async (t) => {
const db = t.context.db;
db.authorizer({
"users": Authorization.DENY
});
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users");
}, {
instanceOf: t.context.errorType,
code: "SQLITE_AUTH"
});
});
// ---- Rule-based API ----
test.serial("Rule-based: allow READ on table", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [
{ action: Action.READ, table: "users", policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const stmt = db.prepare("SELECT * FROM users");
const users = stmt.all();
t.is(users.length, 2);
});
test.serial("Rule-based: deny all with default policy", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [],
defaultPolicy: Authorization.DENY,
});
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users");
}, {
instanceOf: t.context.errorType,
code: "SQLITE_AUTH"
});
});
test.serial("Rule-based: action-level deny PRAGMA", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [
{ action: Action.PRAGMA, policy: Authorization.DENY },
],
defaultPolicy: Authorization.ALLOW,
});
await t.throwsAsync(async () => {
return await db.prepare("PRAGMA table_info('users')");
}, {
instanceOf: t.context.errorType,
code: "SQLITE_AUTH"
});
});
test.serial("Rule-based: multiple actions in single rule", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [
{ action: [Action.INSERT, Action.UPDATE, Action.DELETE], table: "users", policy: Authorization.DENY },
{ action: Action.SELECT, policy: Authorization.ALLOW },
{ action: Action.READ, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.ALLOW,
});
// SELECT should work
const stmt = db.prepare("SELECT * FROM users");
const users = stmt.all();
t.is(users.length, 2);
// INSERT should be denied
await t.throwsAsync(async () => {
return await db.prepare("INSERT INTO users (id, name, email) VALUES (3, 'Eve', 'eve@example.org')");
}, {
instanceOf: t.context.errorType,
code: "SQLITE_AUTH"
});
});
test.serial("Rule-based: glob pattern on table name", async (t) => {
const db = t.context.db;
db.exec("CREATE TABLE IF NOT EXISTS logs_access (id INTEGER PRIMARY KEY, msg TEXT)");
db.exec("INSERT INTO logs_access (id, msg) VALUES (1, 'hello')");
db.authorizer({
rules: [
{ action: Action.READ, table: { glob: "logs_*" }, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const stmt = db.prepare("SELECT * FROM logs_access");
const rows = stmt.all();
t.is(rows.length, 1);
// users table should be denied (doesn't match logs_*)
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users");
}, {
instanceOf: t.context.errorType,
code: "SQLITE_AUTH"
});
});
test.serial("Rule-based: IGNORE returns NULL for READ columns", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [
{ action: Action.READ, table: "users", column: "email", policy: Authorization.IGNORE },
{ action: Action.READ, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const stmt = db.prepare("SELECT id, name, email FROM users WHERE id = 1");
const row = stmt.get();
t.is(row.id, 1);
t.is(row.name, "Alice");
t.is(row.email, null);
});
test.serial("Rule-based: entity pattern for functions", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [
{ action: Action.FUNCTION, entity: "upper", policy: Authorization.ALLOW },
{ action: Action.READ, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const stmt = db.prepare("SELECT upper(name) as uname FROM users WHERE id = 1");
const row = stmt.get();
t.is(row.uname, "ALICE");
});
test.serial("Rule-based: first match wins (order matters)", async (t) => {
const db = t.context.db;
// Specific deny for users table, then broad allow for all reads
db.authorizer({
rules: [
{ action: Action.READ, table: "users", policy: Authorization.DENY },
{ action: Action.READ, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.ALLOW,
});
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users");
}, {
instanceOf: t.context.errorType,
code: "SQLITE_AUTH"
});
});
test.serial("Rule-based: null removes authorizer", async (t) => {
const db = t.context.db;
// Set a restrictive authorizer
db.authorizer({
rules: [],
defaultPolicy: Authorization.DENY,
});
// Should fail
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users");
}, {
instanceOf: t.context.errorType,
code: "SQLITE_AUTH"
});
// Remove authorizer
db.authorizer(null);
// Should succeed now
const stmt = db.prepare("SELECT * FROM users");
const users = stmt.all();
t.is(users.length, 2);
});
test.serial("Rule-based: default policy allow", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [],
defaultPolicy: Authorization.ALLOW,
});
const stmt = db.prepare("SELECT * FROM users");
const users = stmt.all();
t.is(users.length, 2);
});
// ---- Glob pattern tests ----
test.serial("Glob: ? matches exactly one character", async (t) => {
const db = t.context.db;
db.exec("CREATE TABLE IF NOT EXISTS log_a (id INTEGER PRIMARY KEY, msg TEXT)");
db.exec("CREATE TABLE IF NOT EXISTS log_b (id INTEGER PRIMARY KEY, msg TEXT)");
db.exec("INSERT INTO log_a (id, msg) VALUES (1, 'aaa')");
db.exec("INSERT INTO log_b (id, msg) VALUES (1, 'bbb')");
db.authorizer({
rules: [
{ action: Action.READ, table: { glob: "log_?" }, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
// log_a and log_b should both match log_?
const a = db.prepare("SELECT * FROM log_a").all();
t.is(a.length, 1);
const b = db.prepare("SELECT * FROM log_b").all();
t.is(b.length, 1);
// users should NOT match log_?
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users");
}, { instanceOf: t.context.errorType, code: "SQLITE_AUTH" });
});
test.serial("Glob: ? does not match zero or multiple characters", async (t) => {
const db = t.context.db;
// Create tables with varying suffix lengths
db.exec("CREATE TABLE IF NOT EXISTS item_ (id INTEGER PRIMARY KEY)");
db.exec("CREATE TABLE IF NOT EXISTS item_ab (id INTEGER PRIMARY KEY)");
db.authorizer({
rules: [
{ action: Action.READ, table: { glob: "item_?" }, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
// item_ (zero chars after _) should NOT match item_?
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM item_");
}, { instanceOf: t.context.errorType, code: "SQLITE_AUTH" });
// item_ab (two chars after _) should NOT match item_?
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM item_ab");
}, { instanceOf: t.context.errorType, code: "SQLITE_AUTH" });
});
test.serial("Glob: * at start of pattern", async (t) => {
const db = t.context.db;
db.exec("CREATE TABLE IF NOT EXISTS audit_users (id INTEGER PRIMARY KEY, msg TEXT)");
db.exec("INSERT INTO audit_users (id, msg) VALUES (1, 'x')");
db.authorizer({
rules: [
{ action: Action.READ, table: { glob: "*_users" }, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const rows = db.prepare("SELECT * FROM audit_users").all();
t.is(rows.length, 1);
});
test.serial("Glob: * in middle of pattern", async (t) => {
const db = t.context.db;
db.exec("CREATE TABLE IF NOT EXISTS app_prod_logs (id INTEGER PRIMARY KEY, msg TEXT)");
db.exec("INSERT INTO app_prod_logs (id, msg) VALUES (1, 'hello')");
db.authorizer({
rules: [
{ action: Action.READ, table: { glob: "app_*_logs" }, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const rows = db.prepare("SELECT * FROM app_prod_logs").all();
t.is(rows.length, 1);
// users doesn't match app_*_logs
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users");
}, { instanceOf: t.context.errorType, code: "SQLITE_AUTH" });
});
test.serial("Glob: multiple wildcards in one pattern", async (t) => {
const db = t.context.db;
db.exec("CREATE TABLE IF NOT EXISTS x_data_y (id INTEGER PRIMARY KEY)");
db.exec("INSERT INTO x_data_y (id) VALUES (1)");
db.authorizer({
rules: [
{ action: Action.READ, table: { glob: "*_data_*" }, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const rows = db.prepare("SELECT * FROM x_data_y").all();
t.is(rows.length, 1);
});
test.serial("Glob: on column name", async (t) => {
const db = t.context.db;
// IGNORE columns matching e* → email gets NULL, everything else readable
db.authorizer({
rules: [
{ action: Action.READ, table: "users", column: { glob: "e*" }, policy: Authorization.IGNORE },
{ action: Action.READ, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const row = db.prepare("SELECT id, name, email FROM users WHERE id = 1").get();
t.is(row.id, 1);
t.is(row.name, "Alice");
t.is(row.email, null); // email matches e*, gets IGNORE → NULL
});
test.serial("Glob: on entity name (pragma)", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [
{ action: Action.PRAGMA, entity: { glob: "table_*" }, policy: Authorization.ALLOW },
{ action: Action.READ, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
// table_info matches table_*
const info = db.prepare("PRAGMA table_info('users')").all();
t.true(info.length > 0);
});
test.serial("Glob: exact string without wildcards is exact match", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [
{ action: Action.READ, table: "users", policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const rows = db.prepare("SELECT * FROM users").all();
t.is(rows.length, 2);
});
test.serial("Glob: table + column combo", async (t) => {
const db = t.context.db;
// For any table matching user*, IGNORE columns matching e*
db.authorizer({
rules: [
{ action: Action.READ, table: { glob: "user*" }, column: { glob: "e*" }, policy: Authorization.IGNORE },
{ action: Action.READ, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const row = db.prepare("SELECT id, name, email FROM users WHERE id = 2").get();
t.is(row.id, 2);
t.is(row.name, "Bob");
t.is(row.email, null); // email matches e*, users matches user*
});
test.serial("Glob: wildcard-only pattern * matches everything", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [
{ action: Action.READ, table: { glob: "*" }, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const rows = db.prepare("SELECT * FROM users").all();
t.is(rows.length, 2);
});
test.serial("Glob: pattern with no match denies correctly", async (t) => {
const db = t.context.db;
db.authorizer({
rules: [
{ action: Action.READ, table: { glob: "nonexistent_*" }, policy: Authorization.ALLOW },
{ action: Action.SELECT, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users");
}, { instanceOf: t.context.errorType, code: "SQLITE_AUTH" });
});
// ---- Accessor (view-scoped authorization) ----
test.serial("Accessor: allows reads through a view when accessor matches", async (t) => {
const db = t.context.db;
// Create a view over users
db.exec("CREATE TEMPORARY VIEW users_view AS SELECT id, name FROM users");
db.authorizer({
rules: [
{ action: Action.SELECT, policy: Authorization.ALLOW },
// Allow reads from the view itself
{ action: Action.READ, table: "users_view", policy: Authorization.ALLOW },
// Allow reads from users ONLY when accessed via users_view
{ action: Action.READ, table: "users", accessor: "users_view", policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const stmt = db.prepare("SELECT * FROM users_view");
const rows = stmt.all();
t.is(rows.length, 2);
});
test.serial("Accessor: blocks direct table access when accessor doesn't match", async (t) => {
const db = t.context.db;
db.exec("CREATE TEMPORARY VIEW IF NOT EXISTS users_view AS SELECT id, name FROM users");
db.authorizer({
rules: [
{ action: Action.SELECT, policy: Authorization.ALLOW },
{ action: Action.READ, table: "users_view", policy: Authorization.ALLOW },
{ action: Action.READ, table: "users", accessor: "users_view", policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
// Direct access has accessor=null, which doesn't match "users_view"
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users");
}, { instanceOf: t.context.errorType, code: "SQLITE_AUTH" });
});
test.serial("Accessor: glob pattern matching", async (t) => {
const db = t.context.db;
db.exec("CREATE TEMPORARY VIEW IF NOT EXISTS users_view AS SELECT id, name FROM users");
db.authorizer({
rules: [
{ action: Action.SELECT, policy: Authorization.ALLOW },
{ action: Action.READ, table: "users_view", policy: Authorization.ALLOW },
// Allow reads from users when accessed via any view matching the glob
{ action: Action.READ, table: "users", accessor: { glob: "*_view" }, policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
const stmt = db.prepare("SELECT * FROM users_view");
const rows = stmt.all();
t.is(rows.length, 2);
});
test.serial("Accessor: blocks subquery escape to underlying table", async (t) => {
const db = t.context.db;
db.exec("CREATE TEMPORARY VIEW IF NOT EXISTS users_view AS SELECT id, name FROM users");
db.authorizer({
rules: [
{ action: Action.SELECT, policy: Authorization.ALLOW },
{ action: Action.READ, table: "users_view", policy: Authorization.ALLOW },
{ action: Action.READ, table: "users", accessor: "users_view", policy: Authorization.ALLOW },
],
defaultPolicy: Authorization.DENY,
});
// Subquery directly referencing users table (accessor=null for the subquery)
await t.throwsAsync(async () => {
return await db.prepare("SELECT * FROM users_view WHERE id IN (SELECT id FROM users)");
}, { instanceOf: t.context.errorType, code: "SQLITE_AUTH" });
});
// ---- Setup ----
const connect = async (path_opt) => {
const path = path_opt ?? "hello.db";
const x = await import("libsql");
const db = new x.default(process.env.LIBSQL_DATABASE ?? path, {});
return [db, x.SqliteError, "libsql"];
};
test.beforeEach(async (t) => {
const [db, errorType, provider] = await connect();
db.exec(`
DROP TABLE IF EXISTS users;
DROP TABLE IF EXISTS logs_access;
DROP TABLE IF EXISTS log_a;
DROP TABLE IF EXISTS log_b;
DROP TABLE IF EXISTS item_;
DROP TABLE IF EXISTS item_ab;
DROP TABLE IF EXISTS audit_users;
DROP TABLE IF EXISTS app_prod_logs;
DROP TABLE IF EXISTS x_data_y;
DROP TABLE IF EXISTS products;
CREATE TABLE users (id INTEGER PRIMARY KEY, name TEXT, email TEXT)
`);
db.exec(
"INSERT INTO users (id, name, email) VALUES (1, 'Alice', 'alice@example.org')"
);
db.exec(
"INSERT INTO users (id, name, email) VALUES (2, 'Bob', 'bob@example.com')"
);
t.context = {
db,
errorType,
provider
};
});