mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Prepare release
This commit is contained in:
parent
251e63063e
commit
7abd4a61f8
3 changed files with 8 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
# Changes
|
||||
|
||||
## [1.0.1] - 2023-1-23
|
||||
## [1.0.1] - 2023-01-24
|
||||
|
||||
* Add `FnShutdown` service to provide on_shutdown callback
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-service"
|
||||
version = "1.0.0"
|
||||
version = "1.0.1"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "ntex service"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
|
|
@ -68,7 +68,7 @@ where
|
|||
#[cfg(test)]
|
||||
mod tests {
|
||||
use ntex_util::future::lazy;
|
||||
use std::task::Poll;
|
||||
use std::{rc::Rc, task::Poll};
|
||||
|
||||
use crate::{fn_service, pipeline};
|
||||
|
||||
|
@ -76,19 +76,20 @@ mod tests {
|
|||
|
||||
#[ntex::test]
|
||||
async fn test_fn_shutdown() {
|
||||
let mut is_called = false;
|
||||
let is_called = Rc::new(Cell::new(false));
|
||||
let srv = fn_service(|_| async { Ok::<_, ()>("pipe") });
|
||||
let is_called2 = is_called.clone();
|
||||
let on_shutdown = fn_shutdown(|| {
|
||||
is_called = true;
|
||||
is_called2.set(true);
|
||||
});
|
||||
|
||||
let pipe = pipeline(srv).and_then(on_shutdown);
|
||||
let pipe = pipeline(srv).and_then(on_shutdown).clone();
|
||||
|
||||
let res = pipe.call(()).await;
|
||||
assert_eq!(lazy(|cx| pipe.poll_ready(cx)).await, Poll::Ready(Ok(())));
|
||||
assert!(res.is_ok());
|
||||
assert_eq!(res.unwrap(), "pipe");
|
||||
assert_eq!(lazy(|cx| pipe.poll_shutdown(cx)).await, Poll::Ready(()));
|
||||
assert!(is_called);
|
||||
assert!(is_called.get());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue