camel-test 0.7.6

Testing utilities for rust-camel
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
//! Integration tests for Rhai script step side effects.
//!
//! These tests verify that Rhai scripts can read AND write Exchange headers,
//! properties, and body, with changes persisting to downstream steps.

use std::time::Duration;

use camel_api::{Exchange, Message, Value};
use camel_builder::{RouteBuilder, StepAccumulator};
use camel_core::LanguageRegistryError;
use camel_language_rhai::RhaiLanguage;
use camel_test::CamelTestContext;
use tower::ServiceExt;

fn ensure_rhai_registered(ctx: &mut camel_core::CamelContext) {
    match ctx.register_language("rhai", Box::new(RhaiLanguage::new())) {
        Ok(()) | Err(LanguageRegistryError::AlreadyRegistered { .. }) => {}
    }
}

// ---------------------------------------------------------------------------
// Test 0: Script error prevents downstream delivery (CRITICAL)
// ---------------------------------------------------------------------------

#[tokio::test]
async fn script_error_prevents_downstream_delivery() {
    let h = CamelTestContext::builder()
        .with_direct()
        .with_mock()
        .build()
        .await;
    let mut guard = h.ctx().lock().await;
    ensure_rhai_registered(&mut guard);
    drop(guard);

    let route = RouteBuilder::from("direct:input-err")
        .route_id("test-script-error")
        .script("rhai", r#"headers["x"] = "modified"; throw "boom""#)
        .to("mock:error-output")
        .build()
        .unwrap();

    h.add_route(route).await.unwrap();
    h.start().await;
    tokio::time::sleep(Duration::from_millis(50)).await;

    let exchange = Exchange::new(Message::new("test"));
    // send_to_direct will return an Err since the script throws - ignore the error
    let _ = send_to_direct_ignore_error(&h, "direct:input-err", exchange).await;

    tokio::time::sleep(Duration::from_millis(100)).await;
    h.stop().await;

    // Mock should NOT have received any exchanges (script threw before reaching mock)
    // Get the endpoint - it may not exist if nothing was sent to it
    if let Some(endpoint) = h.mock().get_endpoint("error-output") {
        let exchanges = endpoint.get_received_exchanges().await;
        assert_eq!(
            exchanges.len(),
            0,
            "Exchange should not reach mock when script throws"
        );
    }
    // If endpoint doesn't exist, that's also fine - means nothing was sent to it
}

// ---------------------------------------------------------------------------
// Test 1: Script sets a header
// ---------------------------------------------------------------------------

#[tokio::test]
async fn script_sets_header() {
    let h = CamelTestContext::builder()
        .with_direct()
        .with_mock()
        .build()
        .await;
    let mut guard = h.ctx().lock().await;
    ensure_rhai_registered(&mut guard);
    drop(guard);

    let route = RouteBuilder::from("direct:input")
        .route_id("test-script-header")
        .script("rhai", r#"headers["result"] = "processed""#)
        .to("mock:header-output")
        .build()
        .unwrap();

    h.add_route(route).await.unwrap();
    h.start().await;

    // Give the route a moment to start
    tokio::time::sleep(Duration::from_millis(50)).await;

    // Send exchange with body "hello"
    let exchange = Exchange::new(Message::new("hello"));
    send_to_direct(&h, "direct:input", exchange).await;

    h.stop().await;

    // Assert: mock received 1 exchange with header result == "processed"
    let endpoint = h.mock().get_endpoint("header-output").unwrap();
    endpoint.assert_exchange_count(1).await;

    let exchanges = endpoint.get_received_exchanges().await;
    let ex = &exchanges[0];
    assert_eq!(
        ex.input.header("result"),
        Some(&Value::String("processed".into())),
        "Header 'result' should be 'processed'"
    );
}

// ---------------------------------------------------------------------------
// Test 2: Script reads and transforms body
// ---------------------------------------------------------------------------

#[tokio::test]
async fn script_reads_and_transforms_body() {
    let h = CamelTestContext::builder()
        .with_direct()
        .with_mock()
        .build()
        .await;
    let mut guard = h.ctx().lock().await;
    ensure_rhai_registered(&mut guard);
    drop(guard);

    let route = RouteBuilder::from("direct:input")
        .route_id("test-script-body")
        .script("rhai", r#"body = body + "_done""#)
        .to("mock:body-output")
        .build()
        .unwrap();

    h.add_route(route).await.unwrap();
    h.start().await;

    tokio::time::sleep(Duration::from_millis(50)).await;

    // Send exchange with body "hello"
    let exchange = Exchange::new(Message::new("hello"));
    send_to_direct(&h, "direct:input", exchange).await;

    h.stop().await;

    // Assert: mock received 1 exchange with body "hello_done"
    let endpoint = h.mock().get_endpoint("body-output").unwrap();
    endpoint.assert_exchange_count(1).await;

    let exchanges = endpoint.get_received_exchanges().await;
    let ex = &exchanges[0];
    assert_eq!(
        ex.input.body.as_text(),
        Some("hello_done"),
        "Body should be 'hello_done'"
    );
}

// ---------------------------------------------------------------------------
// Test 3: Script sets multiple headers
// ---------------------------------------------------------------------------

#[tokio::test]
async fn script_sets_multiple_headers() {
    let h = CamelTestContext::builder()
        .with_direct()
        .with_mock()
        .build()
        .await;
    let mut guard = h.ctx().lock().await;
    ensure_rhai_registered(&mut guard);
    drop(guard);

    let route = RouteBuilder::from("direct:input")
        .route_id("test-script-multi-headers")
        .script("rhai", r#"headers["a"] = "x"; headers["b"] = "y""#)
        .to("mock:multi-header-output")
        .build()
        .unwrap();

    h.add_route(route).await.unwrap();
    h.start().await;

    tokio::time::sleep(Duration::from_millis(50)).await;

    // Send exchange with body "test"
    let exchange = Exchange::new(Message::new("test"));
    send_to_direct(&h, "direct:input", exchange).await;

    h.stop().await;

    // Assert: mock received 1 exchange with header a == "x" AND header b == "y"
    let endpoint = h.mock().get_endpoint("multi-header-output").unwrap();
    endpoint.assert_exchange_count(1).await;

    let exchanges = endpoint.get_received_exchanges().await;
    let ex = &exchanges[0];
    assert_eq!(
        ex.input.header("a"),
        Some(&Value::String("x".into())),
        "Header 'a' should be 'x'"
    );
    assert_eq!(
        ex.input.header("b"),
        Some(&Value::String("y".into())),
        "Header 'b' should be 'y'"
    );
}

// ---------------------------------------------------------------------------
// Test 4: Script reads existing header
// ---------------------------------------------------------------------------

#[tokio::test]
async fn script_reads_existing_header() {
    let h = CamelTestContext::builder()
        .with_direct()
        .with_mock()
        .build()
        .await;
    let mut guard = h.ctx().lock().await;
    ensure_rhai_registered(&mut guard);
    drop(guard);

    let route = RouteBuilder::from("direct:input")
        .route_id("test-script-read-header")
        .script("rhai", r#"headers["echo"] = headers["input"]"#)
        .to("mock:read-header-output")
        .build()
        .unwrap();

    h.add_route(route).await.unwrap();
    h.start().await;

    tokio::time::sleep(Duration::from_millis(50)).await;

    // Send exchange with header input = "original" and any body
    let mut msg = Message::new("test body");
    msg.set_header("input", Value::String("original".into()));
    let exchange = Exchange::new(msg);
    send_to_direct(&h, "direct:input", exchange).await;

    h.stop().await;

    // Assert: mock received 1 exchange with header echo == "original"
    let endpoint = h.mock().get_endpoint("read-header-output").unwrap();
    endpoint.assert_exchange_count(1).await;

    let exchanges = endpoint.get_received_exchanges().await;
    let ex = &exchanges[0];
    assert_eq!(
        ex.input.header("echo"),
        Some(&Value::String("original".into())),
        "Header 'echo' should be 'original'"
    );
}

// ---------------------------------------------------------------------------
// Test 5: Script sets property
// ---------------------------------------------------------------------------

#[tokio::test]
async fn script_sets_property() {
    let h = CamelTestContext::builder()
        .with_direct()
        .with_mock()
        .build()
        .await;
    let mut guard = h.ctx().lock().await;
    ensure_rhai_registered(&mut guard);
    drop(guard);

    let route = RouteBuilder::from("direct:input")
        .route_id("test-script-property")
        .script("rhai", r#"properties["flag"] = true"#)
        .to("mock:property-output")
        .build()
        .unwrap();

    h.add_route(route).await.unwrap();
    h.start().await;

    tokio::time::sleep(Duration::from_millis(50)).await;

    // Send exchange with body "test"
    let exchange = Exchange::new(Message::new("test"));
    send_to_direct(&h, "direct:input", exchange).await;

    h.stop().await;

    // Assert: mock received 1 exchange with property flag == true
    let endpoint = h.mock().get_endpoint("property-output").unwrap();
    endpoint.assert_exchange_count(1).await;

    let exchanges = endpoint.get_received_exchanges().await;
    let ex = &exchanges[0];
    assert_eq!(
        ex.properties.get("flag"),
        Some(&Value::Bool(true)),
        "Property 'flag' should be true"
    );
}

// ---------------------------------------------------------------------------
// Test 6: Unregistered language fails at route add (IMPORTANT #2)
// ---------------------------------------------------------------------------

#[tokio::test]
async fn script_unregistered_language_fails_at_route_add() {
    let h = CamelTestContext::builder()
        .with_direct()
        .with_mock()
        .build()
        .await;
    // Use a language name that is guaranteed not to be registered
    let route = RouteBuilder::from("direct:input-noreg")
        .route_id("test-script-noreg")
        .script("nonexistent-lang", r#"headers["x"] = "y""#)
        .to("mock:noreg-output")
        .build()
        .unwrap();

    let result = h.add_route(route).await;
    assert!(
        result.is_err(),
        "Expected error when language not registered"
    );
    let err_msg = result.unwrap_err().to_string();
    assert!(
        err_msg.contains("nonexistent-lang"),
        "Error should mention the language name, got: {}",
        err_msg
    );
}

// ---------------------------------------------------------------------------
// Test 7: Empty body handled gracefully (IMPORTANT #3)
// ---------------------------------------------------------------------------

#[tokio::test]
async fn script_empty_body_handled() {
    let h = CamelTestContext::builder()
        .with_direct()
        .with_mock()
        .build()
        .await;
    let mut guard = h.ctx().lock().await;
    ensure_rhai_registered(&mut guard);
    drop(guard);

    let route = RouteBuilder::from("direct:input")
        .route_id("test-script-empty-body")
        .script("rhai", r#"headers["processed"] = "yes""#)
        .to("mock:empty-body-output")
        .build()
        .unwrap();

    h.add_route(route).await.unwrap();
    h.start().await;

    tokio::time::sleep(Duration::from_millis(50)).await;

    // Send exchange with empty body
    let exchange = Exchange::new(Message::new(""));
    send_to_direct(&h, "direct:input", exchange).await;

    h.stop().await;

    // Assert: mock received 1 exchange with header processed == "yes" and body is empty
    let endpoint = h.mock().get_endpoint("empty-body-output").unwrap();
    endpoint.assert_exchange_count(1).await;

    let exchanges = endpoint.get_received_exchanges().await;
    let ex = &exchanges[0];
    assert_eq!(
        ex.input.header("processed"),
        Some(&Value::String("yes".into())),
        "Header 'processed' should be 'yes'"
    );
    assert_eq!(
        ex.input.body.as_text(),
        Some(""),
        "Body should be empty string"
    );
}

// ---------------------------------------------------------------------------
// Helper: Send exchange to a direct endpoint
// ---------------------------------------------------------------------------

/// Helper function to send an exchange to a direct endpoint.
async fn send_to_direct(h: &CamelTestContext, endpoint_uri: &str, exchange: Exchange) {
    let producer = {
        let ctx = h.ctx().lock().await;
        let producer_ctx = ctx.producer_context();
        let registry = ctx.registry();
        let component = registry
            .get("direct")
            .expect("direct component not registered");
        let endpoint = component
            .create_endpoint(endpoint_uri, &*ctx)
            .expect("failed to create direct endpoint");
        endpoint
            .create_producer(&producer_ctx)
            .expect("failed to create direct producer")
    };

    producer
        .oneshot(exchange)
        .await
        .expect("failed to send exchange to direct endpoint");
}

/// Helper function to send an exchange to a direct endpoint, ignoring errors.
/// Used for tests where the script is expected to throw.
async fn send_to_direct_ignore_error(h: &CamelTestContext, endpoint_uri: &str, exchange: Exchange) {
    let producer = {
        let ctx = h.ctx().lock().await;
        let producer_ctx = ctx.producer_context();
        let registry = ctx.registry();
        let component = registry
            .get("direct")
            .expect("direct component not registered");
        let endpoint = component
            .create_endpoint(endpoint_uri, &*ctx)
            .expect("failed to create direct endpoint");
        endpoint
            .create_producer(&producer_ctx)
            .expect("failed to create direct producer")
    };

    let _ = producer.oneshot(exchange).await;
}