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
//! Testing utilities for Tideway applications
//!
//! This module provides comprehensive testing tools including:
//! - Alba-style HTTP endpoint testing without running a server
//! - Database testing with SQLite in-memory
//! - Fluent assertion APIs
//!
//! # Example
//!
//! ```rust,ignore
//! use axum::{Router, routing, Json};
//! use tideway::testing;
//! use serde_json::json;
//!
//! async fn hello() -> Json<serde_json::Value> {
//! Json(json!({"message": "Hello!"}))
//! }
//!
//! #[tokio::test]
//! async fn test_hello() {
//! let app = Router::new().route("/hello", routing::get(hello));
//!
//! let response = testing::get(app, "/hello")
//! .send()
//! .await
//! .assert_json_ok();
//!
//! let body = response.json_value().await;
//! assert_eq!(body["message"], "Hello!");
//! }
//! ```
//!
//! Using `TestApp` with a Tideway `App`:
//!
//! ```rust,ignore
//! use tideway::{App, RouteModule, AppContext};
//! use tideway::testing::TestApp;
//! use axum::{routing::get, Router};
//!
//! struct HealthModule;
//!
//! impl RouteModule for HealthModule {
//! fn routes(&self) -> Router<AppContext> {
//! Router::new().route("/health", get(|| async { "ok" }))
//! }
//! }
//!
//! let app = App::new().register_module(HealthModule);
//! let test_app = TestApp::new(app);
//! test_app.get("/health").execute().await.assert_ok();
//! ```
//!
//! Auth helper:
//!
//! ```rust,ignore
//! let api = test_app.auth("token");
//! api.get("/api/me").send().await.assert_ok();
//! ```
//!
//! JSON helper:
//!
//! ```rust,ignore
//! let api = test_app.auth("token");
//! api.post_json("/api/items", &payload).send().await.assert_json_ok();
//! ```
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;