Prepare release

This commit is contained in:
Nikolay Kim 2023-01-24 08:46:56 +01:00
parent 251e63063e
commit 7abd4a61f8
3 changed files with 8 additions and 7 deletions

View file

@ -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

View file

@ -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"]

View file

@ -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());
}
}