Files
tonic/tests/integration_tests/tests/extensions.rs
T
David PedersenandGitHub 352b0f584b feat(tonic): add Request and Response extensions (#642)
Adds `tonic::Extensions` which is a newtype around `http::Extensions`.

Request extensions can be set by interceptors with
`Request::extensions_mut` and retrieved from RPCs with
`Request::extensions`. Extensions can also be set in tower middleware
and will be carried through to the RPC.

Since response extensions cannot be set by interceptors the main use
case is to set them in RPCs and retrieve them in tower middlewares.
Figured that might be useful.

Fixes https://github.com/hyperium/tonic/issues/255
2021-05-13 15:54:20 +02:00

145 lines
3.7 KiB
Rust

use futures_util::FutureExt;
use hyper::{Body, Request as HyperRequest, Response as HyperResponse};
use integration_tests::pb::{test_client, test_server, Input, Output};
use std::{
task::{Context, Poll},
time::Duration,
};
use tokio::sync::oneshot;
use tonic::{
body::BoxBody,
transport::{Endpoint, NamedService, Server},
Request, Response, Status,
};
use tower_service::Service;
struct ExtensionValue(i32);
#[tokio::test]
async fn setting_extension_from_interceptor() {
struct Svc;
#[tonic::async_trait]
impl test_server::Test for Svc {
async fn unary_call(&self, req: Request<Input>) -> Result<Response<Output>, Status> {
let value = req.extensions().get::<ExtensionValue>().unwrap();
assert_eq!(value.0, 42);
Ok(Response::new(Output {}))
}
}
let svc = test_server::TestServer::with_interceptor(Svc, |mut req: Request<()>| {
req.extensions_mut().insert(ExtensionValue(42));
Ok(req)
});
let (tx, rx) = oneshot::channel::<()>();
let jh = tokio::spawn(async move {
Server::builder()
.add_service(svc)
.serve_with_shutdown("127.0.0.1:1323".parse().unwrap(), rx.map(drop))
.await
.unwrap();
});
tokio::time::sleep(Duration::from_millis(100)).await;
let channel = Endpoint::from_static("http://127.0.0.1:1323")
.connect()
.await
.unwrap();
let mut client = test_client::TestClient::new(channel);
client.unary_call(Input {}).await.unwrap();
tx.send(()).unwrap();
jh.await.unwrap();
}
#[tokio::test]
async fn setting_extension_from_tower() {
struct Svc;
#[tonic::async_trait]
impl test_server::Test for Svc {
async fn unary_call(&self, req: Request<Input>) -> Result<Response<Output>, Status> {
let value = req.extensions().get::<ExtensionValue>().unwrap();
assert_eq!(value.0, 42);
Ok(Response::new(Output {}))
}
}
let svc = InterceptedService {
inner: test_server::TestServer::new(Svc),
};
let (tx, rx) = oneshot::channel::<()>();
let jh = tokio::spawn(async move {
Server::builder()
.add_service(svc)
.serve_with_shutdown("127.0.0.1:1324".parse().unwrap(), rx.map(drop))
.await
.unwrap();
});
tokio::time::sleep(Duration::from_millis(100)).await;
let channel = Endpoint::from_static("http://127.0.0.1:1324")
.connect()
.await
.unwrap();
let mut client = test_client::TestClient::new(channel);
client.unary_call(Input {}).await.unwrap();
tx.send(()).unwrap();
jh.await.unwrap();
}
#[derive(Debug, Clone)]
struct InterceptedService<S> {
inner: S,
}
impl<S> Service<HyperRequest<Body>> for InterceptedService<S>
where
S: Service<HyperRequest<Body>, Response = HyperResponse<BoxBody>>
+ NamedService
+ Clone
+ Send
+ 'static,
S::Future: Send + 'static,
{
type Response = S::Response;
type Error = S::Error;
type Future = futures::future::BoxFuture<'static, Result<Self::Response, Self::Error>>;
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.inner.poll_ready(cx)
}
fn call(&mut self, mut req: HyperRequest<Body>) -> Self::Future {
let clone = self.inner.clone();
let mut inner = std::mem::replace(&mut self.inner, clone);
req.extensions_mut().insert(ExtensionValue(42));
Box::pin(async move {
let response = inner.call(req).await?;
Ok(response)
})
}
}
impl<S: NamedService> NamedService for InterceptedService<S> {
const NAME: &'static str = S::NAME;
}