rift-http-proxy 0.3.0

Rift: high-performance HTTP chaos engineering proxy with Lua/Rhai/JavaScript scripting for fault injection.
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
//! Integration tests for Rift extensions (`_rift` namespace features)
//!
//! These tests verify that the `_rift` configuration extensions work correctly
//! for flow state, scripting, and fault injection.

use reqwest::Client;
use serde_json::json;
use std::time::{Duration, Instant};
use tokio::time::sleep;

const ADMIN_URL: &str = "http://127.0.0.1";
const TEST_TIMEOUT: Duration = Duration::from_secs(30);

/// Helper to get a free port for testing
fn get_test_ports() -> (u16, u16) {
    // Use high ports to avoid conflicts
    use std::sync::atomic::{AtomicU16, Ordering};
    static PORT_COUNTER: AtomicU16 = AtomicU16::new(18000);
    let admin = PORT_COUNTER.fetch_add(2, Ordering::SeqCst);
    let imposter = admin + 1;
    (admin, imposter)
}

/// Start a Rift server for testing
async fn start_rift_server(admin_port: u16) -> tokio::process::Child {
    let child = tokio::process::Command::new("cargo")
        .args([
            "run",
            "--package",
            "rift-http-proxy",
            "--",
            "--port",
            &admin_port.to_string(),
            "--allow-injection",
        ])
        .stdout(std::process::Stdio::null())
        .stderr(std::process::Stdio::null())
        .spawn()
        .expect("Failed to start Rift server");

    // Wait for server to be ready
    let client = Client::new();
    for _ in 0..50 {
        if client
            .get(format!("{ADMIN_URL}:{admin_port}/"))
            .timeout(Duration::from_millis(200))
            .send()
            .await
            .is_ok()
        {
            return child;
        }
        sleep(Duration::from_millis(100)).await;
    }
    panic!("Rift server failed to start within timeout");
}

/// Create an imposter via the admin API
async fn create_imposter(client: &Client, admin_port: u16, config: serde_json::Value) -> u16 {
    let response = client
        .post(format!("{ADMIN_URL}:{admin_port}/imposters"))
        .json(&config)
        .send()
        .await
        .expect("Failed to create imposter");

    assert!(
        response.status().is_success(),
        "Failed to create imposter: {}",
        response.text().await.unwrap_or_default()
    );

    let body: serde_json::Value = response.json().await.expect("Failed to parse response");
    body["port"].as_u64().expect("Missing port in response") as u16
}

/// Delete all imposters
async fn clear_imposters(client: &Client, admin_port: u16) {
    let _ = client
        .delete(format!("{ADMIN_URL}:{admin_port}/imposters"))
        .send()
        .await;
}

// =============================================================================
// Flow State Integration Tests
// =============================================================================

#[tokio::test]
#[ignore = "requires running server"]
async fn test_rift_flow_state_inmemory_basic() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with flow state and inject script that uses state
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "_rift": {
            "flowState": {
                "backend": "inmemory",
                "ttlSeconds": 300
            }
        },
        "stubs": [{
            "predicates": [],
            "responses": [{
                "inject": "function(request, state) { state.counter = (state.counter || 0) + 1; return { statusCode: 200, body: 'Count: ' + state.counter }; }"
            }]
        }]
    });

    create_imposter(&client, admin_port, config).await;

    // Make multiple requests and verify state is maintained
    for i in 1..=3 {
        let response = client
            .get(format!("{ADMIN_URL}:{imposter_port}/test"))
            .send()
            .await
            .expect("Request failed");

        assert_eq!(response.status(), 200);
        let body = response.text().await.unwrap();
        assert_eq!(body, format!("Count: {i}"));
    }

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}

#[tokio::test]
#[ignore = "requires running server"]
async fn test_rift_flow_state_persistence_across_requests() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with flow state that stores user data
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "_rift": {
            "flowState": {
                "backend": "inmemory"
            }
        },
        "stubs": [
            {
                "predicates": [{"equals": {"method": "POST", "path": "/store"}}],
                "responses": [{
                    "inject": "function(request, state) { var data = JSON.parse(request.body); state.stored = data.value; return { statusCode: 201, body: 'Stored' }; }"
                }]
            },
            {
                "predicates": [{"equals": {"method": "GET", "path": "/retrieve"}}],
                "responses": [{
                    "inject": "function(request, state) { return { statusCode: 200, body: state.stored || 'empty' }; }"
                }]
            }
        ]
    });

    create_imposter(&client, admin_port, config).await;

    // First retrieve - should be empty
    let response = client
        .get(format!("{ADMIN_URL}:{imposter_port}/retrieve"))
        .send()
        .await
        .expect("Request failed");
    assert_eq!(response.text().await.unwrap(), "empty");

    // Store a value
    let response = client
        .post(format!("{ADMIN_URL}:{imposter_port}/store"))
        .body(r#"{"value": "test-data"}"#)
        .send()
        .await
        .expect("Request failed");
    assert_eq!(response.status(), 201);

    // Retrieve again - should have stored value
    let response = client
        .get(format!("{ADMIN_URL}:{imposter_port}/retrieve"))
        .send()
        .await
        .expect("Request failed");
    assert_eq!(response.text().await.unwrap(), "test-data");

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}

