raisfast 0.2.23

The last backend you'll ever need. Rust-powered headless CMS with built-in blog, ecommerce, wallet, payment and 4 plugin engines.
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
//! Content Type 端到端集成测试
//!
//! 验证动态内容类型系统的完整链路:
//! Schema 解析 → Migration 建表 → CRUD → 租户隔离

use std::collections::HashMap;

use serde_json::json;

use raisfast::content_type::ContentTypeRegistry;
use raisfast::content_type::repository::{ContentQuery, ContentRepository, SaveContext};
use raisfast::content_type::schema::ContentTypeSchema;
use raisfast::db::tenant;
use raisfast::types::snowflake_id::SnowflakeId;

const PRODUCT_TOML: &str = r#"
[content_type]
name = "Product"
singular = "product"
plural = "products"
table = "ct_products"
description = "商品"
implements = ["ownable", "timestampable", "tenantable"]

[fields.title]
type = "text"
required = true
max_length = 200

[fields.slug]
type = "uid"
target_field = "title"
unique = true

[fields.price]
type = "integer"
required = true
default = 0

[fields.description]
type = "text"

[fields.in_stock]
type = "boolean"
default = true

[[indexes]]
fields = ["slug"]
unique = true
"#;

async fn setup_pool() -> sqlx::SqlitePool {
    let pool = raisfast::db::Pool::connect("sqlite::memory:")
        .await
        .unwrap();
    sqlx::query(raisfast::db::schema::SCHEMA_SQL)
        .execute(&pool)
        .await
        .unwrap();
    tenant::invalidate_cache().await;
    pool
}

fn parse_product() -> ContentTypeSchema {
    let mut ct = ContentTypeSchema::parse_from_str(PRODUCT_TOML).unwrap();
    cache_ct(&mut ct);
    ct
}

fn now_str() -> String {
    chrono::Utc::now().to_rfc3339_opts(chrono::SecondsFormat::Millis, true)
}

fn with_timestamps(data: serde_json::Value) -> serde_json::Value {
    let mut obj = data
        .as_object()
        .expect("with_timestamps: expected JSON object")
        .clone();
    let now = now_str();
    obj.insert("created_at".into(), serde_json::json!(now));
    obj.insert("updated_at".into(), serde_json::json!(now));
    serde_json::Value::Object(obj)
}

fn parse_article() -> ContentTypeSchema {
    ContentTypeSchema::parse_from_file(std::path::Path::new(
        "extensions/content_types/first-ext_article.toml",
    ))
    .unwrap()
}

fn test_ct_registry() -> raisfast::content_type::ContentTypeRegistry {
    raisfast::content_type::ContentTypeRegistry::new()
}

fn test_protocol_registry() -> raisfast::protocols::ProtocolRegistry {
    let mut reg = raisfast::protocols::ProtocolRegistry::new();
    reg.register(raisfast::protocols::ownable::OwnableProtocol);
    reg.register(raisfast::protocols::timestampable::TimestampableProtocol);
    reg.register(raisfast::protocols::soft_deletable::SoftDeletableProtocol);
    reg.register(raisfast::protocols::versionable::VersionableProtocol);
    reg.register(raisfast::protocols::lockable::LockableProtocol);
    reg.register(raisfast::protocols::sortable::SortableProtocol);
    reg.register(raisfast::protocols::expirable::ExpirableProtocol);
    reg.register(raisfast::protocols::nestable::NestableProtocol);
    reg.register(raisfast::protocols::tenantable::TenantableProtocol);
    reg
}

fn cache_ct(ct: &mut ContentTypeSchema) {
    ct.cache_protocol_columns(&test_protocol_registry());
}

#[tokio::test]
async fn schema_parse_product() {
    let ct = parse_product();
    assert_eq!(ct.name, "Product");
    assert_eq!(ct.singular, "product");
    assert_eq!(ct.plural, "products");
    assert_eq!(ct.table, "ct_products");
    assert!(!ct.implements_protocol("soft_deletable"));
    assert!(ct.fields.iter().any(|f| f.name == "title" && f.required));
    assert!(ct.fields.iter().any(|f| f.name == "price"));
}

#[tokio::test]
async fn schema_parse_article_toml() {
    let ct = parse_article();
    assert_eq!(ct.name, "Article");
    assert_eq!(ct.singular, "article");
    assert_eq!(ct.plural, "articles");
    assert_eq!(ct.table, "articles");
}

#[tokio::test]
async fn migrate_creates_table() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool.clone());

    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let rows: Vec<(i32, String, String, i32, Option<String>, i32)> =
        sqlx::query_as("PRAGMA table_info(ct_products)")
            .fetch_all(&pool)
            .await
            .unwrap();

    let col_names: Vec<&str> = rows
        .iter()
        .map(|(_, name, _, _, _, _)| name.as_str())
        .collect();
    assert!(col_names.contains(&"id"));
    assert!(col_names.contains(&"title"));
    assert!(col_names.contains(&"slug"));
    assert!(col_names.contains(&"price"));
    assert!(col_names.contains(&"description"));
    assert!(col_names.contains(&"in_stock"));
    assert!(col_names.contains(&"created_at"));
    assert!(col_names.contains(&"updated_at"));
}

#[tokio::test]
async fn migrate_idempotent() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool.clone());

    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let count: (i64,) = sqlx::query_as("SELECT COUNT(*) FROM ct_products")
        .fetch_one(&pool)
        .await
        .unwrap();
    assert_eq!(count.0, 0);
}

#[tokio::test]
async fn create_and_find_by_id() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({
                "title": "Test Product",
                "slug": "test-product",
                "price": 99,
                "description": "A test product",
                "in_stock": true
            })),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();

    assert_eq!(created["title"], "Test Product");
    assert_eq!(created["price"], 99);

    let found = repo
        .find_by_id(
            &ct,
            created["id"].as_str().unwrap().parse().unwrap(),
            None,
            true,
        )
        .await
        .unwrap()
        .unwrap();
    assert_eq!(found["title"], "Test Product");
    assert_eq!(found["id"], created["id"]);
}

#[tokio::test]
async fn create_sets_defaults() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({
                "title": "Minimal",
                "slug": "minimal",
                "price": 0
            })),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();

    assert!(created["in_stock"].is_boolean() || created["in_stock"].is_i64());
    assert!(created.get("created_at").is_some());
    assert!(created.get("updated_at").is_some());
}

#[tokio::test]
async fn find_by_slug() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    repo.create(
        &ct,
        with_timestamps(json!({"title": "Slug Test", "slug": "slug-test", "price": 10})),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();

    let found = repo
        .find_by_slug(&ct, "slug-test", Some("draft"), None, true)
        .await
        .unwrap()
        .unwrap();
    assert_eq!(found["title"], "Slug Test");
}

#[tokio::test]
async fn find_paginated() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    for i in 1..=15 {
        repo.create(
            &ct,
            with_timestamps(
                json!({"title": format!("Item {i}"), "slug": format!("item-{i}"), "price": i}),
            ),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    }

    let query = ContentQuery {
        page: 1,
        page_size: 10,
        sort: None,
        filters: HashMap::new(),
        status: None,
        search: None,
        fields: None,
        tenant_id: None,
        include: None,
        skip_total: false,
        rule_where: None,
        rule_params: Vec::new(),
        max_page_size: 100,
        include_private: false,
        meta_filters: Vec::new(),
    };
    let (items, total) = repo.find(&ct, query).await.unwrap();
    assert_eq!(total, 15);
    assert_eq!(items.len(), 10);

    let query = ContentQuery {
        page: 2,
        page_size: 10,
        sort: None,
        filters: HashMap::new(),
        status: None,
        search: None,
        fields: None,
        tenant_id: None,
        include: None,
        skip_total: false,
        rule_where: None,
        rule_params: Vec::new(),
        max_page_size: 100,
        include_private: false,
        meta_filters: Vec::new(),
    };
    let (items, total) = repo.find(&ct, query).await.unwrap();
    assert_eq!(total, 15);
    assert_eq!(items.len(), 5);
}

