mirror of
https://github.com/ntex-rs/ntex-extras.git
synced 2025-04-03 21:07:40 +03:00
Update tests
This commit is contained in:
parent
fe130477bf
commit
671a645cf3
3 changed files with 40 additions and 30 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue