Update tests

This commit is contained in:
Nikolay Kim 2023-06-19 20:16:56 +06:00
parent fe130477bf
commit 671a645cf3
3 changed files with 40 additions and 30 deletions

View file

@ -583,7 +583,7 @@ mod tests {
use super::*;
use ntex::web::test::{self, TestRequest};
use ntex::web::{self, error, App, Error, HttpResponse};
use ntex::{http::StatusCode, service::into_service, time};
use ntex::{http::StatusCode, service::into_service, service::Container, time};
const COOKIE_KEY_MASTER: [u8; 32] = [0; 32];
const COOKIE_NAME: &str = "ntex_auth";
@ -700,8 +700,9 @@ mod tests {
F: Fn(CookieIdentityPolicy) -> CookieIdentityPolicy + Sync + Send + Clone + 'static,
>(
f: F,
) -> impl ntex::service::Service<ntex::http::Request, Response = WebResponse, Error = Error>
{
) -> Container<
impl ntex::service::Service<ntex::http::Request, Response = WebResponse, Error = Error>,
> {
test::init_service(
App::new()
.wrap(IdentityService::new(f(CookieIdentityPolicy::new(&COOKIE_KEY_MASTER)
@ -1006,13 +1007,14 @@ mod tests {
}
}
let srv = IdentityServiceMiddleware {
let srv: Container<_> = IdentityServiceMiddleware {
backend: Rc::new(Ident),
service: Rc::new(into_service(|_: WebRequest<DefaultError>| async move {
service: into_service(|_: WebRequest<DefaultError>| async move {
time::sleep(time::Seconds(100)).await;
Err::<WebResponse, _>(error::ErrorBadRequest("error"))
})),
};
}),
}
.into();
let srv2 = srv.clone();
let req = TestRequest::default().to_srv_request();