#[tokio::test]
async fn update_changes_fields() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Original", "slug": "original", "price": 50})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id: i64 = created["id"].as_str().unwrap().parse().unwrap();

    let updated = repo
        .update(
            &ct,
            raisfast::types::snowflake_id::SnowflakeId(id),
            json!({"title": "Updated", "price": 99}),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();

    assert_eq!(updated["title"], "Updated");
    assert_eq!(updated["price"], 99);
    assert_eq!(updated["slug"], "original");
}

#[tokio::test]
async fn delete_removes_record() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "To Delete", "slug": "to-delete", "price": 1})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id: i64 = created["id"].as_str().unwrap().parse().unwrap();

    repo.delete(
        &ct,
        raisfast::types::snowflake_id::SnowflakeId(id),
        None,
        &test_protocol_registry(),
        &test_ct_registry(),
    )
    .await
    .unwrap();

    let found = repo
        .find_by_id(&ct, SnowflakeId(id), None, true)
        .await
        .unwrap();
    assert!(found.is_none());

    let count: (i64,) = sqlx::query_as("SELECT COUNT(*) FROM ct_products")
        .fetch_one(&pool)
        .await
        .unwrap();
    assert_eq!(count.0, 0);
}

#[tokio::test]
async fn soft_delete_marks_record() {
    let mut ct = ContentTypeSchema::parse_from_str(
        r#"
[content_type]
name = "Note"
singular = "note"
plural = "notes"
table = "ct_notes"
implements = ["ownable", "timestampable", "soft_deletable"]

[fields.title]
type = "text"
required = true
"#,
    )
    .unwrap();
    cache_ct(&mut ct);

    let pool = setup_pool().await;
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Soft Delete Me"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id: i64 = created["id"].as_str().unwrap().parse().unwrap();

    repo.delete(
        &ct,
        raisfast::types::snowflake_id::SnowflakeId(id),
        None,
        &test_protocol_registry(),
        &test_ct_registry(),
    )
    .await
    .unwrap();

    let row: Option<(String,)> = sqlx::query_as("SELECT deleted_at FROM ct_notes WHERE id = ?")
        .bind(id)
        .fetch_optional(&repo.pool)
        .await
        .unwrap();

    let deleted_at = row.unwrap().0;
    assert!(!deleted_at.is_empty());
}

#[tokio::test]
async fn registry_load_and_lookup() {
    let ct = parse_product();
    let registry = ContentTypeRegistry::new();
    let reserved: Vec<&str> = Vec::new();
    let protocol_reg = test_protocol_registry();
    let protocol_names: Vec<&str> = protocol_reg.names();
    registry
        .register(
            ct,
            &raisfast::config::app::RuleEngineConfig::default(),
            &reserved,
            &protocol_names,
            &protocol_reg,
        )
        .unwrap();

    assert_eq!(registry.len(), 1);
    assert!(registry.get("product").is_some());
    assert!(registry.get("nonexistent").is_none());
    assert!(registry.get_by_table("ct_products").is_some());
    assert!(!registry.is_empty());
}

#[tokio::test]
async fn tenant_isolation() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let a = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Tenant A Product", "slug": "tenant-a", "price": 100})),
            Some("tenant_a"),
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let b = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Tenant B Product", "slug": "tenant-b", "price": 200})),
            Some("tenant_b"),
            &SaveContext::default(),
        )
        .await
        .unwrap();

    let id_a: i64 = a["id"].as_str().unwrap().parse().unwrap();
    let id_b: i64 = b["id"].as_str().unwrap().parse().unwrap();

    assert!(
        repo.find_by_id(&ct, SnowflakeId(id_a), Some("tenant_b"), true)
            .await
            .unwrap()
            .is_none(),
        "tenant_b should not see tenant_a's data"
    );
    assert!(
        repo.find_by_id(&ct, SnowflakeId(id_b), Some("tenant_a"), true)
            .await
            .unwrap()
            .is_none(),
        "tenant_a should not see tenant_b's data"
    );
    assert!(
        repo.find_by_id(&ct, SnowflakeId(id_a), Some("tenant_a"), true)
            .await
            .unwrap()
            .is_some(),
        "tenant_a should see own data"
    );

    let query = ContentQuery {
        page: 1,
        page_size: 20,
        sort: None,
        filters: HashMap::new(),
        status: None,
        search: None,
        fields: None,
        tenant_id: Some("tenant_a".into()),
        include: None,
        skip_total: false,
        rule_where: None,
        rule_params: Vec::new(),
        max_page_size: 100,
        include_private: false,
        meta_filters: Vec::new(),
    };
    let (items, total) = repo.find(&ct, query).await.unwrap();
    assert_eq!(total, 1);
    assert_eq!(items[0]["title"], "Tenant A Product");
}

#[tokio::test]
async fn delete_respects_tenant() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let a = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "A", "slug": "a", "price": 1})),
            Some("tenant_a"),
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id_a: i64 = a["id"].as_str().unwrap().parse().unwrap();

    repo.delete(
        &ct,
        raisfast::types::snowflake_id::SnowflakeId(id_a),
        Some("tenant_b"),
        &test_protocol_registry(),
        &test_ct_registry(),
    )
    .await
    .unwrap();

    assert!(
        repo.find_by_id(&ct, SnowflakeId(id_a), Some("tenant_a"), true)
            .await
            .unwrap()
            .is_some(),
        "tenant_b should not be able to delete tenant_a's data"
    );

    repo.delete(
        &ct,
        raisfast::types::snowflake_id::SnowflakeId(id_a),
        Some("tenant_a"),
        &test_protocol_registry(),
        &test_ct_registry(),
    )
    .await
    .unwrap();
    assert!(
        repo.find_by_id(&ct, SnowflakeId(id_a), Some("tenant_a"), true)
            .await
            .unwrap()
            .is_none(),
        "tenant_a should be able to delete own data"
    );
}

#[tokio::test]
async fn find_with_custom_sort() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    for (title, price) in [("Alpha", 30), ("Beta", 10), ("Gamma", 20)] {
        repo.create(
            &ct,
            with_timestamps(json!({"title": title, "slug": title.to_lowercase(), "price": price})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    }

    let query = ContentQuery {
        page: 1,
        page_size: 20,
        sort: Some("price:asc".into()),
        filters: HashMap::new(),
        status: None,
        search: None,
        fields: None,
        tenant_id: None,
        include: None,
        skip_total: false,
        rule_where: None,
        rule_params: Vec::new(),
        max_page_size: 100,
        include_private: false,
        meta_filters: Vec::new(),
    };
    let (items, _) = repo.find(&ct, query).await.unwrap();
    assert_eq!(items[0]["title"], "Beta");
    assert_eq!(items[1]["title"], "Gamma");
    assert_eq!(items[2]["title"], "Alpha");
}

#[tokio::test]
async fn find_with_field_filter() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    repo.create(
        &ct,
        with_timestamps(json!({"title": "Expensive", "slug": "expensive", "price": 999})),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();
    repo.create(
        &ct,
        with_timestamps(json!({"title": "Cheap", "slug": "cheap", "price": 1})),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();

    let mut filters = HashMap::new();
    filters.insert("title".into(), json!("Cheap"));

    let query = ContentQuery {
        page: 1,
        page_size: 20,
        sort: None,
        filters,
        status: None,
        search: None,
        fields: None,
        tenant_id: None,
        include: None,
        skip_total: false,
        rule_where: None,
        rule_params: Vec::new(),
        max_page_size: 100,
        include_private: false,
        meta_filters: Vec::new(),
    };
    let (items, total) = repo.find(&ct, query).await.unwrap();
    assert_eq!(total, 1);
    assert_eq!(items[0]["title"], "Cheap");
}

#[tokio::test]
async fn partial_field_selection() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    repo.create(
        &ct,
        with_timestamps(json!({"title": "Select", "slug": "select", "price": 42})),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();

    let query = ContentQuery {
        page: 1,
        page_size: 20,
        sort: None,
        filters: HashMap::new(),
        status: None,
        search: None,
        fields: Some(vec!["title".into()]),
        tenant_id: None,
        include: None,
        skip_total: false,
        rule_where: None,
        rule_params: Vec::new(),
        max_page_size: 100,
        include_private: false,
        meta_filters: Vec::new(),
    };
    let (items, _) = repo.find(&ct, query).await.unwrap();
    let obj = items[0].as_object().unwrap();
    assert!(obj.contains_key("id"));
    assert!(obj.contains_key("title"));
    assert!(!obj.contains_key("price"));
}

#[tokio::test]
async fn create_auto_generates_id_and_timestamps() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let result = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Auto", "slug": "auto", "price": 1})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();

    assert!(result["id"].is_string());
    assert!(result.get("created_at").is_some());
    assert!(result.get("updated_at").is_some());
}

#[tokio::test]
async fn create_without_body_object_returns_error() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let result = repo
        .create(&ct, json!("not an object"), None, &SaveContext::default())
        .await;
    assert!(result.is_err());
}

#[tokio::test]
async fn update_with_no_fields_returns_error() {
    let pool = setup_pool().await;
    let ct = parse_product();
    let repo = ContentRepository::new(pool);
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "X", "slug": "x", "price": 1})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id: i64 = created["id"].as_str().unwrap().parse().unwrap();

    let result = repo
        .update(
            &ct,
            raisfast::types::snowflake_id::SnowflakeId(id),
            json!({"nonexistent_field": "v"}),
            None,
            &SaveContext::default(),
        )
        .await;
    assert!(result.is_err());
}

#[tokio::test]
async fn migrate_adds_columns_incrementally() {
    let pool = setup_pool().await;
    let repo = ContentRepository::new(pool.clone());

    let mut ct_v1 = ContentTypeSchema::parse_from_str(
        r#"
[content_type]
name = "Note"
singular = "note"
plural = "notes"
table = "ct_notes_v2"
implements = ["ownable", "timestampable"]

[fields.title]
type = "text"
required = true
"#,
    )
    .unwrap();
    cache_ct(&mut ct_v1);
    repo.migrate(&ct_v1, &test_protocol_registry())
        .await
        .unwrap();

    let mut ct_v2 = ContentTypeSchema::parse_from_str(
        r#"
[content_type]
name = "Note"
singular = "note"
plural = "notes"
table = "ct_notes_v2"
implements = ["ownable", "timestampable"]

[fields.title]
type = "text"
required = true

[fields.body]
type = "text"

[fields.priority]
type = "integer"
default = 0
"#,
    )
    .unwrap();
    cache_ct(&mut ct_v2);
    repo.migrate(&ct_v2, &test_protocol_registry())
        .await
        .unwrap();

    let created = repo
        .create(
            &ct_v2,
            with_timestamps(json!({"title": "V2", "body": "hello", "priority": 5})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    assert_eq!(created["body"], "hello");
    assert_eq!(created["priority"], 5);
}

// ── Versioning 测试 ─────────────────────────────────────────────

const VERSIONED_TOML: &str = r#"
[content_type]
name = "Article"
singular = "article"
plural = "articles"
table = "ct_versioned_articles"
implements = ["ownable", "timestampable", "versionable"]

[fields.title]
type = "text"
required = true

[fields.content]
type = "text"

[fields.status]
type = "text"
default = "draft"
"#;

fn parse_versioned() -> ContentTypeSchema {
    let mut ct = ContentTypeSchema::parse_from_str(VERSIONED_TOML).unwrap();
    cache_ct(&mut ct);
    ct
}

#[tokio::test]
async fn versioning_flag_parsed() {
    let ct = parse_versioned();
    assert!(ct.implements_protocol("versionable"));
    assert_eq!(ct.singular, "article");
}

#[tokio::test]
async fn versioning_creates_revision_on_update() {
    let pool = setup_pool().await;
    let ct = parse_versioned();
    let repo = ContentRepository::new(pool.clone());

    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "V1 Title", "content": "V1 Content"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id = created["id"].as_str().unwrap().to_string();
    let int_id: i64 = id.parse().unwrap();
    let _updated = repo
        .update(
            &ct,
            raisfast::types::snowflake_id::SnowflakeId(int_id),
            json!({"title": "V2 Title", "content": "V2 Content"}),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();

    let revisions = raisfast::models::content_revision::list_revisions(
        &pool,
        "article",
        SnowflakeId(id.parse::<i64>().unwrap()),
    )
    .await
    .unwrap();
    assert_eq!(revisions.len(), 1);
    assert_eq!(revisions[0].revision_number, 1);

    let rev = raisfast::models::content_revision::get_revision(
        &pool,
        "article",
        SnowflakeId(id.parse::<i64>().unwrap()),
        SnowflakeId(*revisions[0].id),
    )
    .await
    .unwrap()
    .unwrap();
    let snapshot: serde_json::Value = serde_json::from_str(&rev.snapshot).unwrap();
    assert_eq!(snapshot["title"], "V1 Title");
    assert_eq!(snapshot["content"], "V1 Content");
}

#[tokio::test]
async fn versioning_multiple_updates_create_multiple_revisions() {
    let pool = setup_pool().await;
    let ct = parse_versioned();
    let repo = ContentRepository::new(pool.clone());

    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Rev0"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id = created["id"].as_str().unwrap().to_string();
    let int_id: i64 = id.parse().unwrap();
    repo.update(
        &ct,
        SnowflakeId(int_id),
        json!({"title": "Rev1"}),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();
    repo.update(
        &ct,
        SnowflakeId(int_id),
        json!({"title": "Rev2"}),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();
    repo.update(
        &ct,
        SnowflakeId(int_id),
        json!({"title": "Rev3"}),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();

    let revisions = raisfast::models::content_revision::list_revisions(
        &pool,
        "article",
        SnowflakeId(id.parse::<i64>().unwrap()),
    )
    .await
    .unwrap();
    assert_eq!(revisions.len(), 3);
    assert_eq!(revisions[0].revision_number, 3);
    assert_eq!(revisions[1].revision_number, 2);
    assert_eq!(revisions[2].revision_number, 1);
}

#[tokio::test]
async fn versioning_delete_cleans_up_revisions() {
    let pool = setup_pool().await;
    let ct = parse_versioned();
    let repo = ContentRepository::new(pool.clone());

    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Temp"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id = created["id"].as_str().unwrap().to_string();
    let int_id: i64 = id.parse().unwrap();

    repo.update(
        &ct,
        SnowflakeId(int_id),
        json!({"title": "Updated"}),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();

    let before = raisfast::models::content_revision::list_revisions(
        &pool,
        "article",
        SnowflakeId(id.parse::<i64>().unwrap()),
    )
    .await
    .unwrap();
    assert_eq!(before.len(), 1);

    repo.delete(
        &ct,
        raisfast::types::snowflake_id::SnowflakeId(int_id),
        None,
        &test_protocol_registry(),
        &test_ct_registry(),
    )
    .await
    .unwrap();

    let after = raisfast::models::content_revision::list_revisions(
        &pool,
        "article",
        SnowflakeId(id.parse::<i64>().unwrap()),
    )
    .await
    .unwrap();
    assert!(after.is_empty());
}

#[tokio::test]
async fn versioning_no_revision_when_disabled() {
    let pool = setup_pool().await;
    let mut ct = ContentTypeSchema::parse_from_str(
        r#"
[content_type]
name = "Note"
singular = "note"
plural = "notes"
table = "ct_no_versioning"
implements = ["ownable", "timestampable"]

[fields.title]
type = "text"
required = true
"#,
    )
    .unwrap();
    cache_ct(&mut ct);
    assert!(!ct.implements_protocol("versionable"));

    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "NoRev"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id = created["id"].as_str().unwrap().to_string();
    let int_id: i64 = id.parse().unwrap();

    repo.update(
        &ct,
        SnowflakeId(int_id),
        json!({"title": "Updated"}),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();

    let revisions = raisfast::models::content_revision::list_revisions(
        &pool,
        "note",
        SnowflakeId(id.parse::<i64>().unwrap()),
    )
    .await
    .unwrap();
    assert!(revisions.is_empty());
}

#[tokio::test]
async fn versioning_diff_computes_correctly() {
    let old = json!({"title": "Old", "content": "Same", "status": "draft"});
    let new = json!({"title": "New", "content": "Same", "status": "published", "extra": 42});

    let diff = raisfast::models::content_revision::compute_diff(&old, &new);

    let changed = diff["changed"].as_object().unwrap();
    assert!(changed.contains_key("title"));
    assert!(changed.contains_key("status"));
    assert_eq!(changed.len(), 2);

    let added = diff["added"].as_object().unwrap();
    assert!(added.contains_key("extra"));
    assert_eq!(added.len(), 1);

    let removed = diff["removed"].as_object().unwrap();
    assert!(removed.is_empty());
}

#[tokio::test]
async fn soft_delete_filtered_from_list() {
    let pool = setup_pool().await;
    let mut ct = ContentTypeSchema::parse_from_str(
        r#"
[content_type]
name = "Note"
singular = "note"
plural = "notes"
table = "ct_soft_filter_list"
implements = ["ownable", "timestampable", "soft_deletable"]

[fields.title]
type = "text"
required = true

[fields.slug]
type = "uid"
target_field = "title"
"#,
    )
    .unwrap();
    cache_ct(&mut ct);

    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    repo.create(
        &ct,
        with_timestamps(json!({"title": "Visible Note", "slug": "visible"})),
        None,
        &SaveContext::default(),
    )
    .await
    .unwrap();
    let deleted = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Deleted Note", "slug": "deleted"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let deleted_id: i64 = deleted["id"].as_str().unwrap().parse().unwrap();

    let now = now_str();
    repo.soft_delete(&ct, SnowflakeId(deleted_id), &now, None, None)
        .await
        .unwrap();

    let query = ContentQuery {
        page: 1,
        page_size: 10,
        sort: None,
        filters: HashMap::new(),
        status: None,
        search: None,
        fields: None,
        tenant_id: None,
        include: None,
        skip_total: false,
        rule_where: None,
        rule_params: Vec::new(),
        max_page_size: 100,
        include_private: false,
        meta_filters: Vec::new(),
    };
    let (items, total) = repo.find(&ct, query).await.unwrap();
    assert_eq!(total, 1);
    assert_eq!(items.len(), 1);
    assert_eq!(items[0]["title"].as_str().unwrap(), "Visible Note");
}

#[tokio::test]
async fn soft_delete_filtered_from_find_by_slug() {
    let pool = setup_pool().await;
    let mut ct = ContentTypeSchema::parse_from_str(
        r#"
[content_type]
name = "Note"
singular = "note"
plural = "notes"
table = "ct_soft_filter_slug"
implements = ["ownable", "timestampable", "soft_deletable"]

[fields.title]
type = "text"
required = true

[fields.slug]
type = "uid"
target_field = "title"
"#,
    )
    .unwrap();
    cache_ct(&mut ct);

    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Gone", "slug": "gone"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id = created["id"].as_str().unwrap().to_string();
    let int_id: i64 = id.parse().unwrap();

    let now = now_str();
    repo.soft_delete(&ct, SnowflakeId(int_id), &now, None, None)
        .await
        .unwrap();

    let found = repo
        .find_by_slug(&ct, "gone", None, None, true)
        .await
        .unwrap();
    assert!(found.is_none());
}

#[tokio::test]
async fn soft_delete_still_accessible_by_id() {
    let pool = setup_pool().await;
    let mut ct = ContentTypeSchema::parse_from_str(
        r#"
[content_type]
name = "Note"
singular = "note"
plural = "notes"
table = "ct_soft_find_by_id"
implements = ["ownable", "timestampable", "soft_deletable"]

[fields.title]
type = "text"
required = true
"#,
    )
    .unwrap();
    cache_ct(&mut ct);

    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Soft Deleted"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id = created["id"].as_str().unwrap().to_string();
    let int_id: i64 = id.parse().unwrap();

    let now = now_str();
    repo.soft_delete(&ct, SnowflakeId(int_id), &now, None, None)
        .await
        .unwrap();

    let found = repo
        .find_by_id(&ct, SnowflakeId(int_id), None, true)
        .await
        .unwrap();
    assert!(found.is_some());
    assert_eq!(found.unwrap()["title"].as_str().unwrap(), "Soft Deleted");
}

#[tokio::test]
async fn soft_delete_with_deleted_by() {
    let pool = setup_pool().await;
    let mut ct = ContentTypeSchema::parse_from_str(
        r#"
[content_type]
name = "Note"
singular = "note"
plural = "notes"
table = "ct_soft_deleted_by"
implements = ["ownable", "timestampable", "soft_deletable"]

[fields.title]
type = "text"
required = true
"#,
    )
    .unwrap();
    cache_ct(&mut ct);

    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Audit Me"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id: i64 = created["id"].as_str().unwrap().parse().unwrap();

    let now = now_str();
    repo.soft_delete(&ct, SnowflakeId(id), &now, Some(42), None)
        .await
        .unwrap();

    let row: (String, i64) =
        sqlx::query_as("SELECT deleted_at, deleted_by FROM ct_soft_deleted_by WHERE id = ?")
            .bind(id)
            .fetch_one(&pool)
            .await
            .unwrap();
    assert!(!row.0.is_empty());
    assert_eq!(row.1, 42);
}

#[tokio::test]
async fn soft_delete_implements_trait_equivalent() {
    let pool = setup_pool().await;
    let mut ct = ContentTypeSchema::parse_from_str(
        r#"
[content_type]
name = "Note"
singular = "note"
plural = "notes"
table = "ct_soft_via_implements"

implements = ["ownable", "timestampable", "soft_deletable"]

[fields.title]
type = "text"
required = true
"#,
    )
    .unwrap();
    cache_ct(&mut ct);

    assert!(ct.implements_protocol("soft_deletable"));

    let repo = ContentRepository::new(pool.clone());
    repo.migrate(&ct, &test_protocol_registry()).await.unwrap();

    let created = repo
        .create(
            &ct,
            with_timestamps(json!({"title": "Implements Test"})),
            None,
            &SaveContext::default(),
        )
        .await
        .unwrap();
    let id: i64 = created["id"].as_str().unwrap().parse().unwrap();

    let now = now_str();
    repo.soft_delete(&ct, SnowflakeId(id), &now, None, None)
        .await
        .unwrap();

    let query = ContentQuery {
        page: 1,
        page_size: 10,
        sort: None,
        filters: HashMap::new(),
        status: None,
        search: None,
        fields: None,
        tenant_id: None,
        include: None,
        skip_total: false,
        rule_where: None,
        rule_params: Vec::new(),
        max_page_size: 100,
        include_private: false,
        meta_filters: Vec::new(),
    };
    let (items, total) = repo.find(&ct, query).await.unwrap();
    assert_eq!(total, 0);
    assert!(items.is_empty());
}