This commit is contained in:
Nikolay Kim 2025-01-15 17:02:28 +05:00
parent 5ffca95d6b
commit df25fd1bb5
3 changed files with 51 additions and 2 deletions

View file

@ -4,6 +4,8 @@
* Add EitherService/EitherServiceFactory
* Add retry middleware
* Add future on drop handler
## [2.8.0] - 2024-12-04

View file

@ -1,5 +1,5 @@
#![allow(async_fn_in_trait)]
use ntex_service::{Service, ServiceCtx, Middleware};
use ntex_service::{Middleware, Service, ServiceCtx};
/// Trait defines retry policy
pub trait Policy<Req, S: Service<Req>>: Sized + Clone {
@ -128,3 +128,50 @@ where
Some(req.clone())
}
}
#[cfg(test)]
mod tests {
use std::{cell::Cell, rc::Rc};
use ntex_service::{apply, fn_factory, Pipeline, ServiceFactory};
use super::*;
#[derive(Clone, Debug, PartialEq)]
struct TestService(Rc<Cell<usize>>);
impl Service<()> for TestService {
type Response = ();
type Error = ();
async fn call(&self, _: (), _: ServiceCtx<'_, Self>) -> Result<(), ()> {
let cnt = self.0.get();
if cnt == 0 {
Ok(())
} else {
self.0.set(cnt - 1);
Err(())
}
}
}
#[ntex_macros::rt_test2]
async fn test_retry() {
let cnt = Rc::new(Cell::new(5));
let svc = Pipeline::new(
RetryService::new(DefaultRetryPolicy::default(), TestService(cnt.clone()))
.clone(),
);
assert_eq!(svc.call(()).await, Err(()));
assert_eq!(svc.ready().await, Ok(()));
svc.shutdown().await;
assert_eq!(cnt.get(), 1);
let factory = apply(
Retry::new(DefaultRetryPolicy::new(3)).clone(),
fn_factory(|| async { Ok::<_, ()>(TestService(Rc::new(Cell::new(2)))) }),
);
let srv = factory.pipeline(&()).await.unwrap();
assert_eq!(srv.call(()).await, Ok(()));
}
}

View file

@ -210,7 +210,7 @@ mod tests {
#[ntex_macros::rt_test2]
#[allow(clippy::redundant_clone)]
async fn test_timeout_newservice() {
async fn test_timeout_middleware() {
let resolution = Duration::from_millis(100);
let wait_time = Duration::from_millis(500);