// =============================================================================
// Fault Injection Integration Tests
// =============================================================================

#[tokio::test]
#[ignore = "requires running server"]
async fn test_rift_fault_latency_100_percent() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with 100% probability latency fault
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "stubs": [{
            "predicates": [],
            "responses": [{
                "is": {
                    "statusCode": 200,
                    "body": "delayed response"
                },
                "_rift": {
                    "fault": {
                        "latency": {
                            "probability": 1.0,
                            "ms": 200
                        }
                    }
                }
            }]
        }]
    });

    create_imposter(&client, admin_port, config).await;

    let start = Instant::now();
    let response = client
        .get(format!("{ADMIN_URL}:{imposter_port}/test"))
        .send()
        .await
        .expect("Request failed");
    let elapsed = start.elapsed();

    assert_eq!(response.status(), 200);
    assert_eq!(response.text().await.unwrap(), "delayed response");
    assert!(
        elapsed >= Duration::from_millis(180),
        "Expected at least 180ms delay, got {elapsed:?}"
    );

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}

#[tokio::test]
#[ignore = "requires running server"]
async fn test_rift_fault_latency_range() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with latency range
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "stubs": [{
            "predicates": [],
            "responses": [{
                "is": {
                    "statusCode": 200,
                    "body": "ok"
                },
                "_rift": {
                    "fault": {
                        "latency": {
                            "probability": 1.0,
                            "minMs": 100,
                            "maxMs": 200
                        }
                    }
                }
            }]
        }]
    });

    create_imposter(&client, admin_port, config).await;

    let start = Instant::now();
    let response = client
        .get(format!("{ADMIN_URL}:{imposter_port}/test"))
        .send()
        .await
        .expect("Request failed");
    let elapsed = start.elapsed();

    assert_eq!(response.status(), 200);
    assert!(
        elapsed >= Duration::from_millis(90),
        "Expected at least 90ms delay, got {elapsed:?}"
    );
    assert!(
        elapsed <= Duration::from_millis(300),
        "Expected at most 300ms delay, got {elapsed:?}"
    );

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}

#[tokio::test]
#[ignore = "requires running server"]
async fn test_rift_fault_error_100_percent() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with 100% error fault
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "stubs": [{
            "predicates": [],
            "responses": [{
                "is": {
                    "statusCode": 200,
                    "body": "normal response"
                },
                "_rift": {
                    "fault": {
                        "error": {
                            "probability": 1.0,
                            "status": 503,
                            "body": "Service Unavailable"
                        }
                    }
                }
            }]
        }]
    });

    create_imposter(&client, admin_port, config).await;

    let response = client
        .get(format!("{ADMIN_URL}:{imposter_port}/test"))
        .send()
        .await
        .expect("Request failed");

    assert_eq!(response.status(), 503);
    assert_eq!(response.text().await.unwrap(), "Service Unavailable");

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}

#[tokio::test]
#[ignore = "requires running server"]
async fn test_rift_fault_probabilistic() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with 50% error probability
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "stubs": [{
            "predicates": [],
            "responses": [{
                "is": {
                    "statusCode": 200,
                    "body": "success"
                },
                "_rift": {
                    "fault": {
                        "error": {
                            "probability": 0.5,
                            "status": 500,
                            "body": "error"
                        }
                    }
                }
            }]
        }]
    });

    create_imposter(&client, admin_port, config).await;

    let mut success_count = 0;
    let mut error_count = 0;

    // Make 100 requests to get a statistical sample
    for _ in 0..100 {
        let response = client
            .get(format!("{ADMIN_URL}:{imposter_port}/test"))
            .send()
            .await
            .expect("Request failed");

        if response.status() == 200 {
            success_count += 1;
        } else if response.status() == 500 {
            error_count += 1;
        }
    }

    // With 50% probability, we should see roughly equal distribution
    // Allow for some statistical variance (expect between 25% and 75% of either)
    assert!(
        (25..=75).contains(&success_count),
        "Expected roughly 50% success rate, got {success_count} successes and {error_count} errors"
    );

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}

// =============================================================================
// Mountebank Compatibility Tests with _rift Extensions
// =============================================================================

#[tokio::test]
#[ignore = "requires running server"]
async fn test_mountebank_behaviors_with_rift_fault() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with both Mountebank _behaviors and _rift fault
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "stubs": [{
            "predicates": [{"equals": {"path": "/test"}}],
            "responses": [{
                "is": {
                    "statusCode": 200,
                    "headers": {"X-Custom": "header"},
                    "body": "response with both behaviors"
                },
                "_behaviors": {
                    "wait": 50
                },
                "_rift": {
                    "fault": {
                        "latency": {
                            "probability": 1.0,
                            "ms": 50
                        }
                    }
                }
            }]
        }]
    });

    create_imposter(&client, admin_port, config).await;

    let start = Instant::now();
    let response = client
        .get(format!("{ADMIN_URL}:{imposter_port}/test"))
        .send()
        .await
        .expect("Request failed");
    let elapsed = start.elapsed();

    assert_eq!(response.status(), 200);
    assert_eq!(
        response
            .headers()
            .get("X-Custom")
            .map(|v| v.to_str().unwrap()),
        Some("header")
    );
    // Both waits should apply: 50ms from _behaviors + 50ms from _rift
    assert!(
        elapsed >= Duration::from_millis(80),
        "Expected at least 80ms combined delay, got {elapsed:?}"
    );

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}

#[tokio::test]
#[ignore = "requires running server"]
async fn test_mountebank_predicates_with_rift_extensions() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with complex Mountebank predicates and _rift extensions
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "_rift": {
            "flowState": {"backend": "inmemory"}
        },
        "stubs": [
            {
                "predicates": [
                    {"equals": {"method": "GET"}},
                    {"startsWith": {"path": "/api/"}}
                ],
                "responses": [{
                    "is": {
                        "statusCode": 200,
                        "body": "API response"
                    },
                    "_rift": {
                        "fault": {
                            "latency": {"probability": 1.0, "ms": 10}
                        }
                    }
                }]
            },
            {
                "predicates": [{"equals": {"method": "POST"}}],
                "responses": [{
                    "is": {
                        "statusCode": 201,
                        "body": "Created"
                    }
                }]
            }
        ]
    });

    create_imposter(&client, admin_port, config).await;

    // Test GET /api/* - should match first stub with _rift latency
    let start = Instant::now();
    let response = client
        .get(format!("{ADMIN_URL}:{imposter_port}/api/users"))
        .send()
        .await
        .expect("Request failed");
    let elapsed = start.elapsed();
    assert_eq!(response.status(), 200);
    assert_eq!(response.text().await.unwrap(), "API response");
    assert!(elapsed >= Duration::from_millis(5)); // Should have some delay

    // Test POST - should match second stub without _rift
    let response = client
        .post(format!("{ADMIN_URL}:{imposter_port}/create"))
        .send()
        .await
        .expect("Request failed");
    assert_eq!(response.status(), 201);

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}

#[tokio::test]
#[ignore = "requires running server"]
async fn test_response_cycling_with_rift_extensions() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with multiple responses that cycle, each with different _rift configs
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "stubs": [{
            "predicates": [],
            "responses": [
                {
                    "is": {"statusCode": 200, "body": "first"},
                    "_rift": {"fault": {"latency": {"probability": 1.0, "ms": 10}}}
                },
                {
                    "is": {"statusCode": 200, "body": "second"}
                },
                {
                    "is": {"statusCode": 200, "body": "third"},
                    "_rift": {"fault": {"latency": {"probability": 1.0, "ms": 10}}}
                }
            ]
        }]
    });

    create_imposter(&client, admin_port, config).await;

    // Verify response cycling works
    let bodies: Vec<String> = futures::future::join_all((0..6).map(|_| {
        let c = client.clone();
        let port = imposter_port;
        async move {
            c.get(format!("{ADMIN_URL}:{port}/test"))
                .send()
                .await
                .unwrap()
                .text()
                .await
                .unwrap()
        }
    }))
    .await;

    assert_eq!(
        bodies,
        vec!["first", "second", "third", "first", "second", "third"]
    );

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}

#[tokio::test]
#[ignore = "requires running server"]
async fn test_default_response_with_rift_config() {
    let (admin_port, imposter_port) = get_test_ports();
    let mut server = start_rift_server(admin_port).await;
    let client = Client::builder().timeout(TEST_TIMEOUT).build().unwrap();

    // Create imposter with default response and _rift flow state
    let config = json!({
        "port": imposter_port,
        "protocol": "http",
        "_rift": {
            "flowState": {"backend": "inmemory"}
        },
        "defaultResponse": {
            "statusCode": 404,
            "body": "Not found"
        },
        "stubs": [{
            "predicates": [{"equals": {"path": "/exists"}}],
            "responses": [{
                "is": {"statusCode": 200, "body": "Found"}
            }]
        }]
    });

    create_imposter(&client, admin_port, config).await;

    // Request to existing path
    let response = client
        .get(format!("{ADMIN_URL}:{imposter_port}/exists"))
        .send()
        .await
        .expect("Request failed");
    assert_eq!(response.status(), 200);
    assert_eq!(response.text().await.unwrap(), "Found");

    // Request to non-existing path - should use default response
    let response = client
        .get(format!("{ADMIN_URL}:{imposter_port}/nonexistent"))
        .send()
        .await
        .expect("Request failed");
    assert_eq!(response.status(), 404);
    assert_eq!(response.text().await.unwrap(), "Not found");

    clear_imposters(&client, admin_port).await;
    server.kill().await.ok();
}