pipi-rs 0.1.1

Pipi web framework for Rust
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
//! This module contains a base routes related to readiness checks and status
//! reporting. These routes are commonly used to monitor the readiness of the
//! application and its dependencies.

use super::{format, routes::Routes};
#[cfg(any(feature = "cache_inmem", feature = "cache_redis"))]
use crate::config;
use crate::{app::AppContext, Result};
use axum::{
    extract::State,
    http::StatusCode,
    response::{IntoResponse, Response},
    routing::get,
};
use serde::Serialize;

/// Represents the health status of the application.
#[derive(Serialize)]
pub struct Health {
    pub ok: bool,
}

/// Check application ping endpoint
///
/// # Errors
/// This function always returns `Ok` with a JSON response indicating the
pub async fn ping() -> Result<Response> {
    format::json(Health { ok: true })
}

/// Check application ping endpoint
///
/// # Errors
/// This function always returns `Ok` with a JSON response indicating the
pub async fn health() -> Result<Response> {
    format::json(Health { ok: true })
}

/// Check the readiness of the application by sending a ping request to
/// Redis or the DB (depending on feature flags) to ensure connection liveness.
///
/// # Errors
/// All errors are logged, and the readiness status is returned as a JSON response.
pub async fn readiness(State(ctx): State<AppContext>) -> (StatusCode, Response) {
    // Check database connection
    #[cfg(feature = "with-db")]
    if let Err(error) = &ctx.db.ping().await {
        tracing::error!(err.msg = %error, err.detail = ?error, "readiness_db_ping_error");
        return (
            StatusCode::SERVICE_UNAVAILABLE,
            format::json(Health { ok: false }).into_response(),
        );
    }

    // Check queue connection
    if let Some(queue) = &ctx.queue_provider {
        if let Err(error) = queue.ping().await {
            tracing::error!(err.msg = %error, err.detail = ?error, "readiness_queue_ping_error");
            return (
                StatusCode::SERVICE_UNAVAILABLE,
                format::json(Health { ok: false }).into_response(),
            );
        }
    }

    // Check cache connection
    #[cfg(any(feature = "cache_inmem", feature = "cache_redis"))]
    {
        match ctx.config.cache {
            #[cfg(feature = "cache_inmem")]
            config::CacheConfig::InMem(_) => {
                if let Err(error) = &ctx.cache.driver.ping().await {
                    tracing::error!(err.msg = %error, err.detail = ?error, "readiness_cache_ping_error");
                    return (
                        StatusCode::SERVICE_UNAVAILABLE,
                        format::json(Health { ok: false }).into_response(),
                    );
                }
            }
            #[cfg(feature = "cache_redis")]
            config::CacheConfig::Redis(_) => {
                if let Err(error) = &ctx.cache.driver.ping().await {
                    tracing::error!(err.msg = %error, err.detail = ?error, "readiness_cache_ping_error");
                    return (
                        StatusCode::SERVICE_UNAVAILABLE,
                        format::json(Health { ok: false }).into_response(),
                    );
                }
            }
            config::CacheConfig::Null => (),
        }
    }

    (
        StatusCode::OK,
        format::json(Health { ok: true }).into_response(),
    )
}

/// Defines and returns the readiness-related routes.
pub fn routes() -> Routes {
    Routes::new()
        .add("/_readiness", get(readiness))
        .add("/_ping", get(ping))
        .add("/_health", get(health))
}

#[cfg(test)]
mod tests {
    use axum::routing::get;
    use pipi::tests_cfg::db::fail_connection;
    use pipi::{bgworker, cache, config, controller::monitoring, tests_cfg};
    use serde_json::Value;
    use tower::ServiceExt;

    #[cfg(feature = "cache_redis")]
    use crate::tests_cfg::redis::setup_redis_container;

    #[tokio::test]
    async fn ping_works() {
        let ctx = tests_cfg::app::get_app_context().await;

        // Create a router with the ping route
        let router = axum::Router::new()
            .route("/_ping", get(monitoring::ping))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_ping")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 200);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], true);
    }

    #[tokio::test]
    async fn health_works() {
        let ctx = tests_cfg::app::get_app_context().await;

        // Create a router with the health route
        let router = axum::Router::new()
            .route("/_health", get(monitoring::health))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_health")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 200);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], true);
    }

    #[cfg(not(feature = "with-db"))]
    #[tokio::test]
    async fn readiness_no_features() {
        let ctx = tests_cfg::app::get_app_context().await;

        // Create a router with the readiness route
        let router = axum::Router::new()
            .route("/_readiness", get(monitoring::readiness))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_readiness")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 200);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], true);
    }

    #[cfg(feature = "with-db")]
    #[tokio::test]
    async fn readiness_with_db_success() {
        let ctx = tests_cfg::app::get_app_context().await;

        // Create a router with the readiness route
        let router = axum::Router::new()
            .route("/_readiness", get(monitoring::readiness))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_readiness")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 200);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], true);
    }

