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
//! # Chapter 3: Response Handling
//!
//! This chapter covers the various ways to handle API responses, including
//! error handling patterns.
//!
//! ## Response Methods Overview
//!
//! After sending a request, you have several options for handling the response:
//!
//! | Method | Returns | Use Case |
//! |--------|---------|----------|
//! | `as_json::<T>()` | `T` | Standard JSON response |
//! | `as_optional_json::<T>()` | `Option<T>` | Resource that may not exist (404 → None) |
//! | `as_result_json::<T, E>()` | `Result<T, E>` | API with typed error responses |
//! | `as_result_option_json::<T, E>()` | `Result<Option<T>, E>` | Combined: 404 → Ok(None), errors → Err |
//! | `as_raw()` | `RawResult` | Access status code and raw body |
//! | `as_empty()` | `()` | Responses with no body (204, etc.) |
//! | `as_text()` | `String` | Plain text responses |
//!
//! ## Standard JSON Response
//!
//! The most common pattern - parse JSON and fail on errors:
//!
//! ```rust,no_run
//! # use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Deserialize, ToSchema)]
//! # struct User { id: u64 }
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let mut client = ApiClient::builder().build()?;
//! let user: User = client
//! .get("/users/123")?
//! .await?
//! .as_json()
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Optional JSON (404 as None)
//!
//! Use `as_optional_json()` when a resource might not exist:
//!
//! ```rust,no_run
//! # use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Deserialize, ToSchema)]
//! # struct User { id: u64, name: String }
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let mut client = ApiClient::builder().build()?;
//! let user: Option<User> = client
//! .get("/users/999")?
//! .add_expected_status(404) // Tell client 404 is expected
//! .await?
//! .as_optional_json()
//! .await?;
//!
//! match user {
//! Some(u) => println!("Found: {}", u.name),
//! None => println!("User not found"),
//! }
//! # Ok(())
//! # }
//! ```
//!
//! ## Result JSON (Typed Errors)
//!
//! When your API returns structured error responses:
//!
//! ```rust,no_run
//! # use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Debug, Deserialize, ToSchema)]
//! # struct User { id: u64 }
//! #[derive(Debug, Deserialize, ToSchema)]
//! struct ApiError {
//! code: String,
//! message: String,
//! }
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let mut client = ApiClient::builder().build()?;
//! let result: Result<User, ApiError> = client
//! .get("/users/123")?
//! .add_expected_status(404)
//! .await?
//! .as_result_json()
//! .await?;
//!
//! match result {
//! Ok(user) => println!("Got user: {:?}", user),
//! Err(error) => println!("API error: {} - {}", error.code, error.message),
//! }
//! # Ok(())
//! # }
//! ```
//!
//! ## Result Option JSON (404 as Ok(None))
//!
//! Combines optional resources with typed errors:
//!
//! ```rust,no_run
//! # use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Debug, Deserialize, ToSchema)]
//! # struct User { id: u64, name: String }
//! # #[derive(Debug, Deserialize, ToSchema)]
//! # struct ApiError { message: String }
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let mut client = ApiClient::builder().build()?;
//! // 2xx → Ok(Some(T))
//! // 404 → Ok(None)
//! // Other 4xx/5xx → Err(E)
//! let result: Result<Option<User>, ApiError> = client
//! .get("/users/maybe-exists")?
//! .add_expected_status(404)
//! .await?
//! .as_result_option_json()
//! .await?;
//!
//! match result {
//! Ok(Some(user)) => println!("Found: {}", user.name),
//! Ok(None) => println!("Not found (but not an error)"),
//! Err(e) => println!("Actual error: {}", e.message),
//! }
//! # Ok(())
//! # }
//! ```
//!
//! ## Expected Status Codes
//!
//! By default, Clawspec expects 2xx-4xx status codes. Use these methods to
//! customize expectations:
//!
//! ```rust,no_run
//! use clawspec_core::{ApiClient, expected_status_codes};
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Deserialize, ToSchema)]
//! # struct User { id: u64 }
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let mut client = ApiClient::builder().build()?;
//! // Add a single expected status
//! client.get("/users/123")?
//! .add_expected_status(404)
//! .await?;
//!
//! // Use specific status code
//! client.post("/users")?
//! .with_expected_status(201)
//! .await?;
//!
//! // Use the macro for complex patterns
//! client.get("/resource")?
//! .with_expected_status_codes(expected_status_codes!(200, 201, 204))
//! .await?;
//!
//! // Ranges are supported
//! client.get("/resource")?
//! .with_expected_status_codes(expected_status_codes!(200-299, 404))
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Raw Response Access
//!
//! When you need full control over the response:
//!
//! ```rust,no_run
//! # use clawspec_core::ApiClient;
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let client = ApiClient::builder().build()?;
//! let raw = client
//! .get("/health")?
//! .await?
//! .as_raw()
//! .await?;
//!
//! println!("Status: {}", raw.status_code());
//! println!("Body: {:?}", raw.text());
//!
//! // Access as bytes
//! let bytes: Option<&[u8]> = raw.bytes();
//! # Ok(())
//! # }
//! ```
//!
//! ## Error Handling
//!
//! Clawspec uses [`ApiClientError`][crate::ApiClientError] for client-level errors:
//!
//! ```rust,no_run
//! use clawspec_core::{ApiClient, ApiClientError};
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! # let client = ApiClient::builder().build()?;
//! match client.get("/users/123")?.with_expected_status(200).await {
//! Ok(response) => {
//! // Handle success
//! }
//! Err(ApiClientError::UnexpectedStatusCode { status_code, body }) => {
//! println!("Got status {}: {}", status_code, body);
//! }
//! Err(e) => {
//! println!("Other error: {}", e);
//! }
//! }
//! # Ok(())
//! # }
//! ```
//!
//! ## Key Points
//!
//! - Choose the response method that matches your API's behavior
//! - Use `add_expected_status()` to tell Clawspec about expected non-2xx codes
//! - `as_optional_json()` is great for "get or not found" patterns
//! - `as_result_json()` captures typed error schemas in OpenAPI
//!
//! Next: [Chapter 4: Advanced Parameters][super::chapter_4] - Headers, cookies,
//! and parameter styles.