rustrails-record 0.1.2

ORM layer (ActiveRecord equivalent)
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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
use std::{
    cell::RefCell,
    sync::atomic::{AtomicU32, AtomicU64, Ordering},
};

use rustrails_support::{database, runtime};
use sea_orm::{ConnectionTrait, DatabaseConnection};

use crate::base::{Record, RecordError};

type TransactionCallback = Box<dyn FnOnce() + Send>;

#[derive(Default)]
struct TransactionLevel {
    savepoint_name: Option<String>,
    after_commit: Vec<TransactionCallback>,
    after_rollback: Vec<TransactionCallback>,
}

impl TransactionLevel {
    fn outermost() -> Self {
        Self::default()
    }

    fn nested(savepoint_name: String) -> Self {
        Self {
            savepoint_name: Some(savepoint_name),
            ..Self::default()
        }
    }

    fn absorb(&mut self, nested: Self) {
        self.after_commit.extend(nested.after_commit);
        self.after_rollback.extend(nested.after_rollback);
    }
}

enum FinalizeAction {
    Commit,
    Rollback,
}

enum TransactionBoundary {
    Outermost,
    Nested(String),
}

thread_local! {
    static OPEN_TRANSACTION_COUNT: AtomicU32 = const { AtomicU32::new(0) };
    static SAVEPOINT_SEQUENCE: AtomicU32 = const { AtomicU32::new(0) };
    static CURRENT_TRANSACTION_ID: RefCell<Option<String>> = const { RefCell::new(None) };
    static TRANSACTION_LEVELS: RefCell<Vec<TransactionLevel>> = const { RefCell::new(Vec::new()) };
}

static NEXT_TRANSACTION_ID: AtomicU64 = AtomicU64::new(1);

/// Returns the number of currently open transaction scopes on this thread.
#[must_use]
pub fn open_transactions() -> u32 {
    OPEN_TRANSACTION_COUNT.with(|count| count.load(Ordering::SeqCst))
}

/// Returns `true` when any transaction scope is currently open on this thread.
#[must_use]
pub fn transaction_open() -> bool {
    open_transactions() > 0
}

/// Returns the current outermost transaction identifier, if one is active.
#[must_use]
pub fn current_transaction_id() -> Option<String> {
    CURRENT_TRANSACTION_ID.with(|current| current.borrow().clone())
}

/// Registers a callback to run after the outermost transaction commits.
///
/// When no transaction is open, the callback runs immediately.
pub fn after_commit<F>(callback: F)
where
    F: FnOnce() + Send + 'static,
{
    let mut callback = Some(Box::new(callback) as TransactionCallback);
    let registered = TRANSACTION_LEVELS.with(|levels| {
        let mut levels = levels.borrow_mut();
        if let Some(level) = levels.last_mut() {
            level
                .after_commit
                .push(callback.take().expect("after_commit callback should exist"));
            true
        } else {
            false
        }
    });

    if !registered {
        callback.expect("after_commit callback should exist outside transactions")();
    }
}

/// Registers a callback to run when the current transaction scope rolls back.
pub fn after_rollback<F>(callback: F)
where
    F: FnOnce() + Send + 'static,
{
    let mut callback = Some(Box::new(callback) as TransactionCallback);
    TRANSACTION_LEVELS.with(|levels| {
        let mut levels = levels.borrow_mut();
        if let Some(level) = levels.last_mut() {
            level.after_rollback.push(
                callback
                    .take()
                    .expect("after_rollback callback should exist"),
            );
        }
    });
}

/// Executes a closure inside a database transaction.
///
/// The helper uses explicit `BEGIN` / `COMMIT` / `ROLLBACK` statements against the
/// provided connection so the closure can keep working with a [`DatabaseConnection`].
/// Nested calls use savepoints so inner failures can roll back without aborting the
/// outermost transaction.
pub async fn transaction<F, Fut, T>(db: &DatabaseConnection, f: F) -> Result<T, RecordError>
where
    F: FnOnce(&DatabaseConnection) -> Fut + Send,
    Fut: std::future::Future<Output = Result<T, RecordError>> + Send,
    T: Send,
{
    begin_transaction_scope(db).await?;

    match f(db).await {
        Ok(value) => {
            commit_transaction_scope(db).await?;
            Ok(value)
        }
        Err(error) => {
            rollback_transaction_scope(db).await?;
            Err(error)
        }
    }
}

/// Synchronous wrapper for [`transaction`].
pub fn transaction_sync<F, Fut, T>(f: F) -> Result<T, RecordError>
where
    F: FnOnce(&DatabaseConnection) -> Fut + Send,
    Fut: std::future::Future<Output = Result<T, RecordError>> + Send,
    T: Send,
{
    database::with_db(|db| runtime::block_on(transaction(db, f)))
}