    #[cfg(feature = "with-db")]
    #[tokio::test]
    async fn readiness_with_db_failure() {
        let mut ctx = tests_cfg::app::get_app_context().await;
        ctx.db = fail_connection().await;

        // Create a router with the readiness route
        let router = axum::Router::new()
            .route("/_readiness", get(monitoring::readiness))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_readiness")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 503);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], false);
    }

    #[cfg(feature = "cache_inmem")]
    #[tokio::test]
    async fn readiness_with_cache_inmem() {
        let mut ctx = tests_cfg::app::get_app_context().await;

        ctx.cache = cache::drivers::inmem::new(&pipi::config::InMemCacheConfig {
            max_capacity: 32 * 1024 * 1024,
        })
        .into();

        // Create a router with the readiness route
        let router = axum::Router::new()
            .route("/_readiness", get(monitoring::readiness))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_readiness")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 200);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], true);
    }

    #[cfg(feature = "cache_redis")]
    #[tokio::test]
    async fn readiness_with_cache_redis_success() {
        let (redis_url, _container) = setup_redis_container().await;
        let mut ctx = tests_cfg::app::get_app_context().await;

        // Create Redis cache driver and assign to ctx.cache
        let redis_cache = cache::drivers::redis::new(&config::RedisCacheConfig {
            uri: redis_url,
            max_size: 10,
        })
        .await
        .expect("Failed to create Redis cache");
        ctx.cache = redis_cache.into();

        // Create a router with the readiness route
        let router = axum::Router::new()
            .route("/_readiness", get(monitoring::readiness))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_readiness")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 200);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], true);
    }

    #[cfg(feature = "cache_redis")]
    #[tokio::test]
    async fn readiness_with_cache_redis_failure() {
        let mut ctx = tests_cfg::app::get_app_context().await;
        let failour_redis_url = "redis://127.0.0.2:0";
        // Force config to Redis to ensure ping path executes, but swap driver to Null (which errors on ping)
        ctx.config.cache = config::CacheConfig::Redis(pipi::config::RedisCacheConfig {
            uri: failour_redis_url.to_string(),
            max_size: 10,
        });
        // Create Redis cache driver and assign to ctx.cache
        ctx.cache = cache::drivers::redis::new(&config::RedisCacheConfig {
            uri: failour_redis_url.to_string(),
            max_size: 10,
        })
        .await
        .expect("Failed to create Redis cache")
        .into();

        // Create a router with the readiness route
        let router = axum::Router::new()
            .route("/_readiness", get(monitoring::readiness))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_readiness")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 503);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], false);
    }

    #[tokio::test]
    async fn readiness_with_queue_not_present() {
        let mut ctx = tests_cfg::app::get_app_context().await;
        // simulate background queue mode with a no-op provider
        ctx.config.workers.mode = config::WorkerMode::BackgroundQueue;
        ctx.queue_provider = Some(std::sync::Arc::new(bgworker::Queue::None));

        // Create a router with the readiness route
        let router = axum::Router::new()
            .route("/_readiness", get(monitoring::readiness))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_readiness")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 200);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], true);
    }

    #[cfg(feature = "bg_redis")]
    #[tokio::test]
    async fn readiness_with_queue_present_failure() {
        let mut ctx = tests_cfg::app::get_app_context().await;

        // Configure Redis queue with invalid URL to trigger failure
        let failure_redis_url = "redis://127.0.0.2:0";
        ctx.config.workers.mode = config::WorkerMode::BackgroundQueue;
        ctx.config.queue = Some(config::QueueConfig::Redis(config::RedisQueueConfig {
            uri: failure_redis_url.to_string(),
            dangerously_flush: false,
            queues: None,
            num_workers: 1,
        }));

        // Create Redis queue provider directly with failing Redis connection
        ctx.queue_provider = Some(std::sync::Arc::new(
            bgworker::redis::create_provider(&config::RedisQueueConfig {
                uri: failure_redis_url.to_string(),
                dangerously_flush: false,
                queues: None,
                num_workers: 1,
            })
            .await
            .expect("Failed to create Redis queue provider"),
        ));

        // Create a router with the readiness route
        let router = axum::Router::new()
            .route("/_readiness", get(monitoring::readiness))
            .with_state(ctx);

        // Create a request
        let req = axum::http::Request::builder()
            .uri("/_readiness")
            .method("GET")
            .body(axum::body::Body::empty())
            .unwrap();

        // Test the router directly using oneshot
        let response = router.oneshot(req).await.unwrap();
        assert_eq!(response.status(), 503);

        // Get the response body
        let body = axum::body::to_bytes(response.into_body(), usize::MAX)
            .await
            .unwrap();
        let res_json: Value = serde_json::from_slice(&body).expect("Valid JSON response");
        assert_eq!(res_json["ok"], false);
    }
}