-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tonic: Introduce a new method on Endpoint to override the origin (#1013)
- Loading branch information
Quentin Perez
authored
Jun 20, 2022
1 parent
8287988
commit 4388d82
Showing
4 changed files
with
151 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
use futures::future::BoxFuture; | ||
use futures_util::FutureExt; | ||
use integration_tests::pb::test_client; | ||
use integration_tests::pb::{test_server, Input, Output}; | ||
use std::task::Context; | ||
use std::task::Poll; | ||
use std::time::Duration; | ||
use tokio::sync::oneshot; | ||
use tonic::codegen::http::Request; | ||
use tonic::{ | ||
transport::{Endpoint, Server}, | ||
Response, Status, | ||
}; | ||
use tower::Layer; | ||
use tower::Service; | ||
|
||
#[tokio::test] | ||
async fn writes_origin_header() { | ||
struct Svc; | ||
|
||
#[tonic::async_trait] | ||
impl test_server::Test for Svc { | ||
async fn unary_call( | ||
&self, | ||
_req: tonic::Request<Input>, | ||
) -> Result<Response<Output>, Status> { | ||
Ok(Response::new(Output {})) | ||
} | ||
} | ||
|
||
let svc = test_server::TestServer::new(Svc); | ||
|
||
let (tx, rx) = oneshot::channel::<()>(); | ||
|
||
let jh = tokio::spawn(async move { | ||
Server::builder() | ||
.layer(OriginLayer {}) | ||
.add_service(svc) | ||
.serve_with_shutdown("127.0.0.1:1442".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:1442") | ||
.origin("https://docs.rs".parse().expect("valid uri")) | ||
.connect() | ||
.await | ||
.unwrap(); | ||
|
||
let mut client = test_client::TestClient::new(channel); | ||
|
||
match client.unary_call(Input {}).await { | ||
Ok(_) => {} | ||
Err(status) => panic!("{}", status.message()), | ||
} | ||
|
||
tx.send(()).unwrap(); | ||
|
||
jh.await.unwrap(); | ||
} | ||
|
||
#[derive(Clone)] | ||
struct OriginLayer {} | ||
|
||
impl<S> Layer<S> for OriginLayer { | ||
type Service = OriginService<S>; | ||
|
||
fn layer(&self, inner: S) -> Self::Service { | ||
OriginService { inner } | ||
} | ||
} | ||
|
||
#[derive(Clone)] | ||
struct OriginService<S> { | ||
inner: S, | ||
} | ||
|
||
impl<T> Service<Request<tonic::transport::Body>> for OriginService<T> | ||
where | ||
T: Service<Request<tonic::transport::Body>>, | ||
T::Future: Send + 'static, | ||
T::Error: Into<Box<dyn std::error::Error + Send + Sync>>, | ||
{ | ||
type Response = T::Response; | ||
type Error = Box<dyn std::error::Error + Send + Sync>; | ||
type 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).map_err(Into::into) | ||
} | ||
|
||
fn call(&mut self, req: Request<tonic::transport::Body>) -> Self::Future { | ||
assert_eq!(req.uri().host(), Some("docs.rs")); | ||
let fut = self.inner.call(req); | ||
|
||
Box::pin(async move { fut.await.map_err(Into::into) }) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters