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
#![allow(clippy::unwrap_used, clippy::panic)] // Reason: test code, panics acceptable
use super::*;

#[test]
fn test_event_kind_as_str() {
    assert_eq!(EventKind::Insert.as_str(), "insert");
    assert_eq!(EventKind::Update.as_str(), "update");
    assert_eq!(EventKind::Delete.as_str(), "delete");
}

#[test]
fn test_after_mutation_trigger_matches() {
    let trigger = AfterMutationTrigger {
        function_name: "onUserCreated".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Insert),
    };

    assert!(trigger.matches("User", EventKind::Insert));
    assert!(!trigger.matches("User", EventKind::Update));
    assert!(!trigger.matches("Post", EventKind::Insert));
}

#[test]
fn test_after_mutation_trigger_matches_all_kinds() {
    let trigger = AfterMutationTrigger {
        function_name: "onUserChanged".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  None,
    };

    assert!(trigger.matches("User", EventKind::Insert));
    assert!(trigger.matches("User", EventKind::Update));
    assert!(trigger.matches("User", EventKind::Delete));
    assert!(!trigger.matches("Post", EventKind::Insert));
}

#[test]
fn test_after_mutation_trigger_builds_payload() {
    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["event_kind"], "insert");
    assert_eq!(payload.data["old"], serde_json::Value::Null);
    assert!(payload.data["new"].is_object());
}

#[test]
fn test_before_mutation_trigger_matches() {
    let trigger = BeforeMutationTrigger {
        function_name: "validateUserInput".to_string(),
        mutation_name: "createUser".to_string(),
    };

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

#[test]
fn test_trigger_matcher_empty() {
    let matcher = TriggerMatcher::new();
    let results = matcher.find("User", EventKind::Insert);
    assert!(results.is_empty());
}

#[test]
fn test_trigger_matcher_specific_event_kind() {
    let mut matcher = TriggerMatcher::new();
    let trigger = AfterMutationTrigger {
        function_name: "onUserCreated".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  Some(EventKind::Insert),
    };

    matcher.add(trigger);
    let results = matcher.find("User", EventKind::Insert);
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].function_name, "onUserCreated");

    // Should not match other event kinds
    let results = matcher.find("User", EventKind::Update);
    assert!(results.is_empty());
}

#[test]
fn test_trigger_matcher_all_kinds() {
    let mut matcher = TriggerMatcher::new();
    let trigger = AfterMutationTrigger {
        function_name: "onUserChanged".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  None,
    };

    matcher.add(trigger);
    assert_eq!(matcher.find("User", EventKind::Insert).len(), 1);
    assert_eq!(matcher.find("User", EventKind::Update).len(), 1);
    assert_eq!(matcher.find("User", EventKind::Delete).len(), 1);
}

#[test]
fn test_trigger_matcher_mixed_specific_and_all() {
    let mut matcher = TriggerMatcher::new();

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

    // Add all-kinds trigger
    matcher.add(AfterMutationTrigger {
        function_name: "onUserChanged".to_string(),
        entity_type:   "User".to_string(),
        event_filter:  None,
    });

    // Insert should return both
    let results = matcher.find("User", EventKind::Insert);
    assert_eq!(results.len(), 2);

    // Update should return only all-kinds
    let results = matcher.find("User", EventKind::Update);
    assert_eq!(results.len(), 1);
    assert_eq!(results[0].function_name, "onUserChanged");
}

#[test]
fn test_trigger_matcher_multiple_entities() {
    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: "onPostCreated".to_string(),
        entity_type:   "Post".to_string(),
        event_filter:  Some(EventKind::Insert),
    });

    let user_results = matcher.find("User", EventKind::Insert);
    assert_eq!(user_results.len(), 1);
    assert_eq!(user_results[0].function_name, "onUserCreated");

    let post_results = matcher.find("Post", EventKind::Insert);
    assert_eq!(post_results.len(), 1);
    assert_eq!(post_results[0].function_name, "onPostCreated");
}

