fraiseql-functions 2.3.0

Serverless functions runtime for FraiseQL — WASM and Deno backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
//! Integration tests for the trigger system.

#![allow(clippy::panic)] // Reason: test code, panics acceptable
use crate::{
    triggers::mutation::{
        AfterMutationTrigger, BeforeMutationTrigger, EntityEvent, EventKind, TriggerMatcher,
    },
    types::EventPayload,
};

/// Test: after:mutation fires on insert
#[test]
fn test_after_mutation_fires_on_insert() {
    let trigger = AfterMutationTrigger {
        function_name: "onUserCreated".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Insert),
    };

    let event = EntityEvent {
        entity:     "User".to_string(),
        event_kind: EventKind::Insert,
        old:        None,
        new:        Some(serde_json::json!({ "id": 1, "name": "Alice" })),
        timestamp:  chrono::Utc::now(),
    };

    let payload = trigger.build_payload(&event);

    assert_eq!(payload.trigger_type, "after:mutation:onUserCreated");
    assert_eq!(payload.entity, "User");
    assert_eq!(payload.event_kind, "insert");
    assert_eq!(payload.data["old"], serde_json::Value::Null);
    assert!(payload.data["new"].is_object());
}

/// Test: after:mutation fires on update
#[test]
fn test_after_mutation_fires_on_update() {
    let trigger = AfterMutationTrigger {
        function_name: "onUserUpdated".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Update),
    };

    let event = EntityEvent {
        entity:     "User".to_string(),
        event_kind: EventKind::Update,
        old:        Some(serde_json::json!({ "id": 1, "name": "Alice" })),
        new:        Some(serde_json::json!({ "id": 1, "name": "Alice Smith" })),
        timestamp:  chrono::Utc::now(),
    };

    let payload = trigger.build_payload(&event);

    assert_eq!(payload.trigger_type, "after:mutation:onUserUpdated");
    assert_eq!(payload.entity, "User");
    assert_eq!(payload.event_kind, "update");
    assert!(payload.data["old"].is_object());
    assert!(payload.data["new"].is_object());
}

/// Test: after:mutation fires on delete
#[test]
fn test_after_mutation_fires_on_delete() {
    let trigger = AfterMutationTrigger {
        function_name: "onUserDeleted".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Delete),
    };

    let event = EntityEvent {
        entity:     "User".to_string(),
        event_kind: EventKind::Delete,
        old:        Some(serde_json::json!({ "id": 1, "name": "Alice" })),
        new:        None,
        timestamp:  chrono::Utc::now(),
    };

    let payload = trigger.build_payload(&event);

    assert_eq!(payload.trigger_type, "after:mutation:onUserDeleted");
    assert_eq!(payload.entity, "User");
    assert_eq!(payload.event_kind, "delete");
    assert!(payload.data["old"].is_object());
    assert_eq!(payload.data["new"], serde_json::Value::Null);
}

/// Test: after:mutation receives correct entity type
#[test]
fn test_after_mutation_receives_entity_type() {
    let trigger = AfterMutationTrigger {
        function_name: "onPostCreated".to_string(),
        entity_type:   "Post".to_string(),
        event_filter:  Some(EventKind::Insert),
    };

    let event = EntityEvent {
        entity:     "Post".to_string(),
        event_kind: EventKind::Insert,
        old:        None,
        new:        Some(serde_json::json!({ "id": 1, "title": "Hello" })),
        timestamp:  chrono::Utc::now(),
    };

    let payload = trigger.build_payload(&event);

    assert_eq!(payload.entity, "Post");
    assert_eq!(trigger.entity_type, "Post");
}

/// Test: trigger matching logic for entity type and event kind
#[test]
fn test_after_mutation_trigger_matching() {
    let trigger_insert = AfterMutationTrigger {
        function_name: "onUserCreated".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Insert),
    };

    let trigger_all = AfterMutationTrigger {
        function_name: "onUserChanged".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  None,
    };

    // Insert-only trigger matches insert
    assert!(trigger_insert.matches("User", EventKind::Insert));
    assert!(!trigger_insert.matches("User", EventKind::Update));
    assert!(!trigger_insert.matches("Post", EventKind::Insert));

    // All-kinds trigger matches all
    assert!(trigger_all.matches("User", EventKind::Insert));
    assert!(trigger_all.matches("User", EventKind::Update));
    assert!(trigger_all.matches("User", EventKind::Delete));
    assert!(!trigger_all.matches("Post", EventKind::Insert));
}

/// Test: before:mutation trigger matching
#[test]
fn test_before_mutation_trigger_matching() {
    let trigger = BeforeMutationTrigger {
        function_name: "validateUserInput".to_string(),
        mutation_name: "createUser".to_string(),
    };

    assert!(trigger.matches("createUser"));
    assert!(!trigger.matches("updateUser"));
    assert!(!trigger.matches("deleteUser"));
}

/// Test: multiple before:mutation triggers in sequence
#[test]
fn test_before_mutation_multiple_triggers() {
    let trigger_a = BeforeMutationTrigger {
        function_name: "validateInput".to_string(),
        mutation_name: "createUser".to_string(),
    };

    let trigger_b = BeforeMutationTrigger {
        function_name: "checkDuplicates".to_string(),
        mutation_name: "createUser".to_string(),
    };

    let trigger_c = BeforeMutationTrigger {
        function_name: "auditLog".to_string(),
        mutation_name: "createUser".to_string(),
    };

    assert!(trigger_a.matches("createUser"));
    assert!(trigger_b.matches("createUser"));
    assert!(trigger_c.matches("createUser"));
}

/// Test: event payload serialization
#[test]
fn test_after_mutation_payload_serialization() {
    let trigger = AfterMutationTrigger {
        function_name: "onUserCreated".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Insert),
    };

    let event = EntityEvent {
        entity:     "User".to_string(),
        event_kind: EventKind::Insert,
        old:        None,
        new:        Some(serde_json::json!({ "id": 1, "name": "Alice" })),
        timestamp:  chrono::Utc::now(),
    };

    let payload = trigger.build_payload(&event);
    let json = serde_json::to_string(&payload).expect("serialize");
    let restored: EventPayload = serde_json::from_str(&json).expect("deserialize");

    assert_eq!(restored.trigger_type, payload.trigger_type);
    assert_eq!(restored.entity, payload.entity);
    assert_eq!(restored.event_kind, payload.event_kind);
}

/// Test: trigger matcher finds correct triggers for dispatch
#[test]
fn test_trigger_dispatch_finds_matching_triggers() {
    let mut matcher = TriggerMatcher::new();

    // Add triggers for different scenarios
    matcher.add(AfterMutationTrigger {
        function_name: "onUserCreated".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Insert),
    });

    matcher.add(AfterMutationTrigger {
        function_name: "onUserChanged".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  None, // Matches all events
    });

    // When User is inserted, both specific and all-kinds triggers match
    let triggers = matcher.find("User", EventKind::Insert);
    assert_eq!(triggers.len(), 2);
    let names: Vec<_> = triggers.iter().map(|t| t.function_name.as_str()).collect();
    assert!(names.contains(&"onUserCreated"));
    assert!(names.contains(&"onUserChanged"));

    // When User is updated, only all-kinds trigger matches
    let triggers = matcher.find("User", EventKind::Update);
    assert_eq!(triggers.len(), 1);
    assert_eq!(triggers[0].function_name, "onUserChanged");
}

/// Test: async dispatch doesn't block mutation response
#[tokio::test]
async fn test_after_mutation_async_dispatch_nonblocking() {
    let trigger = AfterMutationTrigger {
        function_name: "onUserCreated".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Insert),
    };

    let event = EntityEvent {
        entity:     "User".to_string(),
        event_kind: EventKind::Insert,
        old:        None,
        new:        Some(serde_json::json!({ "id": 1, "name": "Alice" })),
        timestamp:  chrono::Utc::now(),
    };

    // Building payload is synchronous (fast)
    let payload = trigger.build_payload(&event);
    assert_eq!(payload.trigger_type, "after:mutation:onUserCreated");

    // In real implementation, function execution would be spawned as a task
    // and would not block the mutation response
    // This test just verifies the payload is built correctly
}

/// Test: trigger matcher with multiple mutations
#[test]
fn test_trigger_dispatch_multiple_mutations() {
    let mut matcher = TriggerMatcher::new();

    matcher.add(AfterMutationTrigger {
        function_name: "onUserCreated".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Insert),
    });

    matcher.add(AfterMutationTrigger {
        function_name: "onUserDeleted".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Delete),
    });

    matcher.add(AfterMutationTrigger {
        function_name: "onPostCreated".to_string(),
        entity_type:   "Post".to_string(),
        event_filter:  Some(EventKind::Insert),
    });

    // User insert triggers only user create trigger
    let triggers = matcher.find("User", EventKind::Insert);
    assert_eq!(triggers.len(), 1);
    assert_eq!(triggers[0].function_name, "onUserCreated");

    // User delete triggers only user delete trigger
    let triggers = matcher.find("User", EventKind::Delete);
    assert_eq!(triggers.len(), 1);
    assert_eq!(triggers[0].function_name, "onUserDeleted");

    // Post insert triggers only post create trigger
    let triggers = matcher.find("Post", EventKind::Insert);
    assert_eq!(triggers.len(), 1);
    assert_eq!(triggers[0].function_name, "onPostCreated");

    // No triggers for post delete
    let triggers = matcher.find("Post", EventKind::Delete);
    assert!(triggers.is_empty());
}

// ============================================================================
// Cycle 2: before:mutation Trigger Tests (RED Phase)
// ============================================================================

use crate::triggers::mutation::BeforeMutationResult;

/// Test: before:mutation receives proposed input
#[test]
fn test_before_mutation_receives_proposed_input() {
    let input = serde_json::json!({
        "name": "Alice",
        "email": "alice@example.com"
    });

    // In the actual implementation, this input would be passed to the function
    // and the function would receive it as the event data
    assert!(input.is_object());
    assert_eq!(input["name"], "Alice");
    assert_eq!(input["email"], "alice@example.com");
}

/// Test: before:mutation proceed allows mutation
#[test]
fn test_before_mutation_proceed_allows_mutation() {
    let input = serde_json::json!({
        "name": "Alice",
        "email": "alice@example.com"
    });

    let result = BeforeMutationResult::Proceed(input);

    match result {
        BeforeMutationResult::Proceed(modified) => {
            assert_eq!(modified["name"], "Alice");
            assert_eq!(modified["email"], "alice@example.com");
        },
        BeforeMutationResult::Abort(_) => {
            panic!("Expected Proceed, got Abort");
        },
    }
}

/// Test: before:mutation proceed with modified input
#[test]
fn test_before_mutation_proceed_with_modified_input() {
    // Function receives and modifies input
    let modified = serde_json::json!({
        "name": "ALICE",
        "email": "alice@example.com"
    });

    let result = BeforeMutationResult::Proceed(modified);

    match result {
        BeforeMutationResult::Proceed(output) => {
            assert_eq!(output["name"], "ALICE");
            assert_ne!(output["name"], "alice");
        },
        BeforeMutationResult::Abort(_) => {
            panic!("Expected Proceed, got Abort");
        },
    }
}

/// Test: before:mutation abort cancels mutation
#[test]
fn test_before_mutation_abort_cancels_mutation() {
    let result: BeforeMutationResult =
        BeforeMutationResult::Abort("validation failed: name is required".to_string());

    match result {
        BeforeMutationResult::Proceed(_) => {
            panic!("Expected Abort, got Proceed");
        },
        BeforeMutationResult::Abort(error) => {
            assert_eq!(error, "validation failed: name is required");
        },
    }
}

/// Test: chain of triggers executes in order
#[test]
fn test_before_mutation_chain_order() {
    let trigger_a = BeforeMutationTrigger {
        function_name: "validateInput".to_string(),
        mutation_name: "createUser".to_string(),
    };

    let trigger_b = BeforeMutationTrigger {
        function_name: "checkDuplicates".to_string(),
        mutation_name: "createUser".to_string(),
    };

    let trigger_c = BeforeMutationTrigger {
        function_name: "auditLog".to_string(),
        mutation_name: "createUser".to_string(),
    };

    let chain = crate::triggers::mutation::BeforeMutationChain {
        triggers: vec![trigger_a, trigger_b, trigger_c],
    };

    // Verify triggers are in the expected order
    assert_eq!(chain.triggers[0].function_name, "validateInput");
    assert_eq!(chain.triggers[1].function_name, "checkDuplicates");
    assert_eq!(chain.triggers[2].function_name, "auditLog");
}

/// Test: before:mutation result serialization
#[test]
fn test_before_mutation_result_serialization() {
    let proceed_result = BeforeMutationResult::Proceed(serde_json::json!({"name": "Alice"}));

    let json = serde_json::to_string(&proceed_result).expect("serialize");
    let restored: BeforeMutationResult = serde_json::from_str(&json).expect("deserialize");

    match restored {
        BeforeMutationResult::Proceed(value) => {
            assert_eq!(value["name"], "Alice");
        },
        BeforeMutationResult::Abort(_) => {
            panic!("Expected Proceed after deserialization");
        },
    }
}

/// Test: abort result serialization
#[test]
fn test_before_mutation_abort_serialization() {
    let abort_result = BeforeMutationResult::Abort("validation error".to_string());

    let json = serde_json::to_string(&abort_result).expect("serialize");
    let restored: BeforeMutationResult = serde_json::from_str(&json).expect("deserialize");

    match restored {
        BeforeMutationResult::Proceed(_) => {
            panic!("Expected Abort after deserialization");
        },
        BeforeMutationResult::Abort(error) => {
            assert_eq!(error, "validation error");
        },
    }
}

/// Test: chain execution order simulation
/// Simulates what happens when triggers execute in order, each receiving
/// the modified output from the previous trigger.
#[test]
fn test_before_mutation_chain_execution_simulation() {
    use crate::triggers::mutation::BeforeMutationChain;

    let chain = BeforeMutationChain {
        triggers: vec![
            BeforeMutationTrigger {
                function_name: "normalizeEmail".to_string(),
                mutation_name: "createUser".to_string(),
            },
            BeforeMutationTrigger {
                function_name: "validateName".to_string(),
                mutation_name: "createUser".to_string(),
            },
            BeforeMutationTrigger {
                function_name: "enrichProfile".to_string(),
                mutation_name: "createUser".to_string(),
            },
        ],
    };

    // Verify chain structure before execution simulation
    assert_eq!(chain.triggers.len(), 3);

    // Simulate chain execution
    let mut current_input = serde_json::json!({
        "name": "alice smith",
        "email": "  ALICE@EXAMPLE.COM  "
    });

    // Trigger 1: normalizeEmail (simulated result)
    current_input["email"] = serde_json::Value::String("alice@example.com".to_string());

    // Trigger 2: validateName (simulated result)
    current_input["name"] = serde_json::Value::String("Alice Smith".to_string());

    // Trigger 3: enrichProfile (simulated result)
    current_input["profile"] = serde_json::json!({"bio": "User"});

    // Verify the chain of modifications
    assert_eq!(current_input["email"], "alice@example.com");
    assert_eq!(current_input["name"], "Alice Smith");
    assert!(current_input["profile"].is_object());
    assert_eq!(current_input["profile"]["bio"], "User");
}

/// Test: chain execution short-circuit on abort simulation
/// Simulates what happens when a trigger aborts the chain.
#[test]
fn test_before_mutation_chain_abort_simulation() {
    let chain = crate::triggers::mutation::BeforeMutationChain {
        triggers: vec![
            BeforeMutationTrigger {
                function_name: "validateInput".to_string(),
                mutation_name: "createUser".to_string(),
            },
            BeforeMutationTrigger {
                function_name: "checkDuplicates".to_string(),
                mutation_name: "createUser".to_string(),
            },
            BeforeMutationTrigger {
                function_name: "auditLog".to_string(),
                mutation_name: "createUser".to_string(),
            },
        ],
    };

    // Verify chain structure
    assert_eq!(chain.triggers.len(), 3);

    // Trigger 1: validateInput would return Abort
    let result1 = BeforeMutationResult::Abort("name is required".to_string());

    // Chain short-circuits here, triggers 2 and 3 never execute
    match result1 {
        BeforeMutationResult::Abort(error) => {
            assert_eq!(error, "name is required");
            // This is where mutation would be aborted in actual implementation
        },
        BeforeMutationResult::Proceed(_) => {
            panic!("Expected abort");
        },
    }
}

// ============================================================================
// Cycle 3: after:storage Trigger Tests (RED Phase)
// ============================================================================

use crate::triggers::storage::{StorageEventPayload, StorageOperation, StorageTrigger};

/// Test: after:storage fires on upload
#[test]
fn test_after_storage_upload_fires() {
    let trigger = StorageTrigger {
        function_name: "onAvatarUpload".to_string(),
        bucket:        "avatars".to_string(),
        operation:     StorageOperation::Upload,
    };

    let storage_event = StorageEventPayload {
        bucket:       "avatars".to_string(),
        key:          "users/alice/avatar.jpg".to_string(),
        size_bytes:   204_800,
        content_type: "image/jpeg".to_string(),
        owner_id:     Some("user123".to_string()),
        operation:    StorageOperation::Upload,
    };

    let payload = trigger.build_payload(&storage_event);

    assert_eq!(payload.trigger_type, "after:storage:avatars:upload");
    assert_eq!(payload.entity, "avatars");
    assert_eq!(payload.event_kind, "upload");
    assert_eq!(payload.data["bucket"], "avatars");
    assert_eq!(payload.data["key"], "users/alice/avatar.jpg");
    assert_eq!(payload.data["size_bytes"], 204_800);
    assert_eq!(payload.data["content_type"], "image/jpeg");
    assert_eq!(payload.data["owner_id"], "user123");
}

/// Test: after:storage fires on delete
#[test]
fn test_after_storage_delete_fires() {
    let trigger = StorageTrigger {
        function_name: "onDocumentDelete".to_string(),
        bucket:        "documents".to_string(),
        operation:     StorageOperation::Delete,
    };

    let storage_event = StorageEventPayload {
        bucket:       "documents".to_string(),
        key:          "reports/2024/report.pdf".to_string(),
        size_bytes:   0,
        content_type: "application/pdf".to_string(),
        owner_id:     Some("user456".to_string()),
        operation:    StorageOperation::Delete,
    };

    let payload = trigger.build_payload(&storage_event);

    assert_eq!(payload.trigger_type, "after:storage:documents:delete");
    assert_eq!(payload.entity, "documents");
    assert_eq!(payload.event_kind, "delete");
    assert_eq!(payload.data["bucket"], "documents");
    assert_eq!(payload.data["key"], "reports/2024/report.pdf");
    assert_eq!(payload.data["operation"], "delete");
}

/// Test: storage trigger matches bucket correctly
#[test]
fn test_after_storage_matches_bucket() {
    let avatar_trigger = StorageTrigger {
        function_name: "onAvatarUpload".to_string(),
        bucket:        "avatars".to_string(),
        operation:     StorageOperation::Upload,
    };

    // Event for avatars bucket
    let avatar_event = StorageEventPayload {
        bucket:       "avatars".to_string(),
        key:          "user/avatar.jpg".to_string(),
        size_bytes:   100_000,
        content_type: "image/jpeg".to_string(),
        owner_id:     Some("user1".to_string()),
        operation:    StorageOperation::Upload,
    };

    // Event for documents bucket
    let doc_event = StorageEventPayload {
        bucket:       "documents".to_string(),
        key:          "report.pdf".to_string(),
        size_bytes:   500_000,
        content_type: "application/pdf".to_string(),
        owner_id:     Some("user1".to_string()),
        operation:    StorageOperation::Upload,
    };

    assert!(avatar_trigger.matches(&avatar_event));
    assert!(!avatar_trigger.matches(&doc_event));
}

/// Test: storage trigger matches operation correctly
#[test]
fn test_after_storage_matches_operation() {
    let upload_trigger = StorageTrigger {
        function_name: "onAvatarUpload".to_string(),
        bucket:        "avatars".to_string(),
        operation:     StorageOperation::Upload,
    };

    let upload_event = StorageEventPayload {
        bucket:       "avatars".to_string(),
        key:          "avatar.jpg".to_string(),
        size_bytes:   100_000,
        content_type: "image/jpeg".to_string(),
        owner_id:     Some("user1".to_string()),
        operation:    StorageOperation::Upload,
    };

    let delete_event = StorageEventPayload {
        bucket:       "avatars".to_string(),
        key:          "avatar.jpg".to_string(),
        size_bytes:   0,
        content_type: "image/jpeg".to_string(),
        owner_id:     Some("user1".to_string()),
        operation:    StorageOperation::Delete,
    };

    assert!(upload_trigger.matches(&upload_event));
    assert!(!upload_trigger.matches(&delete_event));
}

/// Test: storage trigger with Any operation matches all events
#[test]
fn test_after_storage_matches_any_operation() {
    let any_trigger = StorageTrigger {
        function_name: "onStorageEvent".to_string(),
        bucket:        "avatars".to_string(),
        operation:     StorageOperation::Any,
    };

    let upload_event = StorageEventPayload {
        bucket:       "avatars".to_string(),
        key:          "avatar.jpg".to_string(),
        size_bytes:   100_000,
        content_type: "image/jpeg".to_string(),
        owner_id:     Some("user1".to_string()),
        operation:    StorageOperation::Upload,
    };

    let delete_event = StorageEventPayload {
        bucket:       "avatars".to_string(),
        key:          "avatar.jpg".to_string(),
        size_bytes:   0,
        content_type: "image/jpeg".to_string(),
        owner_id:     Some("user1".to_string()),
        operation:    StorageOperation::Delete,
    };

    assert!(any_trigger.matches(&upload_event));
    assert!(any_trigger.matches(&delete_event));
}

/// Test: storage trigger ignores transform cache operations
#[test]
fn test_after_storage_ignores_transform_cache() {
    let trigger = StorageTrigger {
        function_name: "onAvatarUpload".to_string(),
        bucket:        "avatars".to_string(),
        operation:     StorageOperation::Upload,
    };

    // Transform cache operations have _transforms/ prefix
    let transform_event = StorageEventPayload {
        bucket:       "avatars".to_string(),
        key:          "_transforms/avatar-thumb.jpg".to_string(),
        size_bytes:   50000,
        content_type: "image/jpeg".to_string(),
        owner_id:     None,
        operation:    StorageOperation::Upload,
    };

    assert!(!trigger.should_fire(&transform_event));
}

/// Test: storage trigger payload includes all metadata
#[test]
fn test_after_storage_payload_includes_metadata() {
    let trigger = StorageTrigger {
        function_name: "onUpload".to_string(),
        bucket:        "documents".to_string(),
        operation:     StorageOperation::Upload,
    };

    let storage_event = StorageEventPayload {
        bucket:       "documents".to_string(),
        key:          "invoices/INV-001.pdf".to_string(),
        size_bytes:   1_024_000,
        content_type: "application/pdf".to_string(),
        owner_id:     Some("company_789".to_string()),
        operation:    StorageOperation::Upload,
    };

    let payload = trigger.build_payload(&storage_event);

    assert!(payload.data.is_object());
    assert!(payload.data["bucket"].is_string());
    assert!(payload.data["key"].is_string());
    assert!(payload.data["size_bytes"].is_number());
    assert!(payload.data["content_type"].is_string());
    assert!(payload.data["owner_id"].is_string());
}

// ============================================================================
// Cycle 4: cron Trigger Tests (RED Phase)
// ============================================================================

use crate::triggers::cron::{CronExecutionState, CronSchedule, CronTrigger};

/// Test: cron trigger parses valid cron expression (daily at 2 AM)
#[test]
fn test_cron_trigger_parses_daily_expression() {
    let trigger = CronTrigger {
        function_name: "dailyCleanup".to_string(),
        schedule:      "0 2 * * *".to_string(), // 2 AM every day
        timezone:      "UTC".to_string(),
    };

    assert_eq!(trigger.function_name, "dailyCleanup");
    assert_eq!(trigger.schedule, "0 2 * * *");
    assert_eq!(trigger.timezone, "UTC");
}

/// Test: cron trigger parses valid cron expression (every hour)
#[test]
fn test_cron_trigger_parses_hourly_expression() {
    let trigger = CronTrigger {
        function_name: "hourlySync".to_string(),
        schedule:      "0 * * * *".to_string(), // Every hour at :00
        timezone:      "UTC".to_string(),
    };

    assert_eq!(trigger.function_name, "hourlySync");
    assert_eq!(trigger.schedule, "0 * * * *");
}

/// Test: cron trigger parses valid cron expression (every 5 minutes)
#[test]
fn test_cron_trigger_parses_every_5_minutes() {
    let trigger = CronTrigger {
        function_name: "frequentCheck".to_string(),
        schedule:      "*/5 * * * *".to_string(), // Every 5 minutes
        timezone:      "UTC".to_string(),
    };

    assert_eq!(trigger.schedule, "*/5 * * * *");
}

/// Test: cron schedule evaluates to true for matching time
#[test]
fn test_cron_schedule_matches_exact_time() {
    let schedule = CronSchedule::parse("0 2 * * *").expect("parse cron");

    // 2024-03-15 02:00:00 UTC should match "0 2 * * *"
    let matching_time = chrono::DateTime::parse_from_rfc3339("2024-03-15T02:00:00+00:00")
        .expect("parse datetime")
        .with_timezone(&chrono::Utc);

    assert!(schedule.matches(&matching_time));
}

/// Test: cron schedule does not match non-matching time
#[test]
fn test_cron_schedule_does_not_match_wrong_hour() {
    let schedule = CronSchedule::parse("0 2 * * *").expect("parse cron");

    // 2024-03-15 03:00:00 UTC should NOT match "0 2 * * *"
    let non_matching_time = chrono::DateTime::parse_from_rfc3339("2024-03-15T03:00:00+00:00")
        .expect("parse datetime")
        .with_timezone(&chrono::Utc);

    assert!(!schedule.matches(&non_matching_time));
}

/// Test: cron schedule matches on specific minutes
#[test]
fn test_cron_schedule_matches_every_5_minutes() {
    let schedule = CronSchedule::parse("*/5 * * * *").expect("parse cron");

    // Should match at :00, :05, :10, :15, :20, etc.
    let time_00 = chrono::DateTime::parse_from_rfc3339("2024-03-15T10:00:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);
    let time_05 = chrono::DateTime::parse_from_rfc3339("2024-03-15T10:05:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);
    let time_03 = chrono::DateTime::parse_from_rfc3339("2024-03-15T10:03:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);

    assert!(schedule.matches(&time_00));
    assert!(schedule.matches(&time_05));
    assert!(!schedule.matches(&time_03));
}

/// Test: cron trigger tracks last execution time
#[test]
fn test_cron_trigger_tracks_last_execution() {
    let mut state = CronExecutionState::new();

    // Initially, last_executed is None
    assert!(state.last_executed.is_none());

    // Record an execution
    let now = chrono::Utc::now();
    state.record_execution(now);

    assert_eq!(state.last_executed, Some(now));
}

/// Test: cron trigger detects if it should execute (first time)
#[test]
fn test_cron_trigger_should_execute_first_time() {
    let schedule = CronSchedule::parse("0 2 * * *").expect("parse cron");
    let state = CronExecutionState::new();

    // First execution time
    let exec_time = chrono::DateTime::parse_from_rfc3339("2024-03-15T02:00:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);

    // Should execute if no prior execution
    assert!(state.should_execute(&schedule, &exec_time));
}

/// Test: cron trigger prevents duplicate execution in same window
#[test]
fn test_cron_trigger_prevents_duplicate_in_window() {
    let schedule = CronSchedule::parse("0 2 * * *").expect("parse cron");
    let mut state = CronExecutionState::new();

    let exec_time = chrono::DateTime::parse_from_rfc3339("2024-03-15T02:00:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);

    // First execution succeeds
    assert!(state.should_execute(&schedule, &exec_time));
    state.record_execution(exec_time);

    // Same window (2:05 is still in the 2 AM hour) should NOT execute again
    let within_window = chrono::DateTime::parse_from_rfc3339("2024-03-15T02:05:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);

    assert!(!state.should_execute(&schedule, &within_window));
}

/// Test: cron trigger allows execution in next window
#[test]
fn test_cron_trigger_allows_next_window() {
    let schedule = CronSchedule::parse("0 * * * *").expect("parse cron");
    let mut state = CronExecutionState::new();

    // Execute at 2:00
    let time_200 = chrono::DateTime::parse_from_rfc3339("2024-03-15T02:00:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);
    assert!(state.should_execute(&schedule, &time_200));
    state.record_execution(time_200);

    // Execute at 3:00 (next hour)
    let time_300 = chrono::DateTime::parse_from_rfc3339("2024-03-15T03:00:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);
    assert!(state.should_execute(&schedule, &time_300));
}

/// Test: cron trigger catches up on missed executions
#[test]
fn test_cron_trigger_catches_up_missed_executions() {
    let schedule = CronSchedule::parse("0 * * * *").expect("parse cron");
    let state = CronExecutionState::new();

    // Server was down from 2:00 to 3:00, now it's 3:30
    let last_known = chrono::DateTime::parse_from_rfc3339("2024-03-15T01:00:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);

    let now = chrono::DateTime::parse_from_rfc3339("2024-03-15T03:30:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);

    let missed = state.find_missed_executions(&schedule, &last_known, &now);

    // Should find 2:00 and 3:00 as missed executions
    assert_eq!(missed.len(), 2);
}

/// Test: cron trigger payload includes schedule and function info
#[test]
fn test_cron_trigger_payload_includes_schedule_info() {
    let trigger = CronTrigger {
        function_name: "dailyCleanup".to_string(),
        schedule:      "0 2 * * *".to_string(),
        timezone:      "UTC".to_string(),
    };

    let exec_time = chrono::DateTime::parse_from_rfc3339("2024-03-15T02:00:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);

    let payload = trigger.build_payload(&exec_time);

    assert_eq!(payload.trigger_type, "cron:dailyCleanup");
    assert_eq!(payload.entity, "cron");
    assert_eq!(payload.event_kind, "scheduled");
    assert_eq!(payload.data["schedule"], "0 2 * * *");
    assert_eq!(payload.data["timezone"], "UTC");
}

/// Test: cron trigger payload includes execution timestamp
#[test]
fn test_cron_trigger_payload_includes_execution_time() {
    let trigger = CronTrigger {
        function_name: "hourlySync".to_string(),
        schedule:      "0 * * * *".to_string(),
        timezone:      "UTC".to_string(),
    };

    let exec_time = chrono::DateTime::parse_from_rfc3339("2024-03-15T14:00:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);

    let payload = trigger.build_payload(&exec_time);

    assert!(payload.data.is_object());
    assert!(payload.data["executed_at"].is_string());
    assert_eq!(payload.data["executed_at"], "2024-03-15T14:00:00Z");
}

/// Test: cron trigger handles timezone offset
#[test]
fn test_cron_trigger_with_specific_timezone() {
    let trigger = CronTrigger {
        function_name: "morningReport".to_string(),
        schedule:      "0 9 * * *".to_string(), // 9 AM in specified timezone
        timezone:      "America/New_York".to_string(),
    };

    assert_eq!(trigger.timezone, "America/New_York");
}

/// Test: cron trigger serialization/deserialization
#[test]
fn test_cron_trigger_serialization() {
    let trigger = CronTrigger {
        function_name: "dailyCleanup".to_string(),
        schedule:      "0 2 * * *".to_string(),
        timezone:      "UTC".to_string(),
    };

    let json = serde_json::to_string(&trigger).expect("serialize");
    let restored: CronTrigger = serde_json::from_str(&json).expect("deserialize");

    assert_eq!(restored.function_name, trigger.function_name);
    assert_eq!(restored.schedule, trigger.schedule);
    assert_eq!(restored.timezone, trigger.timezone);
}

/// Test: cron execution state persistence
#[test]
fn test_cron_execution_state_serialization() {
    let mut state = CronExecutionState::new();
    let exec_time = chrono::DateTime::parse_from_rfc3339("2024-03-15T02:00:00+00:00")
        .expect("parse")
        .with_timezone(&chrono::Utc);
    state.record_execution(exec_time);

    let json = serde_json::to_string(&state).expect("serialize");
    let restored: CronExecutionState = serde_json::from_str(&json).expect("deserialize");

    assert_eq!(restored.last_executed, Some(exec_time));
}

/// Test: HTTP trigger GET route parsing
#[test]
fn test_http_trigger_get_route() {
    use crate::triggers::http::HttpTriggerRoute;

    let route = HttpTriggerRoute {
        function_name: "helloWorld".to_string(),
        method:        "GET".to_string(),
        path:          "/functions/v1/hello".to_string(),
        requires_auth: false,
    };

    assert_eq!(route.function_name, "helloWorld");
    assert_eq!(route.method, "GET");
    assert_eq!(route.path, "/functions/v1/hello");
    assert!(!route.requires_auth);
}

/// Test: HTTP trigger POST route with auth required
#[test]
fn test_http_trigger_post_route_with_auth() {
    use crate::triggers::http::HttpTriggerRoute;

    let route = HttpTriggerRoute {
        function_name: "processData".to_string(),
        method:        "POST".to_string(),
        path:          "/functions/v1/process".to_string(),
        requires_auth: true,
    };

    assert_eq!(route.function_name, "processData");
    assert_eq!(route.method, "POST");
    assert!(route.requires_auth);
}

/// Test: HTTP trigger request body handling
#[test]
fn test_http_trigger_request_payload() {
    use crate::triggers::http::HttpTriggerPayload;

    let payload = HttpTriggerPayload {
        method:  "POST".to_string(),
        path:    "/functions/v1/users".to_string(),
        headers: serde_json::json!({
            "content-type": "application/json",
            "x-user-id": "123"
        }),
        query:   serde_json::json!({}),
        params:  serde_json::json!({
            "id": "user-123"
        }),
        body:    Some(serde_json::json!({
            "name": "Alice",
            "email": "alice@example.com"
        })),
    };

    assert_eq!(payload.method, "POST");
    assert_eq!(payload.path, "/functions/v1/users");
    assert!(payload.body.is_some());
    assert_eq!(payload.body.expect("body exists")["name"], "Alice");
}

/// Test: HTTP trigger path parameters extraction
#[test]
fn test_http_trigger_path_params() {
    use crate::triggers::http::HttpTriggerPayload;

    let payload = HttpTriggerPayload {
        method:  "GET".to_string(),
        path:    "/functions/v1/users/123".to_string(),
        headers: serde_json::json!({}),
        query:   serde_json::json!({}),
        params:  serde_json::json!({
            "id": "123"
        }),
        body:    None,
    };

    assert_eq!(payload.params["id"], "123");
}

/// Test: HTTP trigger response with custom status code
#[test]
fn test_http_trigger_response_custom_status() {
    use crate::triggers::http::HttpTriggerResponse;

    let response = HttpTriggerResponse {
        status:  201,
        headers: serde_json::json!({
            "x-custom-header": "value"
        }),
        body:    serde_json::json!({
            "id": "new-user-123",
            "created": true
        }),
    };

    assert_eq!(response.status, 201);
    assert_eq!(response.headers["x-custom-header"], "value");
    assert_eq!(response.body["id"], "new-user-123");
}

/// Test: HTTP trigger response with default status 200
#[test]
fn test_http_trigger_response_default_status() {
    use crate::triggers::http::HttpTriggerResponse;

    let response = HttpTriggerResponse {
        status:  200,
        headers: serde_json::json!({}),
        body:    serde_json::json!({"message": "OK"}),
    };

    assert_eq!(response.status, 200);
    assert_eq!(response.body["message"], "OK");
}

/// Test: HTTP trigger method parsing
#[test]
fn test_http_trigger_method_parsing() {
    use crate::triggers::http::HttpTriggerRoute;

    for method in &["GET", "POST", "PUT", "DELETE", "PATCH", "HEAD", "OPTIONS"] {
        let route = HttpTriggerRoute {
            function_name: "test".to_string(),
            method:        method.to_string(),
            path:          "/test".to_string(),
            requires_auth: false,
        };
        assert_eq!(route.method, *method);
    }
}

/// Test: HTTP trigger route matching
#[test]
fn test_http_trigger_route_matching() {
    use crate::triggers::http::{HttpTriggerMatcher, HttpTriggerRoute};

    let mut matcher = HttpTriggerMatcher::new();
    matcher.add(HttpTriggerRoute {
        function_name: "getUser".to_string(),
        method:        "GET".to_string(),
        path:          "/users/:id".to_string(),
        requires_auth: true,
    });

    matcher.add(HttpTriggerRoute {
        function_name: "createUser".to_string(),
        method:        "POST".to_string(),
        path:          "/users".to_string(),
        requires_auth: true,
    });

    // GET /users/:id should match
    let route = matcher.find("GET", "/users/123");
    assert!(route.is_some());
    assert_eq!(route.expect("route matched").function_name, "getUser");

    // POST /users should match
    let route = matcher.find("POST", "/users");
    assert!(route.is_some());
    assert_eq!(route.expect("route matched").function_name, "createUser");

    // GET /posts should not match
    let route = matcher.find("GET", "/posts");
    assert!(route.is_none());
}

/// Test: HTTP trigger query parameters
#[test]
fn test_http_trigger_query_parameters() {
    use crate::triggers::http::HttpTriggerPayload;

    let payload = HttpTriggerPayload {
        method:  "GET".to_string(),
        path:    "/functions/v1/search".to_string(),
        headers: serde_json::json!({}),
        query:   serde_json::json!({
            "q": "alice",
            "limit": 10
        }),
        params:  serde_json::json!({}),
        body:    None,
    };

    assert_eq!(payload.query["q"], "alice");
    assert_eq!(payload.query["limit"], 10);
}

/// Test: HTTP trigger event payload building
#[test]
fn test_http_trigger_event_payload() {
    use crate::triggers::http::HttpTriggerRoute;

    let route = HttpTriggerRoute {
        function_name: "handleRequest".to_string(),
        method:        "POST".to_string(),
        path:          "/functions/v1/webhook".to_string(),
        requires_auth: false,
    };

    let http_payload = serde_json::json!({
        "method": "POST",
        "path": "/functions/v1/webhook",
        "body": {"event": "user.created"}
    });

    let trigger_type = format!("http:{}:{}", route.method, route.path);
    assert_eq!(trigger_type, "http:POST:/functions/v1/webhook");

    // Verify event payload would include this trigger type
    let event = EventPayload {
        trigger_type,
        entity: "HttpRequest".to_string(),
        event_kind: "request".to_string(),
        data: http_payload,
        timestamp: chrono::Utc::now(),
    };

    assert_eq!(event.entity, "HttpRequest");
    assert_eq!(event.event_kind, "request");
}

/// Test: function definition creation
#[test]
fn test_function_definition_creation() {
    use crate::FunctionDefinition;

    let func = FunctionDefinition::new(
        "onUserCreated",
        "after:mutation:createUser",
        crate::RuntimeType::Deno,
    );
    assert_eq!(func.name, "onUserCreated");
    assert_eq!(func.trigger, "after:mutation:createUser");
    assert!(func.is_after_mutation());
    assert!(!func.is_cron());
}

/// Test: function definition trigger detection
#[test]
fn test_function_definition_trigger_detection() {
    use crate::{FunctionDefinition, RuntimeType};

    let after_mutation =
        FunctionDefinition::new("test", "after:mutation:createUser", RuntimeType::Deno);
    assert!(after_mutation.is_after_mutation());
    assert!(!after_mutation.is_before_mutation());

    let before_mutation =
        FunctionDefinition::new("test", "before:mutation:validateUser", RuntimeType::Deno);
    assert!(before_mutation.is_before_mutation());
    assert!(!before_mutation.is_after_mutation());

    let cron = FunctionDefinition::new("test", "cron:0 * * * *", RuntimeType::Deno);
    assert!(cron.is_cron());

    let http = FunctionDefinition::new("test", "http:GET:/hello", RuntimeType::Deno);
    assert!(http.is_http());

    let storage =
        FunctionDefinition::new("test", "after:storage:avatars:upload", RuntimeType::Deno);
    assert!(storage.is_after_storage());
}

/// Test: function definition effective timeout
#[test]
fn test_function_definition_effective_timeout() {
    use std::time::Duration;

    use crate::{FunctionDefinition, RuntimeType};

    let before_mutation =
        FunctionDefinition::new("test", "before:mutation:createUser", RuntimeType::Deno);
    assert_eq!(before_mutation.effective_timeout(), Duration::from_millis(500));

    let after_mutation =
        FunctionDefinition::new("test", "after:mutation:createUser", RuntimeType::Deno);
    assert_eq!(after_mutation.effective_timeout(), Duration::from_secs(5));

    let custom =
        FunctionDefinition::new("test", "http:GET:/hello", RuntimeType::Deno).with_timeout(1000);
    assert_eq!(custom.effective_timeout(), Duration::from_millis(1000));
}

/// Test: trigger registry loads function definitions
#[test]
fn test_trigger_registry_loads_definitions() {
    use crate::{FunctionDefinition, RuntimeType};

    let functions = [
        FunctionDefinition::new("onUserCreated", "after:mutation:createUser", RuntimeType::Deno),
        FunctionDefinition::new(
            "validateUserInput",
            "before:mutation:createUser",
            RuntimeType::Deno,
        ),
        FunctionDefinition::new("getUser", "http:GET:/users/:id", RuntimeType::Deno),
        FunctionDefinition::new("dailyReport", "cron:0 2 * * *", RuntimeType::Deno),
    ];

    assert_eq!(functions.len(), 4);
    assert_eq!(functions[0].name, "onUserCreated");
    assert!(functions[0].is_after_mutation());
    assert!(functions[1].is_before_mutation());
    assert!(functions[2].is_http());
    assert!(functions[3].is_cron());
}

/// Test: trigger registry validates trigger format
#[test]
fn test_trigger_registry_validates_format() {
    use crate::{FunctionDefinition, RuntimeType};

    // Valid triggers should parse
    let valid_triggers = vec![
        "after:mutation:createUser",
        "before:mutation:deleteUser",
        "after:storage:avatars:upload",
        "cron:0 * * * *",
        "http:GET:/users/:id",
        "http:POST:/data",
    ];

    for trigger in valid_triggers {
        let func = FunctionDefinition::new("test", trigger, RuntimeType::Deno);
        // Just check it created successfully
        assert_eq!(func.trigger, trigger);
    }
}

/// Test: trigger registry identifies multiple triggers of same type
#[test]
fn test_trigger_registry_multiple_same_type() {
    use crate::{FunctionDefinition, RuntimeType};

    let functions = [
        FunctionDefinition::new("onUserCreated", "after:mutation:createUser", RuntimeType::Deno),
        FunctionDefinition::new("onUserUpdated", "after:mutation:updateUser", RuntimeType::Deno),
        FunctionDefinition::new("onUserDeleted", "after:mutation:deleteUser", RuntimeType::Deno),
    ];

    assert_eq!(functions.iter().filter(|f| f.is_after_mutation()).count(), 3);
}

// ===== INTEGRATION TESTS =====
// Tests that verify multiple trigger types work together in realistic scenarios

/// Test: mutation with before:mutation validation hook
/// Scenario: before:mutation hook validates input, accepts valid, rejects invalid
#[test]
fn test_mutation_with_before_hook_validation() {
    use crate::{FunctionDefinition, RuntimeType};

    let validation_hook = FunctionDefinition::new(
        "validateUserInput",
        "before:mutation:createUser",
        RuntimeType::Deno,
    );

    // Simulate validation: payload passes through validation
    let _input = serde_json::json!({
        "name": "Alice",
        "email": "alice@example.com"
    });

    assert!(validation_hook.is_before_mutation());
    assert_eq!(validation_hook.name, "validateUserInput");

    // In integration: this hook would receive input, validate, return Proceed or Abort
    // For now, verify the hook is properly recognized as a before:mutation hook
    assert!(validation_hook.trigger.contains("before:mutation:createUser"));
}

/// Test: mutation with both before and after hooks firing
/// Scenario: before validates, after logs completion
#[test]
fn test_mutation_with_before_and_after_hooks() {
    use crate::{FunctionDefinition, RuntimeType};

    let before_hook =
        FunctionDefinition::new("validateCreate", "before:mutation:createUser", RuntimeType::Deno);
    let after_hook =
        FunctionDefinition::new("logCreated", "after:mutation:createUser", RuntimeType::Deno);

    assert!(before_hook.is_before_mutation());
    assert!(after_hook.is_after_mutation());
    assert_eq!(before_hook.name, "validateCreate");
    assert_eq!(after_hook.name, "logCreated");

    // Both hooks recognize the same mutation entity
    assert!(before_hook.trigger.contains("createUser"));
    assert!(after_hook.trigger.contains("createUser"));
}

/// Test: after:mutation and storage trigger cascade
/// Scenario: mutation triggers storage upload → storage trigger fires
#[test]
fn test_after_mutation_and_storage_trigger_cascade() {
    use crate::{FunctionDefinition, RuntimeType};

    let mutation_hook = FunctionDefinition::new(
        "onAvatarUpload",
        "after:mutation:updateUserAvatar",
        RuntimeType::Deno,
    );
    let storage_hook =
        FunctionDefinition::new("processAvatar", "after:storage:avatars:upload", RuntimeType::Deno);

    assert!(mutation_hook.is_after_mutation());
    assert!(storage_hook.is_after_storage());

    // Both hooks are properly recognized
    assert_eq!(mutation_hook.name, "onAvatarUpload");
    assert_eq!(storage_hook.name, "processAvatar");
}

/// Test: cron and http triggers coexist independently
/// Scenario: scheduled function and HTTP endpoint both work
#[test]
fn test_cron_and_http_trigger_coexist() {
    use crate::{FunctionDefinition, RuntimeType};

    let cron_job = FunctionDefinition::new("dailyReport", "cron:0 2 * * *", RuntimeType::Deno);
    let http_endpoint =
        FunctionDefinition::new("getMetrics", "http:GET:/metrics", RuntimeType::Deno);

    assert!(cron_job.is_cron());
    assert!(http_endpoint.is_http());

    // Both can coexist without conflict
    assert_ne!(cron_job.name, http_endpoint.name);
    assert_ne!(cron_job.trigger, http_endpoint.trigger);
}

/// Test: before:mutation timeout during cascade
/// Scenario: before:mutation hook times out → mutation aborted
#[test]
fn test_before_mutation_timeout_during_cascade() {
    use crate::{FunctionDefinition, RuntimeType};

    let before_hook =
        FunctionDefinition::new("slowValidation", "before:mutation:deleteUser", RuntimeType::Deno);

    // Effective timeout should be 500ms default for before:mutation hooks
    let effective_timeout = before_hook.effective_timeout();
    assert_eq!(effective_timeout.as_millis(), 500);

    // If timeout is exceeded, mutation should be aborted (fail-closed)
    assert!(before_hook.is_before_mutation());
}

/// Test: trigger registry startup with all trigger types
/// Scenario: load schema with all 5 trigger types → all initialized correctly
#[test]
fn test_trigger_registry_startup_with_all_types() {
    use crate::{FunctionDefinition, RuntimeType};

    let functions = [
        // after:mutation
        FunctionDefinition::new("onUserCreated", "after:mutation:createUser", RuntimeType::Deno),
        // before:mutation
        FunctionDefinition::new("validateUser", "before:mutation:createUser", RuntimeType::Deno),
        // after:storage
        FunctionDefinition::new("processFile", "after:storage:uploads:upload", RuntimeType::Deno),
        // cron
        FunctionDefinition::new("hourlySync", "cron:0 * * * *", RuntimeType::Deno),
        // http
        FunctionDefinition::new("apiHandler", "http:POST:/api/process", RuntimeType::Deno),
    ];

    // Verify all trigger types are recognized
    assert_eq!(functions.iter().filter(|f| f.is_after_mutation()).count(), 1);
    assert_eq!(functions.iter().filter(|f| f.is_before_mutation()).count(), 1);
    assert_eq!(functions.iter().filter(|f| f.is_after_storage()).count(), 1);
    assert_eq!(functions.iter().filter(|f| f.is_cron()).count(), 1);
    assert_eq!(functions.iter().filter(|f| f.is_http()).count(), 1);
}

/// Test: graceful shutdown with all trigger types
/// Scenario: start all triggers, shut down cleanly, no panic
#[test]
fn test_trigger_graceful_shutdown() {
    use crate::{FunctionDefinition, RuntimeType};

    let functions = [
        FunctionDefinition::new("onUserCreated", "after:mutation:createUser", RuntimeType::Deno),
        FunctionDefinition::new("validateUser", "before:mutation:createUser", RuntimeType::Deno),
        FunctionDefinition::new("hourlySync", "cron:0 * * * *", RuntimeType::Deno),
    ];

    // All functions should drop cleanly without panic at end of scope
    assert_eq!(functions.len(), 3);
}

/// Test: error recovery - function failure doesn't stop other triggers
/// Scenario: one function fails → triggers continue operating
#[test]
fn test_trigger_error_recovery() {
    use crate::{FunctionDefinition, RuntimeType};

    let functions = [
        FunctionDefinition::new("failingFunction", "after:mutation:deleteUser", RuntimeType::Deno),
        FunctionDefinition::new("workingFunction", "after:mutation:createUser", RuntimeType::Deno),
    ];

    // Both functions are properly registered despite potential failure in one
    assert_eq!(functions.len(), 2);
    assert!(functions[0].is_after_mutation());
    assert!(functions[1].is_after_mutation());

    // Error in one should not prevent the other from executing
    // This is verified at runtime via observer pipeline
}

/// Test: http trigger enforces auth context correctly
/// Scenario: HTTP endpoint enforces authentication requirements
#[test]
fn test_http_trigger_with_auth_context() {
    use crate::{FunctionDefinition, RuntimeType};

    let public_endpoint =
        FunctionDefinition::new("publicMetrics", "http:GET:/public/metrics", RuntimeType::Deno);
    let protected_endpoint =
        FunctionDefinition::new("adminPanel", "http:GET:/admin/dashboard", RuntimeType::Deno);

    assert!(public_endpoint.is_http());
    assert!(protected_endpoint.is_http());

    // Both endpoints are registered as HTTP triggers
    // In runtime integration: routes would be mounted with appropriate auth middleware
}

/// Test: cron trigger with storage cascade
/// Scenario: cron function triggers storage operation → storage trigger fires
#[test]
fn test_cron_with_storage_cascade() {
    use crate::{FunctionDefinition, RuntimeType};

    let cron_job = FunctionDefinition::new("backupDaily", "cron:0 3 * * *", RuntimeType::Deno);
    let storage_trigger =
        FunctionDefinition::new("archiveBackup", "after:storage:backups:upload", RuntimeType::Deno);

    assert!(cron_job.is_cron());
    assert!(storage_trigger.is_after_storage());

    // Cron job can trigger storage operations, which in turn fire storage triggers
    assert_ne!(cron_job.name, storage_trigger.name);
}

// ============================================================================
// Cycle 5: CronScheduler and TriggerRegistry cron support (GREEN — infrastructure)
// ============================================================================

/// Test: `TriggerRegistry` loads cron trigger definitions
#[test]
fn test_registry_loads_cron_triggers() {
    use crate::{FunctionDefinition, RuntimeType, triggers::registry::TriggerRegistry};

    let functions = vec![
        FunctionDefinition::new("dailyCleanup", "cron:0 2 * * *", RuntimeType::Deno),
        FunctionDefinition::new("hourlySync", "cron:0 * * * *", RuntimeType::Deno),
        // Mix with another trigger type to verify coexistence
        FunctionDefinition::new("onUserCreated", "after:mutation:User:insert", RuntimeType::Deno),
    ];

    let registry = TriggerRegistry::load_from_definitions(&functions).expect("load registry");

    assert_eq!(registry.cron_trigger_count(), 2, "should have 2 cron triggers");
    assert_eq!(registry.cron_triggers[0].function_name, "dailyCleanup");
    assert_eq!(registry.cron_triggers[0].schedule, "0 2 * * *");
    assert_eq!(registry.cron_triggers[1].function_name, "hourlySync");
    assert_eq!(registry.cron_triggers[1].schedule, "0 * * * *");
}

/// Test: `TriggerRegistry.cron_scheduler()` returns Some when triggers exist
#[test]
fn test_registry_cron_scheduler_returns_some_when_triggers_exist() {
    use crate::{FunctionDefinition, RuntimeType, triggers::registry::TriggerRegistry};

    let functions = vec![FunctionDefinition::new(
        "dailyJob",
        "cron:0 3 * * *",
        RuntimeType::Deno,
    )];
    let registry = TriggerRegistry::load_from_definitions(&functions).expect("load registry");

    let scheduler = registry.cron_scheduler();
    assert!(scheduler.is_some(), "should return a scheduler when cron triggers exist");
    assert_eq!(
        scheduler
            .expect("cron_scheduler should return Some when triggers exist")
            .trigger_count(),
        1
    );
}

/// Test: `TriggerRegistry.cron_scheduler()` returns None when no cron triggers exist
#[test]
fn test_registry_cron_scheduler_returns_none_when_no_triggers() {
    use crate::{FunctionDefinition, RuntimeType, triggers::registry::TriggerRegistry};

    let functions = vec![
        FunctionDefinition::new("onUserCreated", "after:mutation:User:insert", RuntimeType::Deno),
        FunctionDefinition::new("validate", "before:mutation:createUser", RuntimeType::Deno),
    ];
    let registry = TriggerRegistry::load_from_definitions(&functions).expect("load registry");

    assert!(
        registry.cron_scheduler().is_none(),
        "no cron triggers → cron_scheduler() should return None (fast path)"
    );
}

/// Test: `CronScheduler` can be constructed with triggers
#[test]
fn test_cron_scheduler_new_creates_with_triggers() {
    use crate::triggers::cron::{CronScheduler, CronTrigger};

    let triggers = vec![
        CronTrigger {
            function_name: "dailyCleanup".to_string(),
            schedule:      "0 2 * * *".to_string(),
            timezone:      "UTC".to_string(),
        },
        CronTrigger {
            function_name: "hourlySync".to_string(),
            schedule:      "0 * * * *".to_string(),
            timezone:      "UTC".to_string(),
        },
    ];

    let scheduler = CronScheduler::new(triggers);
    assert_eq!(scheduler.trigger_count(), 2);
}

/// Test: `CronScheduler` can be started and returns a handle
#[tokio::test]
async fn test_cron_scheduler_starts_and_provides_handle() {
    use std::{collections::HashMap, sync::Arc};

    use crate::{
        observer::FunctionObserver,
        triggers::cron::{CronScheduler, CronTrigger},
    };

    let triggers = vec![CronTrigger {
        function_name: "dailyCleanup".to_string(),
        schedule:      "0 2 * * *".to_string(), // 2 AM — won't fire during test
        timezone:      "UTC".to_string(),
    }];

    let observer = Arc::new(FunctionObserver::new());
    let handle = CronScheduler::new(triggers).start(observer, HashMap::new());

    // Immediately stop so we don't leave a dangling task
    handle.stop();
}

/// Test: `CronSchedulerHandle` stops gracefully without panic
#[tokio::test]
async fn test_cron_scheduler_handle_stops_gracefully() {
    use std::{collections::HashMap, sync::Arc};

    use crate::{
        observer::FunctionObserver,
        triggers::cron::{CronScheduler, CronTrigger},
    };

    let triggers = vec![CronTrigger {
        function_name: "neverFires".to_string(),
        schedule:      "0 0 31 2 *".to_string(), // Feb 31 — never matches
        timezone:      "UTC".to_string(),
    }];

    let observer = Arc::new(FunctionObserver::new());
    let handle = CronScheduler::new(triggers).start(observer, HashMap::new());

    // stop() must complete without panic
    handle.stop();

    // Yield to give the spawned task a chance to process the shutdown signal
    tokio::task::yield_now().await;
}

/// Test: `CronScheduler` with no triggers starts and stops cleanly
#[tokio::test]
async fn test_cron_scheduler_empty_starts_cleanly() {
    use std::{collections::HashMap, sync::Arc};

    use crate::{observer::FunctionObserver, triggers::cron::CronScheduler};

    let scheduler = CronScheduler::new(vec![]);
    assert_eq!(scheduler.trigger_count(), 0);

    let observer = Arc::new(FunctionObserver::new());
    let handle = scheduler.start(observer, HashMap::new());
    handle.stop();
}