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
#![allow(non_snake_case)]

use std::{
    collections::HashMap,
    sync::{
        Arc, Mutex,
        atomic::{AtomicUsize, Ordering as AtomicOrdering},
    },
};

use rustrails_support::{database, ignored_rails_test, runtime};
use serde_json::{Value, json};

use crate::{
    Persistence, Querying, Record, RecordError,
    base::test_support::{TestUser, with_sync_test_user_db as with_sync_db},
    persistence::AsyncPersistence,
    querying::AsyncQuerying,
    transactions::{Transactional, transaction_sync},
};

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

#[test]
fn test_transaction_open_question_mark() {
    with_sync_db(|| {
        assert!(!crate::transactions::transaction_open());

        transaction_sync(|txn| {
            let txn = txn.clone();
            async move {
                assert!(crate::transactions::transaction_open());
                assert_eq!(crate::transactions::open_transactions(), 1);

                crate::transactions::transaction(&txn, |_| async move {
                    assert!(crate::transactions::transaction_open());
                    assert_eq!(crate::transactions::open_transactions(), 2);
                    Ok::<(), RecordError>(())
                })
                .await?;

                assert!(crate::transactions::transaction_open());
                Ok::<(), RecordError>(())
            }
        })
        .expect("transaction state should be visible while scopes are open");

        assert!(!crate::transactions::transaction_open());
    });
}

#[test]
fn test_after_all_transactions_commit() {
    with_sync_db(|| {
        let calls = Arc::new(AtomicUsize::new(0));
        let transaction_calls = Arc::clone(&calls);

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

                    let nested_calls = Arc::clone(&calls);
                    crate::transactions::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?;
                            crate::transactions::after_commit(move || {
                                inner_calls.fetch_add(1, AtomicOrdering::SeqCst);
                            });
                            assert_eq!(calls.load(AtomicOrdering::SeqCst), 0);
                            Ok::<(), RecordError>(())
                        }
                    })
                    .await?;

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

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

ignored_rails_test!(
    test_after_current_transaction_commit_multidb_nested_transactions,
    "Rails-specific: multi-database after_commit callbacks are not implemented"
);

#[test]
fn test_transaction_after_commit_callback() {
    with_sync_db(|| {
        let calls = Arc::new(AtomicUsize::new(0));
        let callback_calls = Arc::clone(&calls);

        runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, move |_txn| {
                let callback_calls = Arc::clone(&callback_calls);
                async move {
                    crate::transactions::after_commit(move || {
                        callback_calls.fetch_add(1, AtomicOrdering::SeqCst);
                    });
                    Ok::<(), RecordError>(())
                }
            })
            .await
            .expect("transaction should commit");
        });

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

