mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-06 06:17:40 +03:00
add map_init_err test
This commit is contained in:
parent
98793385c2
commit
96513ea664
1 changed files with 23 additions and 0 deletions
|
@ -93,3 +93,26 @@ where
|
||||||
this.fut.poll(cx).map_err(this.f)
|
this.fut.poll(cx).map_err(this.f)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use futures_util::future::ok;
|
||||||
|
|
||||||
|
use crate::{fn_factory_with_config, fn_service, pipeline_factory, ServiceFactory};
|
||||||
|
|
||||||
|
#[ntex_rt::test]
|
||||||
|
async fn map_init_err() {
|
||||||
|
let factory = pipeline_factory(fn_factory_with_config(|err: bool| async move {
|
||||||
|
if err {
|
||||||
|
Err(())
|
||||||
|
} else {
|
||||||
|
Ok(fn_service(|i: usize| ok::<_, ()>(i * 2)))
|
||||||
|
}
|
||||||
|
}))
|
||||||
|
.map_init_err(|_| std::io::Error::new(std::io::ErrorKind::Other, "err"))
|
||||||
|
.clone();
|
||||||
|
|
||||||
|
assert!(factory.new_service(true).await.is_err());
|
||||||
|
assert!(factory.new_service(false).await.is_ok());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue