ic-dbms-canister 0.9.0

A framework to build Database canisters on the Internet Computer using DBMS, by just providing the schema.
Documentation
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
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
// Rust guideline compliant 2026-04-27
// X-WHERE-CLAUSE, M-CANONICAL-DOCS

//! API generic interface to be used by different DBMS canisters.

mod inspect;

use std::collections::HashSet;

use candid::Principal;
use ic_dbms_api::prelude::{
    AggregateFunction, AggregatedRow, ColumnDef, Database, DbmsError, DeleteBehavior, Filter,
    IcDbmsResult, IdentityPerms, InsertRecord, JoinColumnDef, MigrationOp, MigrationPolicy,
    PermGrant, PermRevoke, Query, QueryError, RequiredPerm, TableFingerprint, TablePerms,
    TableSchema, TransactionId, UpdateRecord, Value, fingerprint_for_name,
};
use wasm_dbms::prelude::{DatabaseSchema, WasmDbmsDatabase};

pub use self::inspect::inspect;
use crate::memory::{DBMS_CONTEXT, IcAccessControlList, IcMemoryProvider};
use crate::trap;

// --- ACL: grants -----------------------------------------------------------

/// Grants the `admin` bypass flag to `target`. Caller must hold
/// `manage_acl`.
pub fn grant_admin(target: Principal) -> IcDbmsResult<()> {
    apply_grant(target, PermGrant::Admin)
}

/// Revokes the `admin` bypass flag from `target`.
pub fn revoke_admin(target: Principal) -> IcDbmsResult<()> {
    apply_revoke(target, PermRevoke::Admin)
}

/// Grants the `manage_acl` operational flag to `target`.
pub fn grant_manage_acl(target: Principal) -> IcDbmsResult<()> {
    apply_grant(target, PermGrant::ManageAcl)
}

/// Revokes the `manage_acl` operational flag from `target`.
pub fn revoke_manage_acl(target: Principal) -> IcDbmsResult<()> {
    apply_revoke(target, PermRevoke::ManageAcl)
}

/// Grants the `migrate` operational flag to `target`.
pub fn grant_migrate(target: Principal) -> IcDbmsResult<()> {
    apply_grant(target, PermGrant::Migrate)
}

/// Revokes the `migrate` operational flag from `target`.
pub fn revoke_migrate(target: Principal) -> IcDbmsResult<()> {
    apply_revoke(target, PermRevoke::Migrate)
}

/// Grants `perms` on every table to `target`.
pub fn grant_all_tables_perms(target: Principal, perms: TablePerms) -> IcDbmsResult<()> {
    apply_grant(target, PermGrant::AllTables(perms))
}

/// Revokes `perms` on every table from `target` (does not affect
/// per-table grants).
pub fn revoke_all_tables_perms(target: Principal, perms: TablePerms) -> IcDbmsResult<()> {
    apply_revoke(target, PermRevoke::AllTables(perms))
}

/// Grants `perms` on the named `table` to `target`.
pub fn grant_table_perms(target: Principal, table: String, perms: TablePerms) -> IcDbmsResult<()> {
    let fingerprint = resolve_table_fingerprint(&table)?;
    apply_grant(target, PermGrant::Table(fingerprint, perms))
}

/// Revokes `perms` on the named `table` from `target`.
pub fn revoke_table_perms(target: Principal, table: String, perms: TablePerms) -> IcDbmsResult<()> {
    let fingerprint = resolve_table_fingerprint(&table)?;
    apply_revoke(target, PermRevoke::Table(fingerprint, perms))
}

/// Removes `target` entirely from the ACL. Caller must hold `manage_acl`.
pub fn remove_identity(target: Principal) -> IcDbmsResult<()> {
    let caller = crate::utils::caller();
    DBMS_CONTEXT.with(|ctx| {
        if !ctx.granted_manage_acl(&caller) {
            return Err(DbmsError::AccessDenied {
                table: None,
                required: RequiredPerm::ManageAcl,
            });
        }
        ctx.acl_remove_identity(&target)
    })
}

/// Lists every identity together with its [`IdentityPerms`]. Caller must
/// hold `manage_acl`.
pub fn list_identities() -> IcDbmsResult<Vec<(Principal, IdentityPerms)>> {
    let caller = crate::utils::caller();
    DBMS_CONTEXT.with(|ctx| {
        if !ctx.granted_manage_acl(&caller) {
            return Err(DbmsError::AccessDenied {
                table: None,
                required: RequiredPerm::ManageAcl,
            });
        }
        Ok(ctx.acl_identities())
    })
}

/// Returns the caller's own [`IdentityPerms`]. Always permitted.
pub fn my_perms() -> IdentityPerms {
    let caller = crate::utils::caller();
    DBMS_CONTEXT.with(|ctx| ctx.acl_perms(&caller))
}

fn apply_grant(target: Principal, g: PermGrant) -> IcDbmsResult<()> {
    let caller = crate::utils::caller();
    DBMS_CONTEXT.with(|ctx| {
        if !ctx.granted_manage_acl(&caller) {
            return Err(DbmsError::AccessDenied {
                table: None,
                required: RequiredPerm::ManageAcl,
            });
        }
        ctx.acl_grant(target, g)
    })
}

fn apply_revoke(target: Principal, r: PermRevoke) -> IcDbmsResult<()> {
    let caller = crate::utils::caller();
    DBMS_CONTEXT.with(|ctx| {
        if !ctx.granted_manage_acl(&caller) {
            return Err(DbmsError::AccessDenied {
                table: None,
                required: RequiredPerm::ManageAcl,
            });
        }
        ctx.acl_revoke(&target, r)
    })
}

// --- Transactions ----------------------------------------------------------

/// Begins a new transaction owned by the caller and returns its ID.
///
/// Opening a transaction is unconditional — per-CRUD perm checks gate
/// the data accesses inside the transaction.
pub fn begin_transaction() -> TransactionId {
    let owner = crate::utils::caller();
    DBMS_CONTEXT.with(|ctx| ctx.begin_transaction(owner.as_slice().to_vec()))
}

/// Commits the transaction with the given ID. Caller must own the
/// transaction.
pub fn commit<S>(transaction_id: TransactionId, database_schema: S) -> IcDbmsResult<()>
where
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    assert_caller_owns_transaction(Some(&transaction_id));
    DBMS_CONTEXT.with(|ctx| {
        let mut db = WasmDbmsDatabase::from_transaction(ctx, database_schema, transaction_id);
        db.commit()
    })
}

/// Rolls back the transaction with the given ID. Caller must own the
/// transaction.
pub fn rollback<S>(transaction_id: TransactionId, database_schema: S) -> IcDbmsResult<()>
where
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    assert_caller_owns_transaction(Some(&transaction_id));
    DBMS_CONTEXT.with(|ctx| {
        let mut db = WasmDbmsDatabase::from_transaction(ctx, database_schema, transaction_id);
        db.rollback()
    })
}

// --- CRUD ------------------------------------------------------------------

/// Executes a select query against the database schema, optionally within a transaction.
pub fn select<T, S>(
    query: Query,
    transaction_id: Option<TransactionId>,
    database_schema: S,
) -> IcDbmsResult<Vec<T::Record>>
where
    T: TableSchema,
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_table_perm(T::fingerprint(), TablePerms::READ)?;
    assert_caller_owns_transaction(transaction_id.as_ref());
    with_database(transaction_id, database_schema, |db| db.select::<T>(query))
}

/// Executes a generic select query by table name, optionally within a transaction.
///
/// Unlike [`select`], this method does not require a concrete table type.
/// It takes a table name as a string and dispatches internally, returning
/// rows as column-value pairs.
pub fn select_raw<S>(
    table: &str,
    query: Query,
    transaction_id: Option<TransactionId>,
    database_schema: S,
) -> IcDbmsResult<Vec<Vec<(ColumnDef, Value)>>>
where
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_table_read_by_name(table)?;
    assert_caller_owns_transaction(transaction_id.as_ref());
    with_database(transaction_id, database_schema, |db| {
        db.select_raw(table, query)
    })
}

/// Executes a join query through the raw/untyped select path.
///
/// Returns rows with [`JoinColumnDef`] that include the source table name.
pub fn select_join<S>(
    table: &str,
    query: Query,
    transaction_id: Option<TransactionId>,
    database_schema: S,
) -> IcDbmsResult<Vec<Vec<(JoinColumnDef, Value)>>>
where
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_join_read_perms(table, &query)?;
    assert_caller_owns_transaction(transaction_id.as_ref());
    with_database(transaction_id, database_schema, |db| {
        db.select_join(table, query)
    })
}

/// Executes an aggregate query against the database schema, optionally within
/// a transaction.
pub fn aggregate<T, S>(
    query: Query,
    aggregates: Vec<AggregateFunction>,
    transaction_id: Option<TransactionId>,
    database_schema: S,
) -> IcDbmsResult<Vec<AggregatedRow>>
where
    T: TableSchema,
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_table_perm(T::fingerprint(), TablePerms::READ)?;
    assert_caller_owns_transaction(transaction_id.as_ref());
    with_database(transaction_id, database_schema, |db| {
        db.aggregate::<T>(query, &aggregates)
    })
}

/// Executes an insert query against the database schema, optionally within a transaction.
pub fn insert<T, S>(
    record: T::Insert,
    transaction_id: Option<TransactionId>,
    database_schema: S,
) -> IcDbmsResult<()>
where
    T: TableSchema,
    T::Insert: InsertRecord<Schema = T>,
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_table_perm(T::fingerprint(), TablePerms::INSERT)?;
    assert_caller_owns_transaction(transaction_id.as_ref());
    with_database(transaction_id, database_schema, |db| db.insert::<T>(record))
}

/// Executes an update query against the database schema, optionally within a transaction.
pub fn update<T, S>(
    patch: T::Update,
    transaction_id: Option<TransactionId>,
    database_schema: S,
) -> IcDbmsResult<u64>
where
    T: TableSchema,
    T::Update: UpdateRecord<Schema = T>,
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_table_perm(T::fingerprint(), TablePerms::UPDATE)?;
    assert_caller_owns_transaction(transaction_id.as_ref());
    with_database(transaction_id, database_schema, |db| db.update::<T>(patch))
}

/// Executes a delete query against the database schema, optionally within a transaction.
pub fn delete<T, S>(
    behaviour: DeleteBehavior,
    filter: Option<Filter>,
    transaction_id: Option<TransactionId>,
    database_schema: S,
) -> IcDbmsResult<u64>
where
    T: TableSchema,
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_table_perm(T::fingerprint(), TablePerms::DELETE)?;
    assert_caller_owns_transaction(transaction_id.as_ref());
    with_database(transaction_id, database_schema, |db| {
        db.delete::<T>(behaviour, filter)
    })
}

// --- Migration -------------------------------------------------------------

/// Returns `true` if the persisted schema differs from the compiled one.
/// Caller must hold the `migrate` flag.
pub fn has_drift<S>(database_schema: S) -> IcDbmsResult<bool>
where
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_migrate()?;
    with_database(None, database_schema, |db| db.has_drift())
}

/// Returns the migration ops needed to bring the persisted schema in line
/// with the compiled one, without applying anything.
pub fn pending_migrations<S>(database_schema: S) -> IcDbmsResult<Vec<MigrationOp>>
where
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_migrate()?;
    with_database(None, database_schema, |db| db.pending_migrations())
}

/// Applies a planned migration under `policy`. Transactional: on failure the
/// stored schema and data are unchanged.
pub fn migrate<S>(policy: MigrationPolicy, database_schema: S) -> IcDbmsResult<()>
where
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
{
    check_migrate()?;
    DBMS_CONTEXT.with(|ctx| {
        let mut db = WasmDbmsDatabase::oneshot(ctx, database_schema);
        db.migrate(policy)
    })
}

// --- Helpers ---------------------------------------------------------------

fn check_table_perm(table: TableFingerprint, required: TablePerms) -> IcDbmsResult<()> {
    let caller = crate::utils::caller();
    DBMS_CONTEXT.with(|ctx| {
        if ctx.granted(&caller, table, required) {
            Ok(())
        } else {
            Err(DbmsError::AccessDenied {
                table: Some(table),
                required: RequiredPerm::Table(required),
            })
        }
    })
}

fn check_table_read_by_name(table: &str) -> IcDbmsResult<()> {
    let fingerprint = resolve_table_fingerprint(table)?;
    check_table_perm(fingerprint, TablePerms::READ)
}

fn check_join_read_perms(root_table: &str, query: &Query) -> IcDbmsResult<()> {
    let mut checked = HashSet::new();
    for table in
        std::iter::once(root_table).chain(query.joins.iter().map(|join| join.table.as_str()))
    {
        let fingerprint = resolve_table_fingerprint(table)?;
        if checked.insert(fingerprint) {
            check_table_perm(fingerprint, TablePerms::READ)?;
        }
    }
    Ok(())
}

fn resolve_table_fingerprint(table: &str) -> IcDbmsResult<TableFingerprint> {
    DBMS_CONTEXT.with(|ctx| {
        if ctx.has_table(table) {
            Ok(fingerprint_for_name(table))
        } else {
            Err(DbmsError::Query(QueryError::TableNotFound(
                table.to_string(),
            )))
        }
    })
}