#[test]
fn test_transaction_after_rollback_callback() {
    with_sync_db(|| {
        let calls = Arc::new(AtomicUsize::new(0));
        let callback_calls = Arc::clone(&calls);

        runtime::block_on(async {
            let db = database::db();
            let error = crate::transactions::transaction(&db, move |_txn| {
                let callback_calls = Arc::clone(&callback_calls);
                async move {
                    crate::transactions::after_rollback(move || {
                        callback_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);
    });
}

#[test]
fn test_after_commit_runs_immediately_outside_transaction() {
    with_sync_db(|| {
        let calls = Arc::new(AtomicUsize::new(0));
        let callback_calls = Arc::clone(&calls);

        crate::transactions::after_commit(move || {
            callback_calls.fetch_add(1, AtomicOrdering::SeqCst);
        });

        assert_eq!(calls.load(AtomicOrdering::SeqCst), 1);
        assert_eq!(crate::transactions::open_transactions(), 0);
        assert_eq!(crate::transactions::current_transaction_id(), None);
    });
}

#[test]
fn test_after_rollback_does_nothing_outside_transaction() {
    with_sync_db(|| {
        let calls = Arc::new(AtomicUsize::new(0));
        let callback_calls = Arc::clone(&calls);

        crate::transactions::after_rollback(move || {
            callback_calls.fetch_add(1, AtomicOrdering::SeqCst);
        });

        assert_eq!(calls.load(AtomicOrdering::SeqCst), 0);
        assert_eq!(crate::transactions::open_transactions(), 0);
        assert_eq!(crate::transactions::current_transaction_id(), None);
    });
}

ignored_rails_test!(
    test_blank_question_mark,
    "Rails-specific: rustrails-record does not expose transaction-manager null objects"
);
ignored_rails_test!(
    test_rollback_dirty_changes,
    "Rails-specific: in-memory dirty-state restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_transaction_does_not_apply_default_scope,
    "Rails-specific: default scopes are not implemented"
);
ignored_rails_test!(
    test_rollback_dirty_changes_even_with_raise_during_rollback_removes_from_pool,
    "Rails-specific: connection-pool failure injection is not exposed"
);
ignored_rails_test!(
    test_rollback_dirty_changes_even_with_raise_during_rollback_doesnt_commit_transaction,
    "Rails-specific: connection-pool failure injection is not exposed"
);
ignored_rails_test!(
    test_connection_removed_from_pool_when_commit_raises_and_rollback_raises,
    "Rails-specific: connection-pool failure injection is not exposed"
);
ignored_rails_test!(
    test_connection_removed_from_pool_when_begin_raises_after_successfully_beginning_a_transaction,
    "Rails-specific: connection-pool failure injection is not exposed"
);
ignored_rails_test!(
    test_connection_removed_from_pool_when_thread_killed_in_begin_after_successfully_beginning_a_transaction,
    "Rails-specific: thread-kill begin-transaction failure handling is not exposed"
);
ignored_rails_test!(
    test_rollback_dirty_changes_multiple_saves,
    "Rails-specific: in-memory dirty-state restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_rollback_dirty_changes_then_retry_save,
    "Rails-specific: in-memory dirty-state restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_rollback_dirty_changes_then_retry_save_on_new_record,
    "Rails-specific: in-memory dirty-state restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_rollback_dirty_changes_then_retry_save_on_new_record_with_autosave_association,
    "Rails-specific: autosave association rollback state is not implemented"
);
ignored_rails_test!(
    test_persisted_in_a_model_with_custom_primary_key_after_failed_save,
    "Rails-specific: TestUser uses a simple integer primary key"
);

#[test]
fn test_raise_after_destroy() {
    with_sync_db(|| {
        let user = TestUser::create_sync(user_attrs("Alice", "alice@example.com"))
            .expect("seed insert should succeed");
        let id = user.id().expect("seed row should have an id");

        let error = transaction_sync(|txn| {
            let txn = txn.clone();
            async move {
                let mut to_destroy = TestUser::find(id, &txn).await?;
                to_destroy.destroy(&txn).await?;
                Err::<(), RecordError>(RecordError::Invalid("raise after destroy".to_owned()))
            }
        })
        .expect_err("destroy then error should roll back");

        assert!(matches!(error, RecordError::Invalid(message) if message == "raise after destroy"));
        let reloaded = TestUser::find_sync(id).expect("row should still exist after rollback");
        assert_eq!(reloaded.name, "Alice");
        assert_eq!(
            TestUser::count_sync().expect("count_sync should succeed"),
            1
        );
    });
}

#[test]
fn test_successful() {
    with_sync_db(|| {
        transaction_sync(|txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(user_attrs("Alice", "alice@example.com"), &txn).await?;
                TestUser::create(user_attrs("Bob", "bob@example.com"), &txn).await?;
                Ok(())
            }
        })
        .expect("successful transaction should commit");

        assert_eq!(
            TestUser::count_sync().expect("count_sync should succeed"),
            2
        );
        assert_eq!(
            TestUser::find_sync(1).expect("first row should exist").name,
            "Alice"
        );
        assert_eq!(
            TestUser::find_sync(2)
                .expect("second row should exist")
                .name,
            "Bob"
        );
    });
}

ignored_rails_test!(
    test_add_to_null_transaction,
    "Rails-specific: upstream covers a private add_to_transaction null-transaction helper; rustrails-record only exposes outside-transaction callback behavior, covered by the dedicated callback tests"
);
ignored_rails_test!(
    test_successful_with_return_outside_inner_transaction,
    "Rails-specific: Ruby return semantics do not map to Rust transaction closures"
);
ignored_rails_test!(
    test_deprecation_on_ruby_timeout_outside_inner_transaction,
    "Rails-specific: Ruby catch/throw timeout behavior does not map to Rust transaction closures"
);
ignored_rails_test!(
    test_break_from_transaction_commits,
    "Rails-specific: Ruby break semantics do not map to Rust transaction closures"
);
ignored_rails_test!(
    test_throw_from_transaction_commits,
    "Rails-specific: Ruby throw semantics do not map to Rust transaction closures"
);
ignored_rails_test!(
    test_return_from_transaction_commits,
    "Rails-specific: Ruby return semantics do not map to Rust transaction closures"
);
#[test]
fn test_number_of_transactions_in_commit() {
    with_sync_db(|| {
        let observed_state = Arc::new(Mutex::new(None));
        let callback_state = Arc::clone(&observed_state);

        runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, move |_txn| {
                let callback_state = Arc::clone(&callback_state);
                async move {
                    assert_eq!(crate::transactions::open_transactions(), 1);
                    assert!(crate::transactions::transaction_open());
                    assert!(crate::transactions::current_transaction_id().is_some());

                    crate::transactions::after_commit(move || {
                        *callback_state.lock().unwrap() = Some((
                            crate::transactions::open_transactions(),
                            crate::transactions::transaction_open(),
                            crate::transactions::current_transaction_id(),
                        ));
                    });

                    Ok::<(), RecordError>(())
                }
            })
            .await
            .expect("transaction should commit");
        });

        assert_eq!(*observed_state.lock().unwrap(), Some((0, false, None)));
    });
}

#[test]
fn test_update_should_rollback_on_failure() {
    with_sync_db(|| {
        let user = TestUser::create_sync(user_attrs("Alice", "alice@example.com"))
            .expect("seed insert should succeed");
        let id = user.id().expect("seed row should have an id");

        let error = transaction_sync(|txn| {
            let txn = txn.clone();
            async move {
                let mut in_txn = TestUser::find(id, &txn).await?;
                in_txn
                    .update_attributes(
                        HashMap::from([("name".to_owned(), json!("Updated Alice"))]),
                        &txn,
                    )
                    .await?;
                Err::<(), RecordError>(RecordError::Invalid("update failed".to_owned()))
            }
        })
        .expect_err("failing update should roll back");

        assert!(matches!(error, RecordError::Invalid(message) if message == "update failed"));
        let reloaded = TestUser::find_sync(id).expect("row should still exist after rollback");
        assert_eq!(reloaded.name, "Alice");
        assert_eq!(reloaded.email, "alice@example.com");
    });
}

ignored_rails_test!(
    test_update_should_rollback_on_failure_bang,
    "Rails-specific: rustrails-record does not expose bang update validation helpers"
);
ignored_rails_test!(
    test_cancellation_from_before_destroy_rollbacks_in_destroy,
    "Rails-specific: before_destroy callbacks are not implemented"
);
ignored_rails_test!(
    test_callback_rollback_in_create,
    "Rails-specific: transactional create callbacks are not implemented"
);
ignored_rails_test!(
    test_callback_rollback_in_create_with_record_invalid_exception,
    "Rails-specific: transactional create callbacks are not implemented"
);
ignored_rails_test!(
    test_callback_rollback_in_create_with_rollback_exception,
    "Rails-specific: transactional create callbacks are not implemented"
);

#[test]
fn test_transaction_state_is_cleared_when_record_is_persisted() {
    with_sync_db(|| {
        let mut user = TestUser::create_sync(user_attrs("Alice", "alice@example.com"))
            .expect("create should succeed");
        let id = user.id().expect("persisted user should have an id");

        let error = runtime::block_on(async {
            let db = database::db();
            user.update_attributes(HashMap::from([("id".to_owned(), json!("oops"))]), &db)
                .await
        })
        .expect_err("type-mismatched update should fail");

        assert!(matches!(error, RecordError::Invalid(_)));
        assert!(user.persisted());
        assert_eq!(user.id(), Some(id));
        assert_eq!(user.name, "Alice");
        assert_eq!(user.email, "alice@example.com");
        assert_eq!(
            TestUser::find_sync(id)
                .expect("persisted row should still reload after the failed update")
                .name,
            "Alice"
        );
    });
}

#[test]
fn test_nested_explicit_transactions() {
    with_sync_db(|| {
        runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, |txn| {
                let txn = txn.clone();
                async move {
                    TestUser::create(user_attrs("Outer", "outer@example.com"), &txn).await?;
                    crate::transactions::transaction(&txn, |inner_txn| {
                        let inner_txn = inner_txn.clone();
                        async move {
                            TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                                .await?;
                            Ok::<(), RecordError>(())
                        }
                    })
                    .await?;
                    Ok::<(), RecordError>(())
                }
            })
            .await
            .expect("nested transactions should commit on the same connection");
        });

        assert_eq!(
            TestUser::count_sync().expect("count_sync should succeed"),
            2
        );
        assert_eq!(
            TestUser::find_sync(1)
                .expect("outer row should persist")
                .name,
            "Outer"
        );
        assert_eq!(
            TestUser::find_sync(2)
                .expect("inner row should persist")
                .name,
            "Inner"
        );
    });
}

#[test]
fn test_nested_transaction_with_new_transaction_applies_parent_state_on_rollback() {
    with_sync_db(|| {
        let error = runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, |txn| {
                let txn = txn.clone();
                async move {
                    TestUser::create(user_attrs("Outer", "outer@example.com"), &txn).await?;
                    let outer_id = crate::transactions::current_transaction_id()
                        .expect("outer transaction id should exist");

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

                    assert_eq!(inner_id, outer_id);
                    assert_eq!(TestUser::count(&txn).await?, 2);
                    Err::<(), RecordError>(RecordError::Invalid("rollback outer".to_owned()))
                }
            })
            .await
        })
        .expect_err("outer transaction should roll back both scopes");

        assert!(matches!(error, RecordError::Invalid(message) if message == "rollback outer"));
        assert_eq!(
            TestUser::count_sync().expect("count_sync should succeed"),
            0
        );
        assert_eq!(crate::transactions::open_transactions(), 0);
        assert!(!crate::transactions::transaction_open());
        assert_eq!(crate::transactions::current_transaction_id(), None);
    });
}
ignored_rails_test!(
    test_nested_transaction_without_new_transaction_applies_parent_state_on_rollback,
    "Rails-specific: nested transaction helpers always use savepoints; there is no join-parent mode to exercise"
);
#[test]
fn test_double_nested_transaction_applies_parent_state_on_rollback() {
    with_sync_db(|| {
        let error = runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, |txn| {
                let txn = txn.clone();
                async move {
                    TestUser::create(user_attrs("Outer", "outer@example.com"), &txn).await?;
                    let outer_id = crate::transactions::current_transaction_id()
                        .expect("outer transaction id should exist");

                    let (middle_id, inner_id) =
                        crate::transactions::transaction(&txn, |nested_txn| {
                            let nested_txn = nested_txn.clone();
                            async move {
                                TestUser::create(
                                    user_attrs("Middle", "middle@example.com"),
                                    &nested_txn,
                                )
                                .await?;
                                let middle_id = crate::transactions::current_transaction_id()
                                    .expect("middle transaction should reuse the outer id");

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

                                assert_eq!(TestUser::count(&nested_txn).await?, 3);
                                Ok::<(String, String), RecordError>((middle_id, inner_id))
                            }
                        })
                        .await?;

                    assert_eq!(middle_id, outer_id);
                    assert_eq!(inner_id, outer_id);
                    assert_eq!(TestUser::count(&txn).await?, 3);
                    Err::<(), RecordError>(RecordError::Invalid("rollback outer".to_owned()))
                }
            })
            .await
        })
        .expect_err("outer rollback should discard all nested writes");

        assert!(matches!(error, RecordError::Invalid(message) if message == "rollback outer"));
        assert_eq!(
            TestUser::count_sync().expect("count_sync should succeed"),
            0
        );
        assert_eq!(crate::transactions::open_transactions(), 0);
        assert_eq!(crate::transactions::current_transaction_id(), None);
    });
}

