2019-11-15 10:54:11 +01:00
|
|
|
use std::task::{Context, Poll};
|
|
|
|
|
|
|
|
use actix_service::{Service, ServiceFactory};
|
2020-12-23 02:28:17 +01:00
|
|
|
use futures_util::future::{ready, Ready};
|
2019-04-06 01:46:44 +02:00
|
|
|
|
|
|
|
use crate::error::Error;
|
|
|
|
use crate::request::Request;
|
|
|
|
|
|
|
|
pub struct ExpectHandler;
|
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
impl ServiceFactory<Request> for ExpectHandler {
|
2019-04-06 01:46:44 +02:00
|
|
|
type Response = Request;
|
|
|
|
type Error = Error;
|
2021-01-04 00:47:04 +01:00
|
|
|
type Config = ();
|
2019-04-06 01:46:44 +02:00
|
|
|
type Service = ExpectHandler;
|
|
|
|
type InitError = Error;
|
2019-11-15 10:54:11 +01:00
|
|
|
type Future = Ready<Result<Self::Service, Self::InitError>>;
|
2019-04-06 01:46:44 +02:00
|
|
|
|
2020-12-23 02:28:17 +01:00
|
|
|
fn new_service(&self, _: Self::Config) -> Self::Future {
|
|
|
|
ready(Ok(ExpectHandler))
|
2019-04-06 01:46:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-04 00:47:04 +01:00
|
|
|
impl Service<Request> for ExpectHandler {
|
2019-04-06 01:46:44 +02:00
|
|
|
type Response = Request;
|
|
|
|
type Error = Error;
|
2019-11-15 10:54:11 +01:00
|
|
|
type Future = Ready<Result<Self::Response, Self::Error>>;
|
2019-04-06 01:46:44 +02:00
|
|
|
|
2019-12-07 19:46:51 +01:00
|
|
|
fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
|
2019-11-15 10:54:11 +01:00
|
|
|
Poll::Ready(Ok(()))
|
2019-04-06 01:46:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn call(&mut self, req: Request) -> Self::Future {
|
2020-12-23 02:28:17 +01:00
|
|
|
ready(Ok(req))
|
|
|
|
// TODO: add some way to trigger error
|
|
|
|
// Err(error::ErrorExpectationFailed("test"))
|
2019-04-06 01:46:44 +02:00
|
|
|
}
|
|
|
|
}
|