async fn begin_transaction_scope(db: &DatabaseConnection) -> Result<(), RecordError> {
    if transaction_open() {
        let savepoint_name = next_savepoint_name();
        execute_transaction_control(db, &format!("SAVEPOINT {savepoint_name}")).await?;
        OPEN_TRANSACTION_COUNT.with(|count| {
            count.fetch_add(1, Ordering::SeqCst);
        });
        TRANSACTION_LEVELS.with(|levels| {
            levels
                .borrow_mut()
                .push(TransactionLevel::nested(savepoint_name));
        });
    } else {
        let transaction_id = next_transaction_id();
        execute_transaction_control(db, "BEGIN").await?;
        OPEN_TRANSACTION_COUNT.with(|count| count.store(1, Ordering::SeqCst));
        SAVEPOINT_SEQUENCE.with(|sequence| sequence.store(0, Ordering::SeqCst));
        CURRENT_TRANSACTION_ID.with(|current| {
            current.replace(Some(transaction_id));
        });
        TRANSACTION_LEVELS.with(|levels| {
            levels.borrow_mut().push(TransactionLevel::outermost());
        });
    }

    Ok(())
}

async fn commit_transaction_scope(db: &DatabaseConnection) -> Result<(), RecordError> {
    match current_transaction_boundary() {
        Some(TransactionBoundary::Outermost) => {
            execute_or_reset_state(db, "COMMIT").await?;
            let callbacks = finish_outermost_transaction(FinalizeAction::Commit);
            run_callbacks(callbacks);
            Ok(())
        }
        Some(TransactionBoundary::Nested(savepoint_name)) => {
            execute_or_reset_state(db, &format!("RELEASE SAVEPOINT {savepoint_name}")).await?;
            merge_nested_transaction_into_parent();
            Ok(())
        }
        None => Ok(()),
    }
}

async fn rollback_transaction_scope(db: &DatabaseConnection) -> Result<(), RecordError> {
    match current_transaction_boundary() {
        Some(TransactionBoundary::Outermost) => {
            execute_or_reset_state(db, "ROLLBACK").await?;
            let callbacks = finish_outermost_transaction(FinalizeAction::Rollback);
            run_callbacks(callbacks);
            Ok(())
        }
        Some(TransactionBoundary::Nested(savepoint_name)) => {
            execute_or_reset_state(db, &format!("ROLLBACK TO SAVEPOINT {savepoint_name}")).await?;
            let callbacks = rollback_nested_transaction();
            run_callbacks(callbacks);
            Ok(())
        }
        None => Ok(()),
    }
}

async fn execute_or_reset_state(db: &DatabaseConnection, sql: &str) -> Result<(), RecordError> {
    if let Err(error) = execute_transaction_control(db, sql).await {
        reset_transaction_state();
        Err(error)
    } else {
        Ok(())
    }
}

async fn execute_transaction_control(
    db: &DatabaseConnection,
    sql: &str,
) -> Result<(), RecordError> {
    db.execute_unprepared(sql).await?;
    Ok(())
}

fn current_transaction_boundary() -> Option<TransactionBoundary> {
    TRANSACTION_LEVELS.with(|levels| {
        let levels = levels.borrow();
        levels.last().map(|level| match &level.savepoint_name {
            Some(savepoint_name) => TransactionBoundary::Nested(savepoint_name.clone()),
            None => TransactionBoundary::Outermost,
        })
    })
}

fn merge_nested_transaction_into_parent() {
    TRANSACTION_LEVELS.with(|levels| {
        let mut levels = levels.borrow_mut();
        let nested = levels
            .pop()
            .expect("nested transaction state should exist during commit");
        let parent = levels
            .last_mut()
            .expect("parent transaction state should exist during nested commit");
        parent.absorb(nested);
    });
    OPEN_TRANSACTION_COUNT.with(|count| {
        count.fetch_sub(1, Ordering::SeqCst);
    });
}

fn rollback_nested_transaction() -> Vec<TransactionCallback> {
    let callbacks = TRANSACTION_LEVELS.with(|levels| {
        let mut levels = levels.borrow_mut();
        levels
            .pop()
            .expect("nested transaction state should exist during rollback")
            .after_rollback
    });
    OPEN_TRANSACTION_COUNT.with(|count| {
        count.fetch_sub(1, Ordering::SeqCst);
    });
    callbacks
}

fn finish_outermost_transaction(action: FinalizeAction) -> Vec<TransactionCallback> {
    OPEN_TRANSACTION_COUNT.with(|count| count.store(0, Ordering::SeqCst));
    SAVEPOINT_SEQUENCE.with(|sequence| sequence.store(0, Ordering::SeqCst));
    CURRENT_TRANSACTION_ID.with(|current| {
        current.replace(None);
    });

    TRANSACTION_LEVELS.with(|levels| {
        let mut levels = levels.borrow_mut();
        let outermost = levels
            .pop()
            .expect("outermost transaction state should exist during finalization");
        levels.clear();
        match action {
            FinalizeAction::Commit => outermost.after_commit,
            FinalizeAction::Rollback => outermost.after_rollback,
        }
    })
}