#[test]
fn test_trigger_matcher_no_cross_entity_match() {
    let mut matcher = TriggerMatcher::new();

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

    let post_results = matcher.find("Post", EventKind::Insert);
    assert!(post_results.is_empty());
}

// ── BeforeMutationChain::execute() tests ────────────────────────────────

#[cfg(feature = "runtime-deno")]
#[tokio::test]
async fn test_before_mutation_chain_execute_empty_chain_proceeds() {
    use std::collections::HashMap;

    use crate::{FunctionModule, FunctionObserver, ResourceLimits, host::NoopHostContext};

    // Empty chain: no triggers → Proceed with original input
    let chain = BeforeMutationChain { triggers: vec![] };
    let observer = FunctionObserver::new();
    let modules: HashMap<String, FunctionModule> = HashMap::new();
    let input = serde_json::json!({ "name": "Alice" });

    let event = crate::types::EventPayload {
        trigger_type: "test".to_string(),
        entity:       "createUser".to_string(),
        event_kind:   "before".to_string(),
        data:         input.clone(),
        timestamp:    chrono::Utc::now(),
    };

    let result = chain
        .execute(
            input.clone(),
            &modules,
            &observer,
            &NoopHostContext::new(event),
            ResourceLimits::default(),
        )
        .await
        .expect("execute");

    match result {
        BeforeMutationResult::Proceed(v) => assert_eq!(v, input),
        BeforeMutationResult::Abort(msg) => panic!("Expected Proceed, got Abort: {msg}"),
    }
}

#[cfg(feature = "runtime-deno")]
#[tokio::test]
async fn test_before_mutation_chain_execute_passthrough_proceeds() {
    use std::collections::HashMap;

    use crate::{
        FunctionModule, FunctionObserver, ResourceLimits, RuntimeType,
        host::NoopHostContext,
        runtime::deno::{DenoConfig, DenoRuntime},
    };

    // Function that returns the event as-is → Proceed with original input
    let source = "export default async (event) => event;".to_string();
    let module = FunctionModule::from_source("validateUser".to_string(), source, RuntimeType::Deno);

    let mut observer = FunctionObserver::new();
    let runtime = DenoRuntime::new(&DenoConfig::default()).unwrap();
    observer.register_runtime(RuntimeType::Deno, runtime);

    let mut modules: HashMap<String, FunctionModule> = HashMap::new();
    modules.insert("validateUser".to_string(), module);

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

    let input = serde_json::json!({ "name": "Alice" });
    let event = crate::types::EventPayload {
        trigger_type: "before:mutation:createUser".to_string(),
        entity:       "createUser".to_string(),
        event_kind:   "before".to_string(),
        data:         input.clone(),
        timestamp:    chrono::Utc::now(),
    };

    let result = chain
        .execute(
            input.clone(),
            &modules,
            &observer,
            &NoopHostContext::new(event),
            ResourceLimits::default(),
        )
        .await
        .expect("execute");

    // Function returns the event data (which is the input), no "abort" key → Proceed
    match result {
        BeforeMutationResult::Proceed(_) => {},
        BeforeMutationResult::Abort(msg) => panic!("Expected Proceed, got Abort: {msg}"),
    }
}

#[cfg(feature = "runtime-deno")]
#[tokio::test]
async fn test_before_mutation_chain_execute_abort() {
    use std::collections::HashMap;

    use crate::{
        FunctionModule, FunctionObserver, ResourceLimits, RuntimeType,
        host::NoopHostContext,
        runtime::deno::{DenoConfig, DenoRuntime},
    };

    // Function that returns {"abort": "name required"}
    let source = r#"export default async (event) => ({ abort: "name required" });"#.to_string();
    let module = FunctionModule::from_source("validateUser".to_string(), source, RuntimeType::Deno);

    let mut observer = FunctionObserver::new();
    let runtime = DenoRuntime::new(&DenoConfig::default()).unwrap();
    observer.register_runtime(RuntimeType::Deno, runtime);

    let mut modules: HashMap<String, FunctionModule> = HashMap::new();
    modules.insert("validateUser".to_string(), module);

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

    let input = serde_json::json!({ "name": "" });
    let event = crate::types::EventPayload {
        trigger_type: "before:mutation:createUser".to_string(),
        entity:       "createUser".to_string(),
        event_kind:   "before".to_string(),
        data:         input.clone(),
        timestamp:    chrono::Utc::now(),
    };

    let result = chain
        .execute(
            input,
            &modules,
            &observer,
            &NoopHostContext::new(event),
            ResourceLimits::default(),
        )
        .await
        .expect("execute");

    match result {
        BeforeMutationResult::Abort(msg) => assert_eq!(msg, "name required"),
        BeforeMutationResult::Proceed(_) => panic!("Expected Abort"),
    }
}