fn check_migrate() -> IcDbmsResult<()> {
    let caller = crate::utils::caller();
    DBMS_CONTEXT.with(|ctx| {
        if ctx.granted_migrate(&caller) {
            Ok(())
        } else {
            Err(DbmsError::AccessDenied {
                table: None,
                required: RequiredPerm::Migrate,
            })
        }
    })
}

/// Closure-based helper that creates a [`WasmDbmsDatabase`] inside the
/// `DBMS_CONTEXT` thread-local and invokes `f` on it.
fn with_database<S, F, R>(transaction_id: Option<TransactionId>, database_schema: S, f: F) -> R
where
    S: DatabaseSchema<IcMemoryProvider, IcAccessControlList> + 'static,
    F: for<'a> FnOnce(&WasmDbmsDatabase<'a, IcMemoryProvider, IcAccessControlList>) -> R,
{
    DBMS_CONTEXT.with(|ctx| {
        let db = match transaction_id {
            Some(tx_id) => WasmDbmsDatabase::from_transaction(ctx, database_schema, tx_id),
            None => WasmDbmsDatabase::oneshot(ctx, database_schema),
        };
        f(&db)
    })
}

/// Asserts that the caller owns the given transaction ID. Traps on
/// mismatch.
fn assert_caller_owns_transaction(transaction_id: Option<&TransactionId>) {
    let Some(tx_id) = transaction_id else {
        return;
    };
    let caller = crate::utils::caller();
    if !DBMS_CONTEXT.with(|ctx| ctx.has_transaction(tx_id, caller.as_slice())) {
        trap!("Caller {caller} does not own transaction {tx_id}");
    }
}

#[cfg(test)]
mod tests {

    use ic_dbms_api::prelude::Uint32;

    use super::*;
    use crate::tests::{UserInsertRequest, load_fixtures};

    fn alice() -> Principal {
        crate::utils::caller()
    }

    fn init_acl() {
        DBMS_CONTEXT.with(|ctx| {
            crate::tests::TestDatabaseSchema::register_tables(ctx)
                .expect("failed to register tables");
            ctx.acl_grant(alice(), PermGrant::Admin).unwrap();
            ctx.acl_grant(alice(), PermGrant::ManageAcl).unwrap();
            ctx.acl_grant(alice(), PermGrant::Migrate).unwrap();
            ctx.acl_grant(alice(), PermGrant::AllTables(TablePerms::all()))
                .unwrap();
        });
    }

    #[test]
    fn test_should_grant_admin() {
        init_acl();
        let bob = Principal::from_text("ryjl3-tyaaa-aaaaa-aaaba-cai").unwrap();
        grant_admin(bob).expect("failed to grant admin");
        DBMS_CONTEXT.with(|ctx| assert!(ctx.granted_admin(&bob)));
    }

    #[test]
    fn test_should_revoke_admin() {
        init_acl();
        let bob = Principal::from_text("ryjl3-tyaaa-aaaaa-aaaba-cai").unwrap();
        grant_admin(bob).unwrap();
        revoke_admin(bob).unwrap();
        DBMS_CONTEXT.with(|ctx| assert!(!ctx.granted_admin(&bob)));
    }

    #[test]
    fn test_should_list_identities() {
        init_acl();
        let identities = list_identities().expect("failed to list identities");
        assert!(identities.iter().any(|(p, _)| *p == alice()));
    }

    #[test]
    fn test_should_my_perms_returns_callers() {
        init_acl();
        let perms = my_perms();
        assert!(perms.admin && perms.manage_acl && perms.migrate);
    }

    #[test]
    fn test_should_reject_unknown_table_acl_grant() {
        init_acl();
        let bob = Principal::from_text("ryjl3-tyaaa-aaaaa-aaaba-cai").unwrap();
        let err = grant_table_perms(bob, "missing".to_string(), TablePerms::READ)
            .expect_err("unknown table must be rejected");
        assert!(matches!(
            err,
            DbmsError::Query(QueryError::TableNotFound(table)) if table == "missing"
        ));
    }