fn next_transaction_id() -> String {
    format!("tx-{}", NEXT_TRANSACTION_ID.fetch_add(1, Ordering::Relaxed))
}

fn next_savepoint_name() -> String {
    SAVEPOINT_SEQUENCE.with(|sequence| {
        let next = sequence.fetch_add(1, Ordering::SeqCst) + 1;
        format!("sp_{next}")
    })
}

fn reset_transaction_state() {
    OPEN_TRANSACTION_COUNT.with(|count| count.store(0, Ordering::SeqCst));
    SAVEPOINT_SEQUENCE.with(|sequence| sequence.store(0, Ordering::SeqCst));
    CURRENT_TRANSACTION_ID.with(|current| {
        current.replace(None);
    });
    TRANSACTION_LEVELS.with(|levels| levels.borrow_mut().clear());
}

fn run_callbacks(callbacks: Vec<TransactionCallback>) {
    for callback in callbacks {
        callback();
    }
}

/// Trait for records that support transactional operations.
pub trait Transactional: Record {
    /// Executes a closure inside a database transaction.
    async fn transaction<F, Fut, T>(db: &DatabaseConnection, f: F) -> Result<T, RecordError>
    where
        F: FnOnce(&DatabaseConnection) -> Fut + Send,
        Fut: std::future::Future<Output = Result<T, RecordError>> + Send,
        T: Send,
    {
        crate::transactions::transaction(db, f).await
    }
}

#[cfg(test)]
mod tests {
    use std::{
        collections::HashMap,
        sync::{
            Arc, Mutex,
            atomic::{AtomicUsize, Ordering as AtomicOrdering},
        },
    };

    use sea_orm::{ConnectionTrait, Schema};
    use serde_json::{Value, json};

    use super::{
        Transactional, after_commit, after_rollback, current_transaction_id, open_transactions,
        transaction, transaction_open, transaction_sync,
    };
    use crate::{
        Record, RecordError,
        base::test_support::{TestUser, setup_db, test_user},
        persistence::AsyncPersistence,
        querying::AsyncQuerying,
    };
    use rustrails_support::{database, runtime};

    fn run_sync_transaction_test(test: impl FnOnce() + Send + 'static) {
        std::thread::spawn(move || {
            let _rt = runtime::init_runtime();
            database::establish("sqlite::memory:")
                .expect("sqlite in-memory connection should succeed");
            runtime::block_on(async {
                let db = database::db();
                let schema = Schema::new(db.get_database_backend());
                db.execute(&schema.create_table_from_entity(test_user::Entity))
                    .await
                    .expect("test_users table should be created");
            });
            test();
        })
        .join()
        .unwrap();
    }

    fn user_attrs(name: &str, email: &str) -> HashMap<String, Value> {
        HashMap::from([
            ("name".to_owned(), json!(name)),
            ("email".to_owned(), json!(email)),
        ])
    }

    impl Transactional for TestUser {}

