* transport: Support timeouts with "grpc-timeout" header * Apply suggestions from code review Co-authored-by: Lucio Franco <[email protected]> * Timeout -> GrpcTimeout and export TimeoutExpired * Clean up imports * Give header name a more proper home * Add fuzz tests for parsing header value into `grpc-timeout` * Map `TimeoutExpired` to `cancelled` status * Recover from timeout errors in the service * Refactor tests * Fix CI * Fix CI, again Co-authored-by: Lucio Franco <[email protected]>
93 lines
2.8 KiB
Rust
93 lines
2.8 KiB
Rust
use integration_tests::pb::{test_client, test_server, Input, Output};
|
|
use std::{net::SocketAddr, time::Duration};
|
|
use tokio::net::TcpListener;
|
|
use tonic::{transport::Server, Code, Request, Response, Status};
|
|
|
|
#[tokio::test]
|
|
async fn cancelation_on_timeout() {
|
|
let addr = run_service_in_background(Duration::from_secs(1), Duration::from_secs(100)).await;
|
|
|
|
let mut client = test_client::TestClient::connect(format!("http://{}", addr))
|
|
.await
|
|
.unwrap();
|
|
|
|
let mut req = Request::new(Input {});
|
|
req.metadata_mut()
|
|
// 500 ms
|
|
.insert("grpc-timeout", "500m".parse().unwrap());
|
|
|
|
let res = client.unary_call(req).await;
|
|
|
|
let err = res.unwrap_err();
|
|
assert!(err.message().contains("Timeout expired"));
|
|
assert_eq!(err.code(), Code::Cancelled);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn picks_server_timeout_if_thats_sorter() {
|
|
let addr = run_service_in_background(Duration::from_secs(1), Duration::from_millis(100)).await;
|
|
|
|
let mut client = test_client::TestClient::connect(format!("http://{}", addr))
|
|
.await
|
|
.unwrap();
|
|
|
|
let mut req = Request::new(Input {});
|
|
req.metadata_mut()
|
|
// 10 hours
|
|
.insert("grpc-timeout", "10H".parse().unwrap());
|
|
|
|
let res = client.unary_call(req).await;
|
|
let err = res.unwrap_err();
|
|
assert!(err.message().contains("Timeout expired"));
|
|
assert_eq!(err.code(), Code::Cancelled);
|
|
}
|
|
|
|
#[tokio::test]
|
|
async fn picks_client_timeout_if_thats_sorter() {
|
|
let addr = run_service_in_background(Duration::from_secs(1), Duration::from_secs(100)).await;
|
|
|
|
let mut client = test_client::TestClient::connect(format!("http://{}", addr))
|
|
.await
|
|
.unwrap();
|
|
|
|
let mut req = Request::new(Input {});
|
|
req.metadata_mut()
|
|
// 100 ms
|
|
.insert("grpc-timeout", "100m".parse().unwrap());
|
|
|
|
let res = client.unary_call(req).await;
|
|
let err = res.unwrap_err();
|
|
assert!(err.message().contains("Timeout expired"));
|
|
assert_eq!(err.code(), Code::Cancelled);
|
|
}
|
|
|
|
async fn run_service_in_background(latency: Duration, server_timeout: Duration) -> SocketAddr {
|
|
struct Svc {
|
|
latency: Duration,
|
|
}
|
|
|
|
#[tonic::async_trait]
|
|
impl test_server::Test for Svc {
|
|
async fn unary_call(&self, _req: Request<Input>) -> Result<Response<Output>, Status> {
|
|
tokio::time::sleep(self.latency).await;
|
|
Ok(Response::new(Output {}))
|
|
}
|
|
}
|
|
|
|
let svc = test_server::TestServer::new(Svc { latency });
|
|
|
|
let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
|
|
let addr = listener.local_addr().unwrap();
|
|
|
|
tokio::spawn(async move {
|
|
Server::builder()
|
|
.timeout(server_timeout)
|
|
.add_service(svc)
|
|
.serve_with_incoming(tokio_stream::wrappers::TcpListenerStream::new(listener))
|
|
.await
|
|
.unwrap();
|
|
});
|
|
|
|
addr
|
|
}
|