    #[test]
    fn test_should_deny_join_without_joined_table_read_perm() {
        init_acl();
        let query = Query::builder()
            .all()
            .inner_join("posts", "users.id", "posts.user")
            .build();
        let res = DBMS_CONTEXT.with(|ctx| {
            ctx.acl_revoke(&alice(), PermRevoke::Admin)
                .expect("should revoke bootstrap admin bypass");
            ctx.acl_revoke(&alice(), PermRevoke::AllTables(TablePerms::all()))
                .expect("should revoke bootstrap table perms");
            ctx.acl_grant(
                alice(),
                PermGrant::Table(crate::tests::User::fingerprint(), TablePerms::READ),
            )
            .expect("should grant root-table read");
            select_join("users", query, None, crate::tests::TestDatabaseSchema)
        });
        assert!(matches!(
            res,
            Err(DbmsError::AccessDenied {
                required: RequiredPerm::Table(perms),
                table: Some(table),
            }) if perms == TablePerms::READ && table == crate::tests::Post::fingerprint()
        ));
    }

    #[test]
    fn test_should_begin_transaction() {
        init_acl();
        let _tx_id = begin_transaction();
    }

    #[test]
    fn test_should_commit_transaction() {
        init_acl();
        let tx_id = begin_transaction();
        let res = commit(tx_id, crate::tests::TestDatabaseSchema);
        assert!(res.is_ok());
    }

    #[test]
    fn test_should_rollback_transaction() {
        init_acl();
        let tx_id = begin_transaction();
        let res = rollback(tx_id, crate::tests::TestDatabaseSchema);
        assert!(res.is_ok());
    }

    #[test]
    fn test_should_insert_record() {
        load_fixtures();
        init_acl();
        let record = UserInsertRequest {
            id: 100u32.into(),
            name: "Alice".to_string().into(),
            email: "alice@example.com".into(),
            age: 25u32.into(),
        };

        let res = insert::<crate::tests::User, _>(record, None, crate::tests::TestDatabaseSchema);
        assert!(res.is_ok());
    }

    #[test]
    fn test_should_select_record() {
        init_acl();
        load_fixtures();
        let query = Query::builder().all().limit(10).build();
        let res = select::<crate::tests::User, _>(query, None, crate::tests::TestDatabaseSchema);
        assert!(res.is_ok());
        let records = res.unwrap();
        assert!(!records.is_empty());
    }

    #[test]
    fn test_should_update_record() {
        init_acl();
        load_fixtures();

        let patch = crate::tests::UserUpdateRequest {
            id: None,
            name: Some("Robert".into()),
            email: Some("robert@example.com".into()),
            age: None,
            where_clause: Some(Filter::Eq("id".to_string(), Uint32::from(1u32).into())),
        };
        let res = update::<crate::tests::User, _>(patch, None, crate::tests::TestDatabaseSchema);
        assert!(res.is_ok());
    }

    #[test]
    fn test_should_delete_record() {
        init_acl();
        load_fixtures();

        let filter = Some(Filter::Eq("id".to_string(), Uint32::from(2u32).into()));
        let res = delete::<crate::tests::User, _>(
            DeleteBehavior::Cascade,
            filter,
            None,
            crate::tests::TestDatabaseSchema,
        );
        assert!(res.is_ok());
    }

    #[test]
    fn test_should_select_raw_record() {
        init_acl();
        load_fixtures();
        let query = Query::builder().all().limit(10).build();
        let res = select_raw("users", query, None, crate::tests::TestDatabaseSchema);
        assert!(res.is_ok());
        let rows = res.unwrap();
        assert!(!rows.is_empty());
        for row in &rows {
            assert!(row.iter().any(|(col, _)| col.name == "id"));
            assert!(row.iter().any(|(col, _)| col.name == "name"));
        }
    }

    #[test]
    fn test_should_fail_select_raw_unknown_table() {
        init_acl();
        load_fixtures();
        let query = Query::builder().all().build();
        let res = select_raw("nonexistent", query, None, crate::tests::TestDatabaseSchema);
        assert!(res.is_err());
    }

    #[test]
    #[should_panic = "Caller ghsi2-tqaaa-aaaan-aaaca-cai does not own transaction 0"]
    fn test_should_not_allow_operating_wrong_tx() {
        init_acl();
        load_fixtures();

        let bob = Principal::from_text("ryjl3-tyaaa-aaaaa-aaaba-cai").unwrap();
        let tx_id = DBMS_CONTEXT.with(|ctx| ctx.begin_transaction(bob.as_slice().to_vec()));

        // try to commit the transaction started by bob (we are alice)
        let _ = commit(tx_id, crate::tests::TestDatabaseSchema);
    }
}