#[cfg(feature = "runtime-deno")]
#[tokio::test]
async fn test_before_mutation_chain_execute_modify_input() {
    use std::collections::HashMap;

    use crate::{
        FunctionModule, FunctionObserver, ResourceLimits, RuntimeType,
        host::NoopHostContext,
        runtime::deno::{DenoConfig, DenoRuntime},
    };

    // Function that uppercases the name and returns {"input": {modified}}
    let source = r"
export default async (event) => ({
  input: { ...event, name: event.name.toUpperCase() }
});
"
    .to_string();
    let module =
        FunctionModule::from_source("transformUser".to_string(), source, RuntimeType::Deno);

    let mut observer = FunctionObserver::new();
    let runtime = DenoRuntime::new(&DenoConfig::default()).unwrap();
    observer.register_runtime(RuntimeType::Deno, runtime);

    let mut modules: HashMap<String, FunctionModule> = HashMap::new();
    modules.insert("transformUser".to_string(), module);

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

    let input = serde_json::json!({ "name": "alice" });
    let event = crate::types::EventPayload {
        trigger_type: "before:mutation:createUser".to_string(),
        entity:       "createUser".to_string(),
        event_kind:   "before".to_string(),
        data:         input.clone(),
        timestamp:    chrono::Utc::now(),
    };

    let result = chain
        .execute(
            input,
            &modules,
            &observer,
            &NoopHostContext::new(event),
            ResourceLimits::default(),
        )
        .await
        .expect("execute");

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

// NOTE: The sequential (multi-trigger) chain test is verified at the unit level here
// using a mock observer, and the end-to-end behaviour is covered by Cycle 7 E2E tests.
#[test]
fn test_before_mutation_chain_execute_sequential_chain_structure() {
    // Verify that a chain with two triggers is built correctly and both triggers
    // are present in declaration order. The actual execution of sequential chains
    // is tested via E2E integration tests (Cycle 7) using the full Deno runtime.
    let chain = BeforeMutationChain {
        triggers: vec![
            BeforeMutationTrigger {
                function_name: "step1".to_string(),
                mutation_name: "createUser".to_string(),
            },
            BeforeMutationTrigger {
                function_name: "step2".to_string(),
                mutation_name: "createUser".to_string(),
            },
        ],
    };

    assert_eq!(chain.triggers.len(), 2);
    assert_eq!(chain.triggers[0].function_name, "step1");
    assert_eq!(chain.triggers[1].function_name, "step2");
}

#[cfg(feature = "runtime-deno")]
#[tokio::test]
async fn test_before_mutation_chain_execute_missing_module_returns_error() {
    use std::collections::HashMap;

    use crate::{FunctionModule, FunctionObserver, ResourceLimits, host::NoopHostContext};

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

    let observer = FunctionObserver::new();
    let modules: HashMap<String, FunctionModule> = HashMap::new(); // empty

    let input = serde_json::json!({ "name": "Alice" });
    let event = crate::types::EventPayload {
        trigger_type: "before:mutation:createUser".to_string(),
        entity:       "createUser".to_string(),
        event_kind:   "before".to_string(),
        data:         input.clone(),
        timestamp:    chrono::Utc::now(),
    };

    let result = chain
        .execute(
            input,
            &modules,
            &observer,
            &NoopHostContext::new(event),
            ResourceLimits::default(),
        )
        .await;

    assert!(result.is_err(), "Expected error for missing module");
}