mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Update tests
This commit is contained in:
parent
eea5b3b539
commit
2e66b4b361
3 changed files with 63 additions and 3 deletions
|
@ -292,6 +292,17 @@ mod tests {
|
|||
assert_eq!(res, Poll::Ready(()));
|
||||
}
|
||||
|
||||
#[ntex::test]
|
||||
async fn test_poll_ready2() {
|
||||
let cnt = Rc::new(Cell::new(0));
|
||||
let srv = Box::new(chain(Srv1(cnt.clone())).and_then(Srv2(cnt.clone())));
|
||||
let res = lazy(|cx| srv.poll_ready(cx)).await;
|
||||
assert_eq!(res, Poll::Ready(Ok(())));
|
||||
assert_eq!(cnt.get(), 2);
|
||||
let res = lazy(|cx| srv.poll_shutdown(cx)).await;
|
||||
assert_eq!(res, Poll::Ready(()));
|
||||
}
|
||||
|
||||
#[ntex::test]
|
||||
async fn test_call() {
|
||||
let cnt = Rc::new(Cell::new(0));
|
||||
|
|
|
@ -230,8 +230,8 @@ where
|
|||
let fut = svc.call(
|
||||
req.take().unwrap(),
|
||||
ServiceCtx {
|
||||
idx: *idx,
|
||||
waiters,
|
||||
idx: *idx,
|
||||
_t: marker::PhantomData,
|
||||
},
|
||||
);
|
||||
|
@ -293,8 +293,8 @@ where
|
|||
let fut = svc.call(
|
||||
req.take().unwrap(),
|
||||
ServiceCtx {
|
||||
idx: *idx,
|
||||
waiters,
|
||||
idx: *idx,
|
||||
_t: marker::PhantomData,
|
||||
},
|
||||
);
|
||||
|
@ -340,8 +340,9 @@ mod tests {
|
|||
fn call<'a>(
|
||||
&'a self,
|
||||
req: &'static str,
|
||||
_: ServiceCtx<'a, Self>,
|
||||
ctx: ServiceCtx<'a, Self>,
|
||||
) -> Self::Future<'a> {
|
||||
let _ = ctx.clone();
|
||||
Ready::Ok(req)
|
||||
}
|
||||
}
|
||||
|
@ -409,4 +410,33 @@ mod tests {
|
|||
assert_eq!(cnt.get(), 5);
|
||||
assert_eq!(&*data.borrow(), &["srv2", "srv1"]);
|
||||
}
|
||||
|
||||
#[ntex::test]
|
||||
async fn test_advance_to_call() {
|
||||
let cnt = Rc::new(Cell::new(0));
|
||||
let con = condition::Condition::new();
|
||||
let srv = Pipeline::from(Srv(cnt.clone(), con.wait()));
|
||||
|
||||
let mut fut = srv.service_call("test").advance_to_call();
|
||||
let _ = lazy(|cx| Pin::new(&mut fut).poll(cx)).await;
|
||||
con.notify();
|
||||
|
||||
let res = lazy(|cx| Pin::new(&mut fut).poll(cx)).await;
|
||||
assert!(res.is_ready());
|
||||
}
|
||||
|
||||
#[ntex::test]
|
||||
#[should_panic]
|
||||
async fn test_advance_to_call_panic() {
|
||||
let cnt = Rc::new(Cell::new(0));
|
||||
let con = condition::Condition::new();
|
||||
let srv = Pipeline::from(Srv(cnt.clone(), con.wait()));
|
||||
|
||||
let mut fut = srv.service_call("test");
|
||||
let _ = lazy(|cx| Pin::new(&mut fut).poll(cx)).await;
|
||||
con.notify();
|
||||
|
||||
let _ = lazy(|cx| Pin::new(&mut fut).poll(cx)).await;
|
||||
let _f = fut.advance_to_call();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -109,4 +109,23 @@ mod tests {
|
|||
assert!(factory.create(&true).await.is_err());
|
||||
assert!(factory.create(&false).await.is_ok());
|
||||
}
|
||||
|
||||
#[ntex::test]
|
||||
async fn map_init_err2() {
|
||||
let factory = fn_factory_with_config(|err: &bool| {
|
||||
let err = *err;
|
||||
async move {
|
||||
if err {
|
||||
Err(())
|
||||
} else {
|
||||
Ok(into_service(|i: usize| async move { Ok::<_, ()>(i * 2) }))
|
||||
}
|
||||
}
|
||||
})
|
||||
.map_init_err(|_| std::io::Error::new(std::io::ErrorKind::Other, "err"))
|
||||
.clone();
|
||||
|
||||
assert!(factory.create(&true).await.is_err());
|
||||
assert!(factory.create(&false).await.is_ok());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue