2019-05-17 17:28:57 +03:00
|
|
|
//! HTTP Authentication middleware.
|
|
|
|
|
2021-06-27 07:02:38 +01:00
|
|
|
use std::{
|
2021-12-08 07:29:12 +00:00
|
|
|
error::Error as StdError,
|
|
|
|
future::Future,
|
|
|
|
marker::PhantomData,
|
|
|
|
pin::Pin,
|
|
|
|
rc::Rc,
|
|
|
|
sync::Arc,
|
|
|
|
task::{Context, Poll},
|
2021-06-27 07:02:38 +01:00
|
|
|
};
|
2019-05-17 17:28:57 +03:00
|
|
|
|
2020-11-18 15:08:03 +00:00
|
|
|
use actix_web::{
|
2021-06-27 07:02:38 +01:00
|
|
|
body::{AnyBody, MessageBody},
|
2020-11-18 15:08:03 +00:00
|
|
|
dev::{Service, ServiceRequest, ServiceResponse, Transform},
|
|
|
|
Error,
|
|
|
|
};
|
2021-12-08 07:29:12 +00:00
|
|
|
use futures_core::ready;
|
|
|
|
use futures_util::future::{self, FutureExt as _, LocalBoxFuture, TryFutureExt as _};
|
2019-05-17 17:28:57 +03:00
|
|
|
|
|
|
|
use crate::extractors::{basic, bearer, AuthExtractor};
|
|
|
|
|
|
|
|
/// Middleware for checking HTTP authentication.
|
|
|
|
///
|
2020-11-18 15:08:03 +00:00
|
|
|
/// If there is no `Authorization` header in the request, this middleware returns an error
|
|
|
|
/// immediately, without calling the `F` callback.
|
2019-06-05 18:52:47 +03:00
|
|
|
///
|
2020-11-18 15:08:03 +00:00
|
|
|
/// Otherwise, it will pass both the request and the parsed credentials into it. In case of
|
|
|
|
/// successful validation `F` callback is required to return the `ServiceRequest` back.
|
2019-06-08 00:20:55 +03:00
|
|
|
#[derive(Debug, Clone)]
|
2019-05-17 17:28:57 +03:00
|
|
|
pub struct HttpAuthentication<T, F>
|
|
|
|
where
|
|
|
|
T: AuthExtractor,
|
|
|
|
{
|
2019-06-08 00:20:55 +03:00
|
|
|
process_fn: Arc<F>,
|
2019-05-17 17:28:57 +03:00
|
|
|
_extractor: PhantomData<T>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T, F, O> HttpAuthentication<T, F>
|
|
|
|
where
|
|
|
|
T: AuthExtractor,
|
2019-07-20 00:34:59 +09:00
|
|
|
F: Fn(ServiceRequest, T) -> O,
|
2020-01-07 01:00:43 +09:00
|
|
|
O: Future<Output = Result<ServiceRequest, Error>>,
|
2019-05-17 17:28:57 +03:00
|
|
|
{
|
2020-11-18 15:08:03 +00:00
|
|
|
/// Construct `HttpAuthentication` middleware with the provided auth extractor `T` and
|
2019-05-17 17:28:57 +03:00
|
|
|
/// validation callback `F`.
|
2019-06-05 18:52:47 +03:00
|
|
|
pub fn with_fn(process_fn: F) -> HttpAuthentication<T, F> {
|
2019-05-17 17:28:57 +03:00
|
|
|
HttpAuthentication {
|
2019-06-08 00:20:55 +03:00
|
|
|
process_fn: Arc::new(process_fn),
|
2019-05-17 17:28:57 +03:00
|
|
|
_extractor: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<F, O> HttpAuthentication<basic::BasicAuth, F>
|
|
|
|
where
|
2019-07-20 00:34:59 +09:00
|
|
|
F: Fn(ServiceRequest, basic::BasicAuth) -> O,
|
2020-01-07 01:00:43 +09:00
|
|
|
O: Future<Output = Result<ServiceRequest, Error>>,
|
2019-05-17 17:28:57 +03:00
|
|
|
{
|
2020-11-18 15:08:03 +00:00
|
|
|
/// Construct `HttpAuthentication` middleware for the HTTP "Basic" authentication scheme.
|
2019-05-17 17:28:57 +03:00
|
|
|
///
|
2020-11-18 15:08:03 +00:00
|
|
|
/// # Example
|
2020-01-14 13:31:20 +09:00
|
|
|
/// ```
|
2019-05-17 17:28:57 +03:00
|
|
|
/// # use actix_web::Error;
|
|
|
|
/// # use actix_web::dev::ServiceRequest;
|
|
|
|
/// # use actix_web_httpauth::middleware::HttpAuthentication;
|
|
|
|
/// # use actix_web_httpauth::extractors::basic::BasicAuth;
|
2020-11-18 15:08:03 +00:00
|
|
|
/// // In this example validator returns immediately, but since it is required to return
|
|
|
|
/// // anything that implements `IntoFuture` trait, it can be extended to query database or to
|
|
|
|
/// // do something else in a async manner.
|
2020-01-07 01:00:43 +09:00
|
|
|
/// async fn validator(
|
2019-06-05 18:52:47 +03:00
|
|
|
/// req: ServiceRequest,
|
2019-06-08 00:20:55 +03:00
|
|
|
/// credentials: BasicAuth,
|
2020-01-07 01:00:43 +09:00
|
|
|
/// ) -> Result<ServiceRequest, Error> {
|
2019-05-17 17:28:57 +03:00
|
|
|
/// // All users are great and more than welcome!
|
2020-01-07 01:00:43 +09:00
|
|
|
/// Ok(req)
|
2019-05-17 17:28:57 +03:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// let middleware = HttpAuthentication::basic(validator);
|
|
|
|
/// ```
|
2019-06-05 18:52:47 +03:00
|
|
|
pub fn basic(process_fn: F) -> Self {
|
|
|
|
Self::with_fn(process_fn)
|
2019-05-17 17:28:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<F, O> HttpAuthentication<bearer::BearerAuth, F>
|
|
|
|
where
|
2019-07-20 00:34:59 +09:00
|
|
|
F: Fn(ServiceRequest, bearer::BearerAuth) -> O,
|
2020-01-07 01:00:43 +09:00
|
|
|
O: Future<Output = Result<ServiceRequest, Error>>,
|
2019-05-17 17:28:57 +03:00
|
|
|
{
|
2020-11-18 15:08:03 +00:00
|
|
|
/// Construct `HttpAuthentication` middleware for the HTTP "Bearer" authentication scheme.
|
2019-06-05 18:52:47 +03:00
|
|
|
///
|
2020-11-18 15:08:03 +00:00
|
|
|
/// # Example
|
2020-01-14 13:31:20 +09:00
|
|
|
/// ```
|
2019-05-17 17:28:57 +03:00
|
|
|
/// # use actix_web::Error;
|
|
|
|
/// # use actix_web::dev::ServiceRequest;
|
|
|
|
/// # use actix_web_httpauth::middleware::HttpAuthentication;
|
|
|
|
/// # use actix_web_httpauth::extractors::bearer::{Config, BearerAuth};
|
|
|
|
/// # use actix_web_httpauth::extractors::{AuthenticationError, AuthExtractorConfig};
|
2020-01-07 01:00:43 +09:00
|
|
|
/// async fn validator(req: ServiceRequest, credentials: BearerAuth) -> Result<ServiceRequest, Error> {
|
2019-05-17 17:28:57 +03:00
|
|
|
/// if credentials.token() == "mF_9.B5f-4.1JqM" {
|
2020-01-07 01:00:43 +09:00
|
|
|
/// Ok(req)
|
2019-05-17 17:28:57 +03:00
|
|
|
/// } else {
|
|
|
|
/// let config = req.app_data::<Config>()
|
2020-09-11 16:26:15 +01:00
|
|
|
/// .map(|data| data.clone())
|
2019-05-17 17:28:57 +03:00
|
|
|
/// .unwrap_or_else(Default::default)
|
|
|
|
/// .scope("urn:example:channel=HBO&urn:example:rating=G,PG-13");
|
|
|
|
///
|
2020-01-07 01:00:43 +09:00
|
|
|
/// Err(AuthenticationError::from(config).into())
|
2019-05-17 17:28:57 +03:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// let middleware = HttpAuthentication::bearer(validator);
|
|
|
|
/// ```
|
2019-06-05 18:52:47 +03:00
|
|
|
pub fn bearer(process_fn: F) -> Self {
|
|
|
|
Self::with_fn(process_fn)
|
2019-05-17 17:28:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
impl<S, B, T, F, O> Transform<S, ServiceRequest> for HttpAuthentication<T, F>
|
2019-05-17 17:28:57 +03:00
|
|
|
where
|
2021-03-21 23:50:26 +01:00
|
|
|
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
|
2019-05-17 17:28:57 +03:00
|
|
|
S::Future: 'static,
|
2019-06-05 18:52:47 +03:00
|
|
|
F: Fn(ServiceRequest, T) -> O + 'static,
|
2020-01-07 01:00:43 +09:00
|
|
|
O: Future<Output = Result<ServiceRequest, Error>> + 'static,
|
2019-05-17 17:28:57 +03:00
|
|
|
T: AuthExtractor + 'static,
|
2021-06-27 07:02:38 +01:00
|
|
|
B: MessageBody + 'static,
|
|
|
|
B::Error: StdError,
|
2019-05-17 17:28:57 +03:00
|
|
|
{
|
2021-06-27 07:02:38 +01:00
|
|
|
type Response = ServiceResponse;
|
2019-05-17 17:28:57 +03:00
|
|
|
type Error = Error;
|
|
|
|
type Transform = AuthenticationMiddleware<S, F, T>;
|
|
|
|
type InitError = ();
|
2020-01-07 01:00:43 +09:00
|
|
|
type Future = future::Ready<Result<Self::Transform, Self::InitError>>;
|
2019-05-17 17:28:57 +03:00
|
|
|
|
|
|
|
fn new_transform(&self, service: S) -> Self::Future {
|
|
|
|
future::ok(AuthenticationMiddleware {
|
2021-03-22 05:18:59 +00:00
|
|
|
service: Rc::new(service),
|
2019-06-05 18:52:47 +03:00
|
|
|
process_fn: self.process_fn.clone(),
|
2019-05-17 17:28:57 +03:00
|
|
|
_extractor: PhantomData,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub struct AuthenticationMiddleware<S, F, T>
|
|
|
|
where
|
|
|
|
T: AuthExtractor,
|
|
|
|
{
|
2021-03-22 05:18:59 +00:00
|
|
|
service: Rc<S>,
|
2019-06-08 00:20:55 +03:00
|
|
|
process_fn: Arc<F>,
|
2019-05-17 17:28:57 +03:00
|
|
|
_extractor: PhantomData<T>,
|
|
|
|
}
|
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
impl<S, B, F, T, O> Service<ServiceRequest> for AuthenticationMiddleware<S, F, T>
|
2019-05-17 17:28:57 +03:00
|
|
|
where
|
2021-03-21 23:50:26 +01:00
|
|
|
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
|
2019-05-17 17:28:57 +03:00
|
|
|
S::Future: 'static,
|
2019-06-05 18:52:47 +03:00
|
|
|
F: Fn(ServiceRequest, T) -> O + 'static,
|
2020-01-07 01:00:43 +09:00
|
|
|
O: Future<Output = Result<ServiceRequest, Error>> + 'static,
|
2019-05-17 17:28:57 +03:00
|
|
|
T: AuthExtractor + 'static,
|
2021-06-27 07:02:38 +01:00
|
|
|
B: MessageBody + 'static,
|
|
|
|
B::Error: StdError,
|
2019-05-17 17:28:57 +03:00
|
|
|
{
|
2021-06-27 07:02:38 +01:00
|
|
|
type Response = ServiceResponse;
|
2019-05-17 17:28:57 +03:00
|
|
|
type Error = S::Error;
|
2021-06-27 07:02:38 +01:00
|
|
|
type Future = LocalBoxFuture<'static, Result<ServiceResponse, Error>>;
|
2019-05-17 17:28:57 +03:00
|
|
|
|
2021-03-22 05:18:59 +00:00
|
|
|
actix_service::forward_ready!(service);
|
2019-05-17 17:28:57 +03:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
fn call(&self, req: ServiceRequest) -> Self::Future {
|
2020-11-18 15:08:03 +00:00
|
|
|
let process_fn = Arc::clone(&self.process_fn);
|
2020-06-11 10:10:18 -05:00
|
|
|
|
|
|
|
let service = Rc::clone(&self.service);
|
2019-05-17 17:28:57 +03:00
|
|
|
|
2020-01-07 01:00:43 +09:00
|
|
|
async move {
|
2020-11-18 15:08:03 +00:00
|
|
|
let (req, credentials) = match Extract::<T>::new(req).await {
|
|
|
|
Ok(req) => req,
|
|
|
|
Err((err, req)) => {
|
|
|
|
return Ok(req.error_response(err));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// TODO: alter to remove ? operator; an error response is required for downstream
|
|
|
|
// middleware to do their thing (eg. cors adding headers)
|
2020-01-07 01:00:43 +09:00
|
|
|
let req = process_fn(req, credentials).await?;
|
2021-03-22 05:18:59 +00:00
|
|
|
|
2021-06-27 07:02:38 +01:00
|
|
|
service
|
|
|
|
.call(req)
|
|
|
|
.await
|
2021-11-22 23:11:58 +00:00
|
|
|
.map(|res| res.map_body(|_, body| AnyBody::new_boxed(body)))
|
2020-01-07 01:00:43 +09:00
|
|
|
}
|
|
|
|
.boxed_local()
|
2019-05-17 17:28:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Extract<T> {
|
|
|
|
req: Option<ServiceRequest>,
|
2020-01-07 01:00:43 +09:00
|
|
|
f: Option<LocalBoxFuture<'static, Result<T, Error>>>,
|
|
|
|
_extractor: PhantomData<fn() -> T>,
|
2019-05-17 17:28:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Extract<T> {
|
|
|
|
pub fn new(req: ServiceRequest) -> Self {
|
|
|
|
Extract {
|
|
|
|
req: Some(req),
|
|
|
|
f: None,
|
|
|
|
_extractor: PhantomData,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Future for Extract<T>
|
|
|
|
where
|
|
|
|
T: AuthExtractor,
|
|
|
|
T::Future: 'static,
|
|
|
|
T::Error: 'static,
|
|
|
|
{
|
2020-11-18 15:08:03 +00:00
|
|
|
type Output = Result<(ServiceRequest, T), (Error, ServiceRequest)>;
|
2019-05-17 17:28:57 +03:00
|
|
|
|
2020-07-21 03:51:51 +09:00
|
|
|
fn poll(mut self: Pin<&mut Self>, ctx: &mut Context<'_>) -> Poll<Self::Output> {
|
2019-05-17 17:28:57 +03:00
|
|
|
if self.f.is_none() {
|
2020-07-21 03:51:51 +09:00
|
|
|
let req = self.req.as_ref().expect("Extract future was polled twice!");
|
2020-01-07 01:00:43 +09:00
|
|
|
let f = T::from_service_request(req).map_err(Into::into);
|
|
|
|
self.f = Some(f.boxed_local());
|
2019-05-17 17:28:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
let f = self
|
|
|
|
.f
|
|
|
|
.as_mut()
|
|
|
|
.expect("Extraction future should be initialized at this point");
|
2020-11-18 15:08:03 +00:00
|
|
|
|
|
|
|
let credentials = ready!(f.as_mut().poll(ctx)).map_err(|err| {
|
|
|
|
(
|
|
|
|
err,
|
|
|
|
// returning request allows a proper error response to be created
|
|
|
|
self.req.take().expect("Extract future was polled twice!"),
|
|
|
|
)
|
|
|
|
})?;
|
2019-05-17 17:28:57 +03:00
|
|
|
|
|
|
|
let req = self.req.take().expect("Extract future was polled twice!");
|
2020-01-07 01:00:43 +09:00
|
|
|
Poll::Ready(Ok((req, credentials)))
|
2019-05-17 17:28:57 +03:00
|
|
|
}
|
|
|
|
}
|
2020-06-11 10:10:18 -05:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use crate::extractors::bearer::BearerAuth;
|
2020-07-21 03:51:51 +09:00
|
|
|
use actix_service::{into_service, Service};
|
|
|
|
use actix_web::test::TestRequest;
|
2021-10-27 04:10:22 +08:00
|
|
|
use actix_web::{error, HttpResponse};
|
2020-06-11 10:10:18 -05:00
|
|
|
|
|
|
|
/// This is a test for https://github.com/actix/actix-extras/issues/10
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_middleware_panic() {
|
2021-03-21 23:50:26 +01:00
|
|
|
let middleware = AuthenticationMiddleware {
|
2021-03-22 05:18:59 +00:00
|
|
|
service: Rc::new(into_service(|_: ServiceRequest| async move {
|
|
|
|
actix_rt::time::sleep(std::time::Duration::from_secs(1)).await;
|
|
|
|
Err::<ServiceResponse, _>(error::ErrorBadRequest("error"))
|
|
|
|
})),
|
2020-07-21 03:51:51 +09:00
|
|
|
process_fn: Arc::new(|req, _: BearerAuth| async { Ok(req) }),
|
2020-06-11 10:10:18 -05:00
|
|
|
_extractor: PhantomData,
|
|
|
|
};
|
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let req = TestRequest::get()
|
|
|
|
.append_header(("Authorization", "Bearer 1"))
|
|
|
|
.to_srv_request();
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let f = middleware.call(req).await;
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let _res = futures_util::future::lazy(|cx| middleware.poll_ready(cx)).await;
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
assert!(f.is_err());
|
2020-06-11 10:10:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/// This is a test for https://github.com/actix/actix-extras/issues/10
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_middleware_panic_several_orders() {
|
2021-03-21 23:50:26 +01:00
|
|
|
let middleware = AuthenticationMiddleware {
|
2021-03-22 05:18:59 +00:00
|
|
|
service: Rc::new(into_service(|_: ServiceRequest| async move {
|
|
|
|
actix_rt::time::sleep(std::time::Duration::from_secs(1)).await;
|
|
|
|
Err::<ServiceResponse, _>(error::ErrorBadRequest("error"))
|
|
|
|
})),
|
2020-07-21 03:51:51 +09:00
|
|
|
process_fn: Arc::new(|req, _: BearerAuth| async { Ok(req) }),
|
2020-06-11 10:10:18 -05:00
|
|
|
_extractor: PhantomData,
|
|
|
|
};
|
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let req = TestRequest::get()
|
|
|
|
.append_header(("Authorization", "Bearer 1"))
|
|
|
|
.to_srv_request();
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let f1 = middleware.call(req).await;
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let req = TestRequest::get()
|
|
|
|
.append_header(("Authorization", "Bearer 1"))
|
|
|
|
.to_srv_request();
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let f2 = middleware.call(req).await;
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let req = TestRequest::get()
|
|
|
|
.append_header(("Authorization", "Bearer 1"))
|
|
|
|
.to_srv_request();
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let f3 = middleware.call(req).await;
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
let _res = futures_util::future::lazy(|cx| middleware.poll_ready(cx)).await;
|
2020-06-11 10:10:18 -05:00
|
|
|
|
2021-03-21 23:50:26 +01:00
|
|
|
assert!(f1.is_err());
|
|
|
|
assert!(f2.is_err());
|
|
|
|
assert!(f3.is_err());
|
2020-06-11 10:10:18 -05:00
|
|
|
}
|
2021-10-27 04:10:22 +08:00
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_middleware_opt_extractor() {
|
|
|
|
let middleware = AuthenticationMiddleware {
|
|
|
|
service: Rc::new(into_service(|req: ServiceRequest| async move {
|
|
|
|
Ok::<ServiceResponse, _>(req.into_response(HttpResponse::Ok().finish()))
|
|
|
|
})),
|
|
|
|
process_fn: Arc::new(|req, auth: Option<BearerAuth>| {
|
|
|
|
assert!(auth.is_none());
|
|
|
|
async { Ok(req) }
|
|
|
|
}),
|
|
|
|
_extractor: PhantomData,
|
|
|
|
};
|
|
|
|
|
|
|
|
let req = TestRequest::get()
|
|
|
|
.append_header(("Authorization996", "Bearer 1"))
|
|
|
|
.to_srv_request();
|
|
|
|
|
|
|
|
let f = middleware.call(req).await;
|
|
|
|
|
|
|
|
let _res = futures_util::future::lazy(|cx| middleware.poll_ready(cx)).await;
|
|
|
|
|
|
|
|
assert!(f.is_ok());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_middleware_res_extractor() {
|
|
|
|
let middleware = AuthenticationMiddleware {
|
|
|
|
service: Rc::new(into_service(|req: ServiceRequest| async move {
|
|
|
|
Ok::<ServiceResponse, _>(req.into_response(HttpResponse::Ok().finish()))
|
|
|
|
})),
|
|
|
|
process_fn: Arc::new(
|
|
|
|
|req, auth: Result<BearerAuth, <BearerAuth as AuthExtractor>::Error>| {
|
|
|
|
assert!(auth.is_err());
|
|
|
|
async { Ok(req) }
|
|
|
|
},
|
|
|
|
),
|
|
|
|
_extractor: PhantomData,
|
|
|
|
};
|
|
|
|
|
|
|
|
let req = TestRequest::get()
|
|
|
|
.append_header(("Authorization", "BearerLOL"))
|
|
|
|
.to_srv_request();
|
|
|
|
|
|
|
|
let f = middleware.call(req).await;
|
|
|
|
|
|
|
|
let _res = futures_util::future::lazy(|cx| middleware.poll_ready(cx)).await;
|
|
|
|
|
|
|
|
assert!(f.is_ok());
|
|
|
|
}
|
2020-06-11 10:10:18 -05:00
|
|
|
}
|