    #[tokio::test]
    async fn transaction_commits_on_success() {
        let db = setup_db().await;

        transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Alice")),
                        ("email".to_owned(), json!("alice@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                Ok(())
            }
        })
        .await
        .expect("transaction should commit");

        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 1);
    }

    #[tokio::test]
    async fn transaction_rolls_back_on_error() {
        let db = setup_db().await;

        let error = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Alice")),
                        ("email".to_owned(), json!("alice@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                Err::<(), RecordError>(RecordError::Invalid("force rollback".to_owned()))
            }
        })
        .await
        .expect_err("transaction should fail");

        assert!(matches!(error, RecordError::Invalid(message) if message == "force rollback"));
        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 0);
    }

    #[tokio::test]
    async fn transaction_returns_closure_value() {
        let db = setup_db().await;

        let id = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                let user = TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Alice")),
                        ("email".to_owned(), json!("alice@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                user.id().ok_or(RecordError::NotSaved)
            }
        })
        .await
        .expect("transaction should return a value");

        assert_eq!(id, 1);
    }

    #[tokio::test]
    async fn transactional_trait_delegates_to_helper() {
        let db = setup_db().await;

        TestUser::transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Bob")),
                        ("email".to_owned(), json!("bob@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                Ok(())
            }
        })
        .await
        .expect("trait helper should commit");

        let user = TestUser::find(1, &db).await.expect("user should exist");
        assert_eq!(user.name, "Bob");
    }

    #[tokio::test]
    async fn rollback_preserves_rows_outside_failed_transaction() {
        let db = setup_db().await;

        TestUser::create(
            HashMap::from([
                ("name".to_owned(), json!("Alice")),
                ("email".to_owned(), json!("alice@example.com")),
            ]),
            &db,
        )
        .await
        .expect("seed insert should succeed");

        let _: Result<(), RecordError> = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Bob")),
                        ("email".to_owned(), json!("bob@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                Err(RecordError::Invalid("rollback".to_owned()))
            }
        })
        .await;

        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 1);
    }

    #[tokio::test]
    async fn transaction_commits_multiple_writes() {
        let db = setup_db().await;

        transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                for (name, email) in [("Alice", "alice@example.com"), ("Bob", "bob@example.com")] {
                    TestUser::create(
                        HashMap::from([
                            ("name".to_owned(), json!(name)),
                            ("email".to_owned(), json!(email)),
                        ]),
                        &txn,
                    )
                    .await?;
                }
                Ok(())
            }
        })
        .await
        .expect("multi-write transaction should commit");

        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 2);
    }

    #[tokio::test]
    async fn transaction_rolls_back_multiple_writes() {
        let db = setup_db().await;

        let error = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                for (name, email) in [("Alice", "alice@example.com"), ("Bob", "bob@example.com")] {
                    TestUser::create(
                        HashMap::from([
                            ("name".to_owned(), json!(name)),
                            ("email".to_owned(), json!(email)),
                        ]),
                        &txn,
                    )
                    .await?;
                }
                Err::<(), RecordError>(RecordError::Invalid("rollback all writes".to_owned()))
            }
        })
        .await
        .expect_err("multi-write transaction should fail");

        assert!(matches!(error, RecordError::Invalid(message) if message == "rollback all writes"));
        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 0);
    }

    #[tokio::test]
    async fn transaction_exposes_uncommitted_writes_inside_closure() {
        let db = setup_db().await;

        let visible_count = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Alice")),
                        ("email".to_owned(), json!("alice@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                TestUser::count(&txn).await
            }
        })
        .await
        .expect("transaction should return the in-transaction count");

        assert_eq!(visible_count, 1);
        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 1);
    }

    #[tokio::test]
    async fn transaction_rolls_back_writes_visible_inside_failed_closure() {
        let db = setup_db().await;

        let visible_count = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Alice")),
                        ("email".to_owned(), json!("alice@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                let count = TestUser::count(&txn).await?;
                Err::<u64, RecordError>(RecordError::Invalid(format!(
                    "count before rollback: {count}"
                )))
            }
        })
        .await
        .expect_err("transaction should fail");

        assert!(
            matches!(visible_count, RecordError::Invalid(message) if message == "count before rollback: 1")
        );
        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 0);
    }

    #[tokio::test]
    async fn transaction_can_read_seeded_rows_and_insert_more() {
        let db = setup_db().await;

        TestUser::create(
            HashMap::from([
                ("name".to_owned(), json!("Alice")),
                ("email".to_owned(), json!("alice@example.com")),
            ]),
            &db,
        )
        .await
        .expect("seed insert should succeed");

        let counts = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                let before = TestUser::count(&txn).await?;
                TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Bob")),
                        ("email".to_owned(), json!("bob@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                let after = TestUser::count(&txn).await?;
                Ok((before, after))
            }
        })
        .await
        .expect("transaction should commit");

        assert_eq!(counts, (1, 2));
        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 2);
    }

    #[tokio::test]
    #[ignore = "Nested savepoint-backed transactions are supported on the same connection"]
    async fn nested_transaction_on_same_connection_returns_database_error() {
        let db = setup_db().await;

        let error = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Outer")),
                        ("email".to_owned(), json!("outer@example.com")),
                    ]),
                    &txn,
                )
                .await?;

                let nested = transaction(&txn, |inner_txn| {
                    let inner_txn = inner_txn.clone();
                    async move {
                        TestUser::create(
                            HashMap::from([
                                ("name".to_owned(), json!("Inner")),
                                ("email".to_owned(), json!("inner@example.com")),
                            ]),
                            &inner_txn,
                        )
                        .await?;
                        Ok(())
                    }
                })
                .await;

                assert!(nested.is_err());
                nested
            }
        })
        .await
        .expect_err("nested transaction should fail on the same connection");

        assert!(matches!(error, RecordError::Database(_)));
        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 0);
    }

    #[tokio::test]
    async fn transaction_rollback_preserves_seeded_rows_on_multiwrite_failure() {
        let db = setup_db().await;

        TestUser::create(
            HashMap::from([
                ("name".to_owned(), json!("Alice")),
                ("email".to_owned(), json!("alice@example.com")),
            ]),
            &db,
        )
        .await
        .expect("seed insert should succeed");

        let _ = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                for (name, email) in [("Bob", "bob@example.com"), ("Carol", "carol@example.com")] {
                    TestUser::create(
                        HashMap::from([
                            ("name".to_owned(), json!(name)),
                            ("email".to_owned(), json!(email)),
                        ]),
                        &txn,
                    )
                    .await?;
                }
                Err::<(), RecordError>(RecordError::NotSaved)
            }
        })
        .await;

        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 1);
        assert_eq!(
            TestUser::find(1, &db)
                .await
                .expect("seed row should still exist")
                .name,
            "Alice"
        );
    }

    #[tokio::test]
    async fn manual_rollback_via_not_saved_error_rolls_back() {
        let db = setup_db().await;

        let error = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Alice")),
                        ("email".to_owned(), json!("alice@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                Err::<(), RecordError>(RecordError::NotSaved)
            }
        })
        .await
        .expect_err("manual rollback should bubble the original error");

        assert!(matches!(error, RecordError::NotSaved));
        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 0);
    }

    #[tokio::test]
    async fn transactional_trait_can_return_tuple_values() {
        let db = setup_db().await;

        let result = TestUser::transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                let user = TestUser::create(
                    HashMap::from([
                        ("name".to_owned(), json!("Alice")),
                        ("email".to_owned(), json!("alice@example.com")),
                    ]),
                    &txn,
                )
                .await?;
                Ok((
                    user.id().expect("id should be assigned"),
                    TestUser::count(&txn).await?,
                ))
            }
        })
        .await
        .expect("trait helper should return tuple values");

        assert_eq!(result, (1, 1));
    }

    #[tokio::test]
    async fn transaction_without_writes_can_return_existing_count() {
        let db = setup_db().await;

        TestUser::create(
            HashMap::from([
                ("name".to_owned(), json!("Alice")),
                ("email".to_owned(), json!("alice@example.com")),
            ]),
            &db,
        )
        .await
        .expect("seed insert should succeed");

        let count = transaction(&db, |txn| {
            let txn = txn.clone();
            async move { TestUser::count(&txn).await }
        })
        .await
        .expect("read-only transaction should commit");

        assert_eq!(count, 1);
    }

    #[tokio::test]
    async fn transaction_commits_updates_to_existing_rows() {
        let db = setup_db().await;
        let user = TestUser::create(
            HashMap::from([
                ("name".to_owned(), json!("Alice")),
                ("email".to_owned(), json!("alice@example.com")),
            ]),
            &db,
        )
        .await
        .expect("seed insert should succeed");
        let id = user.id().expect("seed row should have an id");

        transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                let mut user = TestUser::find(id, &txn).await?;
                user.update_attributes(
                    HashMap::from([("name".to_owned(), json!("Updated Alice"))]),
                    &txn,
                )
                .await?;
                Ok(())
            }
        })
        .await
        .expect("update transaction should commit");

        let reloaded = TestUser::find(id, &db)
            .await
            .expect("updated row should load after commit");
        assert_eq!(reloaded.name, "Updated Alice");
        assert_eq!(reloaded.email, "alice@example.com");
    }

    #[tokio::test]
    async fn transaction_rolls_back_updates_to_existing_rows() {
        let db = setup_db().await;
        let user = TestUser::create(
            HashMap::from([
                ("name".to_owned(), json!("Alice")),
                ("email".to_owned(), json!("alice@example.com")),
            ]),
            &db,
        )
        .await
        .expect("seed insert should succeed");
        let id = user.id().expect("seed row should have an id");

        let error = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                let mut user = TestUser::find(id, &txn).await?;
                user.update_attributes(
                    HashMap::from([("name".to_owned(), json!("Updated Alice"))]),
                    &txn,
                )
                .await?;
                Err::<(), RecordError>(RecordError::Invalid("rollback update".to_owned()))
            }
        })
        .await
        .expect_err("update transaction should fail");

        assert!(matches!(error, RecordError::Invalid(message) if message == "rollback update"));

        let reloaded = TestUser::find(id, &db)
            .await
            .expect("seed row should still load after rollback");
        assert_eq!(reloaded.name, "Alice");
        assert_eq!(reloaded.email, "alice@example.com");
    }

    #[tokio::test]
    async fn nested_transaction_commits_with_savepoint_release() {
        let db = setup_db().await;

        let (outer_id, inner_id) = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(user_attrs("Outer", "outer@example.com"), &txn).await?;
                let outer_id = current_transaction_id().expect("outer transaction id should exist");

                let inner_id = transaction(&txn, |inner_txn| {
                    let inner_txn = inner_txn.clone();
                    async move {
                        assert_eq!(open_transactions(), 2);
                        TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                            .await?;
                        Ok::<String, RecordError>(
                            current_transaction_id()
                                .expect("nested transaction should reuse the outer id"),
                        )
                    }
                })
                .await?;

                assert_eq!(TestUser::count(&txn).await?, 2);
                Ok((outer_id, inner_id))
            }
        })
        .await
        .expect("nested transaction should commit");

        assert_eq!(outer_id, inner_id);
        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 2);
    }

    #[test]
    fn transaction_sync_commits_on_success() {
        run_sync_transaction_test(|| {
            transaction_sync(|txn| {
                let txn = txn.clone();
                async move {
                    TestUser::create(
                        HashMap::from([
                            ("name".to_owned(), json!("Alice")),
                            ("email".to_owned(), json!("alice@example.com")),
                        ]),
                        &txn,
                    )
                    .await?;
                    Ok(())
                }
            })
            .expect("transaction should commit");

            let count = runtime::block_on(async {
                let db = database::db();
                TestUser::count(&db).await.expect("count should succeed")
            });
            assert_eq!(count, 1);
        });
    }

    #[tokio::test]
    async fn nested_transaction_rollback_to_savepoint_preserves_outer_changes() {
        let db = setup_db().await;

        transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(user_attrs("Outer", "outer@example.com"), &txn).await?;

                let error = transaction(&txn, |inner_txn| {
                    let inner_txn = inner_txn.clone();
                    async move {
                        TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                            .await?;
                        Err::<(), RecordError>(RecordError::Invalid("rollback inner".to_owned()))
                    }
                })
                .await
                .expect_err("inner transaction should roll back to its savepoint");

                assert!(
                    matches!(error, RecordError::Invalid(message) if message == "rollback inner")
                );
                assert_eq!(open_transactions(), 1);
                assert_eq!(TestUser::count(&txn).await?, 1);

                TestUser::create(user_attrs("AfterInner", "after@example.com"), &txn).await?;
                Ok(())
            }
        })
        .await
        .expect("outer transaction should still commit");

        assert_eq!(TestUser::count(&db).await.expect("count should succeed"), 2);
        assert_eq!(
            TestUser::find(1, &db)
                .await
                .expect("outer row should persist")
                .name,
            "Outer"
        );
        assert_eq!(
            TestUser::find(2, &db)
                .await
                .expect("post-rollback outer row should persist")
                .name,
            "AfterInner"
        );
    }

    #[tokio::test]
    async fn after_commit_fires_after_outermost_commit_only() {
        let db = setup_db().await;
        let calls = Arc::new(AtomicUsize::new(0));
        let transaction_calls = Arc::clone(&calls);

        transaction(&db, move |txn| {
            let txn = txn.clone();
            let calls = Arc::clone(&transaction_calls);
            let outer_calls = Arc::clone(&calls);
            async move {
                after_commit(move || {
                    outer_calls.fetch_add(1, AtomicOrdering::SeqCst);
                });

                let nested_calls = Arc::clone(&calls);
                transaction(&txn, move |inner_txn| {
                    let inner_txn = inner_txn.clone();
                    let calls = Arc::clone(&nested_calls);
                    let inner_calls = Arc::clone(&calls);
                    async move {
                        TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                            .await?;
                        after_commit(move || {
                            inner_calls.fetch_add(1, AtomicOrdering::SeqCst);
                        });
                        assert_eq!(calls.load(AtomicOrdering::SeqCst), 0);
                        Ok(())
                    }
                })
                .await?;

                assert_eq!(calls.load(AtomicOrdering::SeqCst), 0);
                Ok(())
            }
        })
        .await
        .expect("outer transaction should commit");

        assert_eq!(calls.load(AtomicOrdering::SeqCst), 2);
    }

    #[tokio::test]
    async fn after_commit_callbacks_fire_in_registration_order_across_nested_transactions() {
        let db = setup_db().await;
        let events = Arc::new(Mutex::new(Vec::new()));
        let transaction_events = Arc::clone(&events);

        transaction(&db, move |txn| {
            let txn = txn.clone();
            let events = Arc::clone(&transaction_events);
            let outer_events = Arc::clone(&events);
            async move {
                after_commit(move || outer_events.lock().unwrap().push("outer-1".to_owned()));

                let nested_events = Arc::clone(&events);
                transaction(&txn, move |inner_txn| {
                    let inner_txn = inner_txn.clone();
                    let inner_events = Arc::clone(&nested_events);
                    async move {
                        after_commit(move || {
                            inner_events.lock().unwrap().push("inner-1".to_owned());
                        });
                        TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                            .await?;
                        Ok(())
                    }
                })
                .await?;

                let trailing_events = Arc::clone(&events);
                after_commit(move || {
                    trailing_events.lock().unwrap().push("outer-2".to_owned());
                });
                Ok(())
            }
        })
        .await
        .expect("callback ordering transaction should commit");

        assert_eq!(
            *events.lock().unwrap(),
            vec![
                "outer-1".to_owned(),
                "inner-1".to_owned(),
                "outer-2".to_owned()
            ]
        );
    }

    #[tokio::test]
    async fn after_commit_callbacks_do_not_fire_when_outer_transaction_rolls_back() {
        let db = setup_db().await;
        let calls = Arc::new(AtomicUsize::new(0));
        let transaction_calls = Arc::clone(&calls);

        let error = transaction(&db, move |txn| {
            let txn = txn.clone();
            let calls = Arc::clone(&transaction_calls);
            let outer_calls = Arc::clone(&calls);
            async move {
                after_commit(move || {
                    outer_calls.fetch_add(1, AtomicOrdering::SeqCst);
                });

                let nested_calls = Arc::clone(&calls);
                transaction(&txn, move |inner_txn| {
                    let inner_txn = inner_txn.clone();
                    let calls = Arc::clone(&nested_calls);
                    let inner_calls = Arc::clone(&calls);
                    async move {
                        after_commit(move || {
                            inner_calls.fetch_add(1, AtomicOrdering::SeqCst);
                        });
                        TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                            .await?;
                        Ok(())
                    }
                })
                .await?;

                Err::<(), RecordError>(RecordError::Invalid("rollback outer".to_owned()))
            }
        })
        .await
        .expect_err("outer transaction should roll back");

        assert!(matches!(error, RecordError::Invalid(message) if message == "rollback outer"));
        assert_eq!(calls.load(AtomicOrdering::SeqCst), 0);
    }

    #[tokio::test]
    async fn after_commit_callbacks_are_cleared_after_commit() {
        let db = setup_db().await;
        let calls = Arc::new(AtomicUsize::new(0));

        transaction(&db, |_| {
            let calls = Arc::clone(&calls);
            async move {
                after_commit(move || {
                    calls.fetch_add(1, AtomicOrdering::SeqCst);
                });
                Ok(())
            }
        })
        .await
        .expect("first transaction should commit");

        transaction(&db, |_| async move { Ok(()) })
            .await
            .expect("second transaction should commit");

        assert_eq!(calls.load(AtomicOrdering::SeqCst), 1);
    }

    #[tokio::test]
    async fn after_rollback_fires_on_outermost_rollback() {
        let db = setup_db().await;
        let calls = Arc::new(AtomicUsize::new(0));
        let callback_calls = Arc::clone(&calls);

        let error = transaction(&db, move |_txn| {
            let outer_calls = Arc::clone(&callback_calls);
            async move {
                after_rollback(move || {
                    outer_calls.fetch_add(1, AtomicOrdering::SeqCst);
                });
                Err::<(), RecordError>(RecordError::Invalid("rollback outer".to_owned()))
            }
        })
        .await
        .expect_err("transaction should roll back");

        assert!(matches!(error, RecordError::Invalid(message) if message == "rollback outer"));
        assert_eq!(calls.load(AtomicOrdering::SeqCst), 1);
    }

    #[tokio::test]
    async fn nested_rollback_fires_only_inner_after_rollback_callbacks() {
        let db = setup_db().await;
        let calls = Arc::new(Mutex::new(Vec::new()));
        let transaction_calls = Arc::clone(&calls);

        transaction(&db, move |txn| {
            let txn = txn.clone();
            let calls = Arc::clone(&transaction_calls);
            let outer_calls = Arc::clone(&calls);
            async move {
                after_rollback(move || outer_calls.lock().unwrap().push("outer".to_owned()));

                let nested_calls = Arc::clone(&calls);
                let error = transaction(&txn, move |inner_txn| {
                    let inner_txn = inner_txn.clone();
                    let calls = Arc::clone(&nested_calls);
                    let inner_calls = Arc::clone(&calls);
                    async move {
                        after_rollback(move || {
                            inner_calls.lock().unwrap().push("inner".to_owned())
                        });
                        TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                            .await?;
                        Err::<(), RecordError>(RecordError::Invalid("rollback inner".to_owned()))
                    }
                })
                .await
                .expect_err("inner transaction should roll back");

                assert!(
                    matches!(error, RecordError::Invalid(message) if message == "rollback inner")
                );
                assert_eq!(*calls.lock().unwrap(), vec!["inner".to_owned()]);
                Ok(())
            }
        })
        .await
        .expect("outer transaction should commit");

        assert_eq!(*calls.lock().unwrap(), vec!["inner".to_owned()]);
    }

    #[tokio::test]
    async fn nested_successful_after_rollback_callbacks_fire_if_outer_transaction_rolls_back() {
        let db = setup_db().await;
        let calls = Arc::new(Mutex::new(Vec::new()));
        let transaction_calls = Arc::clone(&calls);

        let error = transaction(&db, move |txn| {
            let txn = txn.clone();
            let calls = Arc::clone(&transaction_calls);
            let outer_calls = Arc::clone(&calls);
            async move {
                after_rollback(move || outer_calls.lock().unwrap().push("outer".to_owned()));

                let nested_calls = Arc::clone(&calls);
                transaction(&txn, move |inner_txn| {
                    let inner_txn = inner_txn.clone();
                    let calls = Arc::clone(&nested_calls);
                    let inner_calls = Arc::clone(&calls);
                    async move {
                        after_rollback(move || {
                            inner_calls.lock().unwrap().push("inner".to_owned())
                        });
                        TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                            .await?;
                        Ok(())
                    }
                })
                .await?;

                Err::<(), RecordError>(RecordError::Invalid("rollback outer".to_owned()))
            }
        })
        .await
        .expect_err("outer transaction should roll back");

        assert!(matches!(error, RecordError::Invalid(message) if message == "rollback outer"));
        assert_eq!(
            *calls.lock().unwrap(),
            vec!["outer".to_owned(), "inner".to_owned()]
        );
    }

    #[tokio::test]
    async fn after_rollback_callbacks_are_cleared_after_rollback() {
        let db = setup_db().await;
        let calls = Arc::new(AtomicUsize::new(0));
        let callback_calls = Arc::clone(&calls);

        let _ = transaction(&db, move |_txn| {
            let outer_calls = Arc::clone(&callback_calls);
            async move {
                after_rollback(move || {
                    outer_calls.fetch_add(1, AtomicOrdering::SeqCst);
                });
                Err::<(), RecordError>(RecordError::Invalid("rollback once".to_owned()))
            }
        })
        .await;

        transaction(&db, |_| async move { Ok(()) })
            .await
            .expect("later transaction should commit");

        assert_eq!(calls.load(AtomicOrdering::SeqCst), 1);
    }

    #[tokio::test]
    async fn open_transactions_starts_closed() {
        assert_eq!(open_transactions(), 0);
        assert!(!transaction_open());
    }

    #[tokio::test]
    async fn open_transactions_tracks_nested_depth() {
        let db = setup_db().await;

        assert_eq!(open_transactions(), 0);

        transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                assert_eq!(open_transactions(), 1);
                transaction(&txn, |_| async move {
                    assert_eq!(open_transactions(), 2);
                    Ok(())
                })
                .await?;
                assert_eq!(open_transactions(), 1);
                Ok(())
            }
        })
        .await
        .expect("nested transaction should commit");

        assert_eq!(open_transactions(), 0);
    }

    #[tokio::test]
    async fn transaction_open_reflects_current_state() {
        let db = setup_db().await;

        assert!(!transaction_open());

        transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                assert!(transaction_open());
                transaction(&txn, |_| async move {
                    assert!(transaction_open());
                    Ok(())
                })
                .await?;
                assert!(transaction_open());
                Ok(())
            }
        })
        .await
        .expect("transaction should commit");

        assert!(!transaction_open());
    }

    #[tokio::test]
    async fn current_transaction_id_is_none_outside_transactions() {
        assert_eq!(current_transaction_id(), None);

        let db = setup_db().await;
        transaction(&db, |_| async move { Ok(()) })
            .await
            .expect("transaction should commit");

        assert_eq!(current_transaction_id(), None);
    }

    #[tokio::test]
    async fn current_transaction_id_is_stable_across_nested_transactions() {
        let db = setup_db().await;

        let (outer_id, inner_id, after_inner_id) = transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                let outer_id = current_transaction_id().expect("outer transaction id should exist");
                let inner_id = transaction(&txn, |_| async move {
                    Ok::<String, RecordError>(
                        current_transaction_id().expect("nested transaction id should exist"),
                    )
                })
                .await?;
                let after_inner_id =
                    current_transaction_id().expect("outer transaction id should still exist");
                Ok((outer_id, inner_id, after_inner_id))
            }
        })
        .await
        .expect("transaction should commit");

        assert_eq!(outer_id, inner_id);
        assert_eq!(outer_id, after_inner_id);
    }

    #[tokio::test]
    async fn current_transaction_id_changes_between_outer_transactions() {
        let db = setup_db().await;

        let first = transaction(&db, |_| async move {
            Ok::<String, RecordError>(
                current_transaction_id().expect("transaction id should exist"),
            )
        })
        .await
        .expect("first transaction should commit");

        let second = transaction(&db, |_| async move {
            Ok::<String, RecordError>(
                current_transaction_id().expect("transaction id should exist"),
            )
        })
        .await
        .expect("second transaction should commit");

        assert_ne!(first, second);
    }

    #[tokio::test]
    async fn transaction_state_clears_after_outer_rollback() {
        let db = setup_db().await;

        let error = transaction(&db, |_| async move {
            assert_eq!(open_transactions(), 1);
            assert!(transaction_open());
            assert!(current_transaction_id().is_some());
            Err::<(), RecordError>(RecordError::Invalid("rollback outer".to_owned()))
        })
        .await
        .expect_err("transaction should roll back");

        assert!(matches!(error, RecordError::Invalid(message) if message == "rollback outer"));
        assert_eq!(open_transactions(), 0);
        assert!(!transaction_open());
        assert_eq!(current_transaction_id(), None);
    }

    #[tokio::test]
    async fn nested_rollback_restores_outer_transaction_state() {
        let db = setup_db().await;

        transaction(&db, |txn| {
            let txn = txn.clone();
            async move {
                let outer_id = current_transaction_id().expect("outer transaction id should exist");
                let _ = transaction(&txn, |_| async move {
                    assert_eq!(open_transactions(), 2);
                    Err::<(), RecordError>(RecordError::Invalid("rollback inner".to_owned()))
                })
                .await
                .expect_err("inner transaction should roll back");

                assert_eq!(open_transactions(), 1);
                assert!(transaction_open());
                assert_eq!(
                    current_transaction_id().expect("outer transaction id should remain"),
                    outer_id
                );
                Ok(())
            }
        })
        .await
        .expect("outer transaction should commit");

        assert_eq!(open_transactions(), 0);
        assert_eq!(current_transaction_id(), None);
    }
}