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
use crate::handler::NewHandler;
use hyper::client::connect::Connect;
use hyper::header::{HeaderName, HeaderValue, CONTENT_TYPE};
use hyper::http::{self, request};
use hyper::{Body, Client, Method, Request, Response, Uri, Version};
use mime::Mime;
use std::any::Any;
use std::convert::TryFrom;
use std::fmt::{Debug, Formatter};
use std::future::Future;
use std::net::SocketAddr;
use std::ops::{Deref, DerefMut};
use std::sync::Arc;
use std::time::Duration;
use tokio::io::{AsyncRead, AsyncWrite};
use tokio::net::{TcpListener, TcpStream};
use tokio::time::timeout;
pub(crate) struct AsyncTestServerInner {
addr: SocketAddr,
timeout: Duration,
handle: tokio::task::JoinHandle<()>,
}
impl AsyncTestServerInner {
pub(crate) async fn new<NH, F, Wrapped, Wrap>(
new_handler: NH,
timeout: Duration,
wrap: Wrap,
) -> anyhow::Result<Self>
where
NH: NewHandler + 'static,
F: Future<Output = Result<Wrapped, ()>> + Unpin + Send + 'static,
Wrapped: Unpin + AsyncRead + AsyncWrite + Send + 'static,
Wrap: Fn(TcpStream) -> F + Send + 'static,
{
let listener = TcpListener::bind("127.0.0.1:0".parse::<SocketAddr>()?).await?;
let addr = listener.local_addr()?;
let handle = tokio::spawn(async {
crate::bind_server(listener, new_handler, wrap).await;
});
Ok(AsyncTestServerInner {
addr,
timeout,
handle,
})
}
pub(crate) fn client<TestC>(self: &Arc<Self>) -> AsyncTestClient<TestC>
where
TestC: From<SocketAddr> + Connect + Clone + Send + Sync + 'static,
{
let test_connect = TestC::from(self.addr);
let client = Client::builder().build(test_connect);
AsyncTestClient::new(client, self.timeout, self.clone())
}
}
impl Drop for AsyncTestServerInner {
fn drop(&mut self) {
self.handle.abort();
}
}
pub struct AsyncTestClient<C: Connect> {
client: Client<C, Body>,
timeout: Duration,
_test_server: Arc<AsyncTestServerInner>,
}
impl<C: Connect + Clone + Send + Sync + 'static> AsyncTestClient<C> {
pub(crate) fn new(
client: Client<C, Body>,
timeout: Duration,
test_server: Arc<AsyncTestServerInner>,
) -> Self {
Self {
client,
timeout,
_test_server: test_server,
}
}
pub async fn request(&self, request: Request<Body>) -> anyhow::Result<AsyncTestResponse> {
let request_future = self.client.request(request);
Ok(timeout(self.timeout, request_future).await??.into())
}
pub fn head<U>(&self, uri: U) -> AsyncTestRequestBuilder<'_, C>
where
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<http::Error>,
{
self.request_builder_with_method_and_uri(Method::HEAD, uri)
}
pub fn get<U>(&self, uri: U) -> AsyncTestRequestBuilder<'_, C>
where
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<http::Error>,
{
self.request_builder_with_method_and_uri(Method::GET, uri)
}
pub fn options<U>(&self, uri: U) -> AsyncTestRequestBuilder<'_, C>
where
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<http::Error>,
{
self.request_builder_with_method_and_uri(Method::OPTIONS, uri)
}
pub fn post<U>(&self, uri: U) -> AsyncTestRequestBuilder<'_, C>
where
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<http::Error>,
{
self.request_builder_with_method_and_uri(Method::POST, uri)
}
pub fn put<U>(&self, uri: U) -> AsyncTestRequestBuilder<'_, C>
where
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<http::Error>,
{
self.request_builder_with_method_and_uri(Method::PUT, uri)
}
pub fn patch<U>(&self, uri: U) -> AsyncTestRequestBuilder<'_, C>
where
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<http::Error>,
{
self.request_builder_with_method_and_uri(Method::PATCH, uri)
}
pub fn delete<U>(&self, uri: U) -> AsyncTestRequestBuilder<'_, C>
where
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<http::Error>,
{
self.request_builder_with_method_and_uri(Method::DELETE, uri)
}
pub fn build_request(&self) -> AsyncTestRequestBuilder<'_, C> {
AsyncTestRequestBuilder {
test_client: self,
request_builder: request::Builder::new(),
body: None,
}
}
fn request_builder_with_method_and_uri<U>(
&self,
method: Method,
uri: U,
) -> AsyncTestRequestBuilder<'_, C>
where
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<http::Error>,
{
let request_builder = request::Builder::new().uri(uri).method(method);
AsyncTestRequestBuilder {
test_client: self,
request_builder,
body: None,
}
}
}
impl<C: Connect> From<AsyncTestClient<C>> for Client<C> {
fn from(test_client: AsyncTestClient<C>) -> Self {
test_client.client
}
}
pub struct AsyncTestRequestBuilder<'client, C: Connect> {
test_client: &'client AsyncTestClient<C>,
request_builder: request::Builder,
body: Option<Body>,
}
impl<'client, C: Connect + Clone + Send + Sync + 'static> AsyncTestRequestBuilder<'client, C> {
pub async fn perform(self) -> anyhow::Result<AsyncTestResponse> {
let Self {
test_client,
request_builder,
body,
} = self;
let request = request_builder.body(body.unwrap_or_default())?;
test_client.request(request).await
}
pub fn mime(self, mime: Mime) -> Self {
self.header(
CONTENT_TYPE,
mime.to_string().parse::<HeaderValue>().unwrap(),
)
}
pub fn body<B: Into<Body>>(mut self, body: B) -> Self {
self.body.replace(body.into());
self
}
pub fn extension<T>(self, extension: T) -> Self
where
T: Any + Send + Sync + 'static,
{
self.replace_request_builder(|builder| builder.extension(extension))
}
pub fn header<K, V>(self, key: K, value: V) -> Self
where
HeaderName: TryFrom<K>,
<HeaderName as TryFrom<K>>::Error: Into<http::Error>,
HeaderValue: TryFrom<V>,
<HeaderValue as TryFrom<V>>::Error: Into<http::Error>,
{
self.replace_request_builder(|builder| builder.header(key, value))
}
pub fn method<M>(self, method: M) -> Self
where
Method: TryFrom<M>,
<Method as TryFrom<M>>::Error: Into<http::Error>,
{
self.replace_request_builder(|builder| builder.method(method))
}
pub fn uri<U>(self, uri: U) -> Self
where
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<http::Error>,
{
self.replace_request_builder(|builder| builder.uri(uri))
}
pub fn version(self, version: Version) -> Self {
self.replace_request_builder(|builder| builder.version(version))
}
fn replace_request_builder(
mut self,
replacer: impl FnOnce(request::Builder) -> request::Builder,
) -> Self {
self.request_builder = replacer(self.request_builder);
self
}
}
impl<'client, C: Connect> Deref for AsyncTestRequestBuilder<'client, C> {
type Target = request::Builder;
fn deref(&self) -> &Self::Target {
&self.request_builder
}
}
impl<'client, C: Connect> DerefMut for AsyncTestRequestBuilder<'client, C> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.request_builder
}
}
pub struct AsyncTestResponse {
response: Response<Body>,
}
impl AsyncTestResponse {
pub async fn read_body(self) -> anyhow::Result<Vec<u8>> {
let bytes = hyper::body::to_bytes(self.response.into_body()).await?;
Ok(bytes.to_vec())
}
pub async fn read_utf8_body(self) -> anyhow::Result<String> {
let bytes = self.read_body().await?;
Ok(String::from_utf8(bytes)?)
}
}
impl From<Response<Body>> for AsyncTestResponse {
fn from(response: Response<Body>) -> Self {
Self { response }
}
}
impl From<AsyncTestResponse> for Response<Body> {
fn from(test_response: AsyncTestResponse) -> Self {
test_response.response
}
}
impl Deref for AsyncTestResponse {
type Target = Response<Body>;
fn deref(&self) -> &Self::Target {
&self.response
}
}
impl DerefMut for AsyncTestResponse {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.response
}
}
impl Debug for AsyncTestResponse {
fn fmt(&self, formatter: &mut Formatter) -> std::fmt::Result {
formatter.write_str("AsyncTestResponse")
}
}
#[cfg(test)]
pub(crate) mod common_tests {
use super::*;
use crate::test::helper::TestHandler;
use hyper::StatusCode;
pub(crate) async fn serves_requests<TS, F, C>(
server_factory: fn(TestHandler) -> F,
client_factory: fn(&TS) -> AsyncTestClient<C>,
) where
F: Future<Output = anyhow::Result<TS>>,
C: Connect + Clone + Send + Sync + 'static,
{
let test_server = server_factory(TestHandler::from("response")).await.unwrap();
let response = client_factory(&test_server)
.get("http://localhost/")
.perform()
.await
.unwrap();
assert_eq!(response.status(), StatusCode::OK);
assert_eq!(response.read_utf8_body().await.unwrap(), "response");
}
pub(crate) async fn times_out<TS, F, C>(
server_factory: fn(TestHandler, Duration) -> F,
client_factory: fn(&TS) -> AsyncTestClient<C>,
) where
F: Future<Output = anyhow::Result<TS>>,
C: Connect + Clone + Send + Sync + 'static,
{
let timeout = Duration::from_secs(10);
let test_server = server_factory(TestHandler::default(), timeout)
.await
.unwrap();
let client = client_factory(&test_server);
tokio::time::pause();
let request_handle =
tokio::spawn(async move { client.get("http://localhost/timeout").perform().await });
tokio::time::sleep(timeout).await;
tokio::time::resume();
let request_result = request_handle.await.unwrap();
assert!(request_result
.unwrap_err()
.is::<tokio::time::error::Elapsed>());
}
pub(crate) async fn echo<TS, F, C>(
server_factory: fn(TestHandler) -> F,
client_factory: fn(&TS) -> AsyncTestClient<C>,
) where
F: Future<Output = anyhow::Result<TS>>,
C: Connect + Clone + Send + Sync + 'static,
{
let server = server_factory(TestHandler::default()).await.unwrap();
let data = "This text should get reflected back to us. Even this fancy piece of unicode: \
\u{3044}\u{308d}\u{306f}\u{306b}\u{307b}";
let response = client_factory(&server)
.post("http://localhost/echo")
.body(data)
.perform()
.await
.unwrap();
let response_text = response.read_utf8_body().await.unwrap();
assert_eq!(response_text, data);
}
pub(crate) async fn supports_multiple_servers<TS, F, C>(
server_factory: fn(TestHandler) -> F,
client_factory: fn(&TS) -> AsyncTestClient<C>,
) where
F: Future<Output = anyhow::Result<TS>>,
C: Connect + Clone + Send + Sync + 'static,
{
let server_a = server_factory(TestHandler::from("A")).await.unwrap();
let server_b = server_factory(TestHandler::from("B")).await.unwrap();
let client_a = client_factory(&server_a);
let client_b = client_factory(&server_b);
let response_a = client_a
.get("http://localhost/")
.perform()
.await
.unwrap()
.read_utf8_body()
.await
.unwrap();
let response_b = client_b
.get("http://localhost/")
.perform()
.await
.unwrap()
.read_utf8_body()
.await
.unwrap();
assert_eq!(response_a, "A");
assert_eq!(response_b, "B");
}
pub(crate) async fn adds_client_address_to_state<TS, F, C>(
server_factory: fn(TestHandler) -> F,
client_factory: fn(&TS) -> AsyncTestClient<C>,
) where
F: Future<Output = anyhow::Result<TS>>,
C: Connect + Clone + Send + Sync + 'static,
{
let server = server_factory(TestHandler::default()).await.unwrap();
let client = client_factory(&server);
let client_address = client
.get("http://localhost/myaddr")
.perform()
.await
.unwrap()
.read_utf8_body()
.await
.unwrap();
assert!(client_address.starts_with("127.0.0.1"));
}
}