#[test]
fn test_manually_rolling_back_a_transaction() {
    with_sync_db(|| {
        let error = transaction_sync(|txn| {
            let txn = txn.clone();
            async move {
                TestUser::create(user_attrs("Alice", "alice@example.com"), &txn).await?;
                Err::<(), RecordError>(RecordError::NotSaved)
            }
        })
        .expect_err("closure error should trigger rollback");

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

ignored_rails_test!(
    test_invalid_keys_for_transaction,
    "Rails-specific: rustrails-record does not accept transaction option hashes"
);
#[test]
fn test_force_savepoint_in_nested_transaction() {
    with_sync_db(|| {
        runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, |txn| {
                let txn = txn.clone();
                async move {
                    TestUser::create(user_attrs("Outer", "outer@example.com"), &txn).await?;

                    let error = crate::transactions::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!(TestUser::count(&txn).await?, 1);

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

        assert_eq!(
            TestUser::count_sync().expect("count_sync should succeed"),
            2
        );
        assert_eq!(
            TestUser::find_sync(1)
                .expect("outer row should persist")
                .name,
            "Outer"
        );
        assert_eq!(
            TestUser::find_sync(2)
                .expect("post-rollback outer row should persist")
                .name,
            "AfterInner"
        );
    });
}
ignored_rails_test!(
    test_no_savepoint_in_nested_transaction_without_force,
    "Rails-specific: nested transaction helpers always use savepoints; there is no opt-out mode"
);
#[test]
fn test_force_savepoint_on_instance() {
    with_sync_db(|| {
        let first = TestUser::create_sync(user_attrs("First", "first@example.com"))
            .expect("seed insert should succeed");
        let second = TestUser::create_sync(user_attrs("Second", "second@example.com"))
            .expect("seed insert should succeed");
        let first_id = first.id().expect("first seed row should have an id");
        let second_id = second.id().expect("second seed row should have an id");

        runtime::block_on(async {
            let db = database::db();
            // RustRails exposes transactional entry via the record type rather than a per-instance method.
            TestUser::transaction(&db, |txn| {
                let txn = txn.clone();
                async move {
                    let mut outer_first = TestUser::find(first_id, &txn).await?;
                    outer_first
                        .update_attributes(
                            HashMap::from([("name".to_owned(), json!("Outer First"))]),
                            &txn,
                        )
                        .await?;

                    let mut outer_second = TestUser::find(second_id, &txn).await?;
                    outer_second
                        .update_attributes(
                            HashMap::from([("name".to_owned(), json!("Outer Second"))]),
                            &txn,
                        )
                        .await?;

                    let error = TestUser::transaction(&txn, |inner_txn| {
                        let inner_txn = inner_txn.clone();
                        async move {
                            let mut rolled_back = TestUser::find(first_id, &inner_txn).await?;
                            rolled_back
                                .update_attributes(
                                    HashMap::from([("name".to_owned(), json!("Rolled Back First"))]),
                                    &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!(
                        TestUser::find(first_id, &txn)
                            .await
                            .expect("outer row should remain visible")
                            .name,
                        "Outer First"
                    );
                    assert_eq!(
                        TestUser::find(second_id, &txn)
                            .await
                            .expect("second row should remain visible")
                            .name,
                        "Outer Second"
                    );
                    Ok::<(), RecordError>(())
                }
            })
            .await
            .expect("outer transaction should commit");
        });

        assert_eq!(
            TestUser::find_sync(first_id)
                .expect("first row should persist after commit")
                .name,
            "Outer First"
        );
        assert_eq!(
            TestUser::find_sync(second_id)
                .expect("second row should persist after commit")
                .name,
            "Outer Second"
        );
    });
}
ignored_rails_test!(
    test_using_named_savepoints,
    "Rails-specific: named savepoints are not implemented"
);
ignored_rails_test!(
    test_releasing_named_savepoints,
    "Rails-specific: named savepoints are not implemented"
);
ignored_rails_test!(
    test_savepoints_name,
    "Rails-specific: savepoint naming internals are not exposed"
);
ignored_rails_test!(
    test_rollback_when_commit_raises,
    "Rails-specific: commit failure injection is not exposed"
);
ignored_rails_test!(
    test_rollback_when_saving_a_frozen_record,
    "Rails-specific: Rust records do not model Ruby object freezing"
);
ignored_rails_test!(
    test_rollback_when_thread_killed,
    "Rails-specific: thread-kill rollback behavior is not exposed"
);
ignored_rails_test!(
    test_restore_active_record_state_for_all_records_in_a_transaction,
    "Rails-specific: in-memory record-state restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_restore_frozen_state_after_double_destroy,
    "Rails-specific: Rust records do not model Ruby object freezing"
);
ignored_rails_test!(
    test_restore_new_record_after_double_save,
    "Rails-specific: in-memory new-record restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_dont_restore_new_record_in_subsequent_transaction,
    "Rails-specific: in-memory new-record restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_restore_previously_new_record_after_double_save,
    "Rails-specific: previously_new_record rollback semantics are not implemented"
);
ignored_rails_test!(
    test_restore_composite_id_after_rollback,
    "Rails-specific: TestUser uses a simple integer primary key"
);
ignored_rails_test!(
    test_rollback_on_composite_key_model,
    "Rails-specific: TestUser uses a simple integer primary key"
);
ignored_rails_test!(
    test_restore_id_after_rollback,
    "Rails-specific: in-memory primary-key restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_restore_custom_primary_key_after_rollback,
    "Rails-specific: TestUser uses a simple integer primary key"
);
ignored_rails_test!(
    test_assign_id_after_rollback,
    "Rails-specific: in-memory primary-key restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_assign_custom_primary_key_after_rollback,
    "Rails-specific: TestUser uses a simple integer primary key"
);
ignored_rails_test!(
    test_read_attribute_after_rollback,
    "Rails-specific: attribute restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_read_attribute_with_custom_primary_key_after_rollback,
    "Rails-specific: TestUser uses a simple integer primary key"
);
ignored_rails_test!(
    test_write_attribute_after_rollback,
    "Rails-specific: attribute restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_write_attribute_with_custom_primary_key_after_rollback,
    "Rails-specific: TestUser uses a simple integer primary key"
);
ignored_rails_test!(
    test_rollback_of_frozen_records,
    "Rails-specific: Rust records do not model Ruby object freezing"
);
ignored_rails_test!(
    test_rollback_for_freshly_persisted_records,
    "Rails-specific: in-memory persisted-state restoration after rollback is not implemented"
);
ignored_rails_test!(
    test_sqlite_add_column_in_transaction,
    "Rails-specific: adapter-level DDL transaction behavior is not exposed"
);
ignored_rails_test!(
    test_sqlite_default_transaction_mode_is_immediate,
    "Rails-specific: adapter-level SQLite transaction mode is not exposed"
);
ignored_rails_test!(
    test_transactions_state_from_rollback,
    "Rails-specific: rustrails-record does not expose transaction state objects"
);
ignored_rails_test!(
    test_transactions_state_from_commit,
    "Rails-specific: rustrails-record does not expose transaction state objects"
);
ignored_rails_test!(
    test_mark_transaction_state_as_committed,
    "Rails-specific: rustrails-record does not expose transaction state objects"
);
ignored_rails_test!(
    test_mark_transaction_state_as_rolledback,
    "Rails-specific: rustrails-record does not expose transaction state objects"
);
ignored_rails_test!(
    test_mark_transaction_state_as_nil,
    "Rails-specific: rustrails-record does not expose transaction state objects"
);
ignored_rails_test!(
    test_transaction_rollback_with_primarykeyless_tables,
    "Rails-specific: primary-keyless table callbacks are not modeled by TestUser"
);
ignored_rails_test!(
    test_empty_transaction_is_not_materialized,
    "Rails-specific: lazy transaction materialization is not implemented"
);
ignored_rails_test!(
    test_unprepared_statement_materializes_transaction,
    "Rails-specific: lazy transaction materialization is not implemented"
);
ignored_rails_test!(
    test_nested_transactions_skip_excess_savepoints,
    "Rails-specific: savepoints are not implemented"
);
ignored_rails_test!(
    test_nested_transactions_after_disable_lazy_transactions,
    "Rails-specific: lazy transaction materialization is not implemented"
);
ignored_rails_test!(
    test_prepared_statement_materializes_transaction,
    "Rails-specific: lazy transaction materialization is not implemented"
);
ignored_rails_test!(
    test_savepoint_does_not_materialize_transaction,
    "Rails-specific: savepoints and lazy transaction materialization are not implemented"
);
ignored_rails_test!(
    test_raising_does_not_materialize_transaction,
    "Rails-specific: lazy transaction materialization is not implemented"
);
ignored_rails_test!(
    test_accessing_raw_connection_materializes_transaction,
    "Rails-specific: raw connection materialization hooks are not exposed"
);
ignored_rails_test!(
    test_accessing_raw_connection_disables_lazy_transactions,
    "Rails-specific: lazy transaction materialization is not implemented"
);
ignored_rails_test!(
    test_checking_in_connection_reenables_lazy_transactions,
    "Rails-specific: connection-pool lazy transaction toggles are not exposed"
);
ignored_rails_test!(
    test_transactions_can_be_manually_materialized,
    "Rails-specific: manual transaction materialization is not exposed"
);
ignored_rails_test!(
    test_locally_rejected_query_does_not_materialize_or_dirty_transaction,
    "Rails-specific: write-prevention dirty-transaction internals are not exposed"
);
ignored_rails_test!(
    test_failed_materialization_does_not_dirty_transaction,
    "Rails-specific: transaction materialization failure hooks are not exposed"
);
ignored_rails_test!(
    test_automatic_savepoint_in_outer_transaction,
    "Rails-specific: automatic savepoints are not implemented"
);
ignored_rails_test!(
    test_no_automatic_savepoint_for_inner_transaction,
    "Rails-specific: automatic savepoints are not implemented"
);
ignored_rails_test!(
    test_the_uuid_is_lazily_computed,
    "Rails-specific: transaction UUID internals are not exposed"
);
ignored_rails_test!(
    test_the_uuid_for_regular_transactions_is_generated_and_memoized,
    "Rails-specific: transaction UUID internals are not exposed"
);
ignored_rails_test!(
    test_the_uuid_for_null_transactions_is_nil,
    "Rails-specific: transaction UUID internals are not exposed"
);
#[test]
fn test_transaction_per_thread() {
    with_sync_db(|| {
        let (main_id, worker_id) = runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, |_| async move {
                assert_eq!(crate::transactions::open_transactions(), 1);
                assert!(crate::transactions::transaction_open());
                let main_id = crate::transactions::current_transaction_id()
                    .expect("main transaction id should exist");

                let (tx, rx) = std::sync::mpsc::channel();
                let worker = std::thread::spawn(move || {
                    let _rt = runtime::init_runtime();
                    runtime::block_on(async move {
                        assert_eq!(crate::transactions::open_transactions(), 0);
                        assert!(!crate::transactions::transaction_open());
                        assert_eq!(crate::transactions::current_transaction_id(), None);

                        let worker_db = crate::base::test_support::setup_db().await;
                        let worker_id =
                            crate::transactions::transaction(&worker_db, |_| async move {
                                assert_eq!(crate::transactions::open_transactions(), 1);
                                assert!(crate::transactions::transaction_open());
                                Ok::<String, RecordError>(
                                    crate::transactions::current_transaction_id()
                                        .expect("worker transaction id should exist"),
                                )
                            })
                            .await
                            .expect("worker transaction should commit");

                        assert_eq!(crate::transactions::open_transactions(), 0);
                        assert!(!crate::transactions::transaction_open());
                        assert_eq!(crate::transactions::current_transaction_id(), None);

                        tx.send(worker_id)
                            .expect("worker should send its transaction id");
                    });
                });

                let worker_id = rx.recv().expect("worker should report its transaction id");
                worker.join().expect("worker thread should complete");

                Ok::<(String, String), RecordError>((main_id, worker_id))
            })
            .await
            .expect("main transaction should commit")
        });

        assert_ne!(main_id, worker_id);
        assert_eq!(crate::transactions::open_transactions(), 0);
        assert!(!crate::transactions::transaction_open());
        assert_eq!(crate::transactions::current_transaction_id(), None);
    });
}
ignored_rails_test!(
    test_transaction_isolation__read_committed,
    "Rails-specific: transaction isolation options are not exposed"
);
ignored_rails_test!(
    test_implicit_persistence_transaction_is_called,
    "Rails-specific: persistence helpers do not expose implicit transaction hooks"
);
ignored_rails_test!(
    test_implicit_persistence_transaction_is_called_when_in_nested_transaction,
    "Rails-specific: persistence helpers do not expose implicit transaction hooks"
);

#[test]
fn test_after_commit_callbacks_fire_in_registration_order_across_nested_transactions() {
    with_sync_db(|| {
        let events = Arc::new(Mutex::new(Vec::new()));
        let transaction_events = Arc::clone(&events);

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

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

                    let trailing_events = Arc::clone(&events);
                    crate::transactions::after_commit(move || {
                        trailing_events.lock().unwrap().push("outer-2".to_owned());
                    });
                    Ok::<(), RecordError>(())
                }
            })
            .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(),
            ]
        );
    });
}

#[test]
fn test_after_commit_callbacks_do_not_fire_when_outer_transaction_rolls_back() {
    with_sync_db(|| {
        let calls = Arc::new(AtomicUsize::new(0));
        let transaction_calls = Arc::clone(&calls);

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

                    let nested_calls = Arc::clone(&calls);
                    crate::transactions::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 {
                            crate::transactions::after_commit(move || {
                                inner_calls.fetch_add(1, AtomicOrdering::SeqCst);
                            });
                            TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                                .await?;
                            Ok::<(), RecordError>(())
                        }
                    })
                    .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);
    });
}

#[test]
fn test_after_commit_callbacks_are_cleared_after_commit() {
    with_sync_db(|| {
        let calls = Arc::new(AtomicUsize::new(0));

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

            crate::transactions::transaction(&db, |_| async move { Ok::<(), RecordError>(()) })
                .await
                .expect("second transaction should commit");
        });

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

#[test]
fn test_nested_rollback_fires_only_inner_after_rollback_callbacks() {
    with_sync_db(|| {
        let calls = Arc::new(Mutex::new(Vec::new()));
        let transaction_calls = Arc::clone(&calls);

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

                    let nested_calls = Arc::clone(&calls);
                    let error = crate::transactions::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 {
                            crate::transactions::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::<(), RecordError>(())
                }
            })
            .await
            .expect("outer transaction should commit");
        });

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

#[test]
fn test_nested_successful_after_rollback_callbacks_fire_if_outer_transaction_rolls_back() {
    with_sync_db(|| {
        let calls = Arc::new(Mutex::new(Vec::new()));
        let transaction_calls = Arc::clone(&calls);

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

                    let nested_calls = Arc::clone(&calls);
                    crate::transactions::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 {
                            crate::transactions::after_rollback(move || {
                                inner_calls.lock().unwrap().push("inner".to_owned());
                            });
                            TestUser::create(user_attrs("Inner", "inner@example.com"), &inner_txn)
                                .await?;
                            Ok::<(), RecordError>(())
                        }
                    })
                    .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()]
        );
    });
}

#[test]
fn test_after_rollback_callbacks_are_cleared_after_rollback() {
    with_sync_db(|| {
        let calls = Arc::new(AtomicUsize::new(0));
        let callback_calls = Arc::clone(&calls);

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

            crate::transactions::transaction(&db, |_| async move { Ok::<(), RecordError>(()) })
                .await
                .expect("later transaction should commit");
        });

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

#[test]
fn test_transaction_state_clears_after_outer_rollback() {
    with_sync_db(|| {
        let error = runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, |_| async move {
                assert_eq!(crate::transactions::open_transactions(), 1);
                assert!(crate::transactions::transaction_open());
                assert!(crate::transactions::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!(crate::transactions::open_transactions(), 0);
        assert!(!crate::transactions::transaction_open());
        assert_eq!(crate::transactions::current_transaction_id(), None);
    });
}

#[test]
fn test_nested_rollback_restores_outer_transaction_state() {
    with_sync_db(|| {
        runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, |txn| {
                let txn = txn.clone();
                async move {
                    let outer_id = crate::transactions::current_transaction_id()
                        .expect("outer transaction id should exist");
                    let _ = crate::transactions::transaction(&txn, |_| async move {
                        assert_eq!(crate::transactions::open_transactions(), 2);
                        Err::<(), RecordError>(RecordError::Invalid("rollback inner".to_owned()))
                    })
                    .await
                    .expect_err("inner transaction should roll back");

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

        assert_eq!(crate::transactions::open_transactions(), 0);
        assert_eq!(crate::transactions::current_transaction_id(), None);
    });
}

#[test]
fn test_current_transaction_id_is_none_outside_transactions() {
    with_sync_db(|| {
        assert_eq!(crate::transactions::current_transaction_id(), None);

        runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, |_| async move { Ok::<(), RecordError>(()) })
                .await
                .expect("transaction should commit");
        });

        assert_eq!(crate::transactions::current_transaction_id(), None);
    });
}

#[test]
fn test_current_transaction_id_is_stable_across_nested_transactions() {
    with_sync_db(|| {
        let (outer_id, inner_id, after_inner_id) = runtime::block_on(async {
            let db = database::db();
            crate::transactions::transaction(&db, |txn| {
                let txn = txn.clone();
                async move {
                    let outer_id = crate::transactions::current_transaction_id()
                        .expect("outer transaction id should exist");
                    let inner_id = crate::transactions::transaction(&txn, |_| async move {
                        Ok::<String, RecordError>(
                            crate::transactions::current_transaction_id()
                                .expect("nested transaction id should exist"),
                        )
                    })
                    .await?;
                    let after_inner_id = crate::transactions::current_transaction_id()
                        .expect("outer transaction id should still exist");
                    Ok::<(String, String, String), RecordError>((
                        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);
    });
}

#[test]
fn test_current_transaction_id_changes_between_outer_transactions() {
    with_sync_db(|| {
        let (first, second) = runtime::block_on(async {
            let db = database::db();
            let first = crate::transactions::transaction(&db, |_| async move {
                Ok::<String, RecordError>(
                    crate::transactions::current_transaction_id()
                        .expect("transaction id should exist"),
                )
            })
            .await
            .expect("first transaction should commit");

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

            (first, second)
        });

        assert_ne!(first, second);
    });
}

#[test]
fn test_many_savepoints() {
    test_double_nested_transaction_applies_parent_state_on_rollback();
}

ignored_rails_test!(
    test_raising_exception_in_callback_rollbacks_in_save,
    "Rails-specific: transactional save callbacks are not implemented"
);
ignored_rails_test!(
    test_rolling_back_in_a_callback_rollbacks_before_save,
    "Rails-specific: transactional save callbacks are not implemented"
);
ignored_rails_test!(
    test_raising_exception_in_nested_transaction_restore_state_in_save,
    "Rails-specific: transactional save callbacks are not implemented"
);