Basic default client

This commit is contained in:
Lucio Franco
2019-08-31 00:52:26 -04:00
parent 0393172f95
commit 2ce4a7969e
9 changed files with 102 additions and 47 deletions
+2 -10
View File
@@ -1,7 +1,4 @@
use hyper::client::conn::Builder;
use hyper::client::connect::HttpConnector;
use hyper::client::service::{Connect, MakeService};
use tonic::service::add_origin::AddOrigin;
use tonic::transport::Client;
pub mod hello_world {
include!(concat!(env!("OUT_DIR"), "/helloworld.rs"));
@@ -12,12 +9,7 @@ pub mod hello_world {
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let origin = http::Uri::from_static("http://[::1]:50051");
let settings = Builder::new().http2_only(true).clone();
let mut maker = Connect::new(HttpConnector::new(), settings);
let svc = maker.make_service(origin.clone()).await?;
let svc = AddOrigin::new(svc, origin);
let svc = Client::connect(origin).await?;
let mut client = hello_world::GreeterClient::new(svc);
-2
View File
@@ -1,6 +1,4 @@
use hyper::Server;
use std::time::Duration;
use tokio::timer::Delay;
use tonic::{Request, Response, Status};
pub mod hello_world {
+2 -8
View File
@@ -5,8 +5,7 @@ use hyper::client::service::{Connect, MakeService};
use route_guide::{Point, RouteNote};
use std::time::{Duration, Instant};
use tokio::timer::Interval;
use tonic::service::add_origin::AddOrigin;
use tonic::Request;
use tonic::{Request, transport::Client};
mod route_guide {
include!(concat!(env!("OUT_DIR"), "/routeguide.rs"));
@@ -17,12 +16,7 @@ mod route_guide {
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let origin = http::Uri::from_static("http://[::1]:10000");
let settings = Builder::new().http2_only(true).clone();
let mut maker = Connect::new(HttpConnector::new(), settings);
let svc = maker.make_service(origin.clone()).await?;
let svc = AddOrigin::new(svc, origin);
let svc = Client::connect(origin).await?;
let mut client = route_guide::RouteGuideClient::new(svc);
let start = Instant::now();
+16 -27
View File
@@ -1,15 +1,12 @@
use crate::{pb::*, test_assert, TestAssertion};
use futures_util::{future, stream, SinkExt, StreamExt};
use hyper::client::conn::{Builder, SendRequest};
use hyper::client::connect::HttpConnector;
use hyper::client::service::{Connect, MakeService};
use std::net::SocketAddr;
use tokio::sync::mpsc;
use tonic::service::add_origin::AddOrigin;
use tonic::{metadata::MetadataValue, Code, Request, Response, Status};
use tonic::transport::Client;
pub type Client = TestServiceClient<AddOrigin<SendRequest<tonic::BoxBody>>>;
pub type UnimplementedClient = UnimplementedServiceClient<AddOrigin<SendRequest<tonic::BoxBody>>>;
pub type TestClient = TestServiceClient<Client>;
pub type UnimplementedClient = UnimplementedServiceClient<Client>;
tonic::client!(service = "grpc.testing.TestService", proto = "crate::pb");
tonic::client!(
@@ -25,14 +22,10 @@ const TEST_STATUS_MESSAGE: &'static str = "test status message";
const SPECIAL_TEST_STATUS_MESSAGE: &'static str =
"\t\ntest with whitespace\r\nand Unicode BMP ☺ and non-BMP 😈\t\n";
pub async fn create(addr: SocketAddr) -> Result<Client, Box<dyn std::error::Error>> {
pub async fn create(addr: SocketAddr) -> Result<TestClient, Box<dyn std::error::Error>> {
let origin = http::Uri::from_shared(format!("http://{}", addr).into()).unwrap();
let settings = Builder::new().http2_only(true).clone();
let mut maker = Connect::new(HttpConnector::new(), settings);
let svc = maker.make_service(origin.clone()).await?;
let svc = AddOrigin::new(svc, origin);
let svc = Client::connect(origin).await?;
Ok(TestServiceClient::new(svc))
}
@@ -42,16 +35,12 @@ pub async fn create_unimplemented(
) -> Result<UnimplementedClient, Box<dyn std::error::Error>> {
let origin = http::Uri::from_shared(format!("http://{}", addr).into()).unwrap();
let settings = Builder::new().http2_only(true).clone();
let mut maker = Connect::new(HttpConnector::new(), settings);
let svc = maker.make_service(origin.clone()).await?;
let svc = AddOrigin::new(svc, origin);
let svc = Client::connect(origin).await?;
Ok(UnimplementedServiceClient::new(svc))
}
pub async fn empty_unary(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn empty_unary(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
let result = client.empty_call(Request::new(Empty {})).await;
assertions.push(test_assert!(
@@ -70,7 +59,7 @@ pub async fn empty_unary(client: &mut Client, assertions: &mut Vec<TestAssertion
}
}
pub async fn large_unary(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn large_unary(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
use std::mem;
let payload = crate::client_payload(LARGE_REQ_SIZE);
let req = SimpleRequest {
@@ -114,7 +103,7 @@ pub async fn large_unary(client: &mut Client, assertions: &mut Vec<TestAssertion
// client.
// }
pub async fn client_streaming(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn client_streaming(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
let requests = REQUEST_LENGTHS
.iter()
.map(|len| StreamingInputCallRequest {
@@ -144,7 +133,7 @@ pub async fn client_streaming(client: &mut Client, assertions: &mut Vec<TestAsse
}
}
pub async fn server_streaming(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn server_streaming(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
let req = StreamingOutputCallRequest {
response_parameters: RESPONSE_LENGTHS
.iter()
@@ -186,7 +175,7 @@ pub async fn server_streaming(client: &mut Client, assertions: &mut Vec<TestAsse
}
}
pub async fn ping_pong(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn ping_pong(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
let (mut tx, rx) = mpsc::unbounded_channel();
tx.try_send(make_ping_pong_request(0)).unwrap();
@@ -243,7 +232,7 @@ pub async fn ping_pong(client: &mut Client, assertions: &mut Vec<TestAssertion>)
}
}
pub async fn empty_stream(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn empty_stream(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
let stream = stream::iter(Vec::new());
let result = client.full_duplex_call(Request::new(stream)).await;
@@ -264,7 +253,7 @@ pub async fn empty_stream(client: &mut Client, assertions: &mut Vec<TestAssertio
}
}
pub async fn status_code_and_message(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn status_code_and_message(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
fn validate_response<T>(result: Result<T, Status>, assertions: &mut Vec<TestAssertion>)
where
T: std::fmt::Debug,
@@ -322,7 +311,7 @@ pub async fn status_code_and_message(client: &mut Client, assertions: &mut Vec<T
validate_response(result, assertions);
}
pub async fn special_status_message(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn special_status_message(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
let req = SimpleRequest {
response_status: Some(EchoStatus {
code: 2,
@@ -353,7 +342,7 @@ pub async fn special_status_message(client: &mut Client, assertions: &mut Vec<Te
));
}
pub async fn unimplemented_method(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn unimplemented_method(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
let result = client.unimplemented_call(Request::new(Empty {})).await;
assertions.push(test_assert!(
"call must fail with unimplemented status code",
@@ -380,7 +369,7 @@ pub async fn unimplemented_service(
));
}
pub async fn custom_metadata(client: &mut Client, assertions: &mut Vec<TestAssertion>) {
pub async fn custom_metadata(client: &mut TestClient, assertions: &mut Vec<TestAssertion>) {
let key1 = "x-grpc-test-echo-initial";
let value1 = MetadataValue::from_str("test_initial_metadata_value").unwrap();
let key2 = "x-grpc-test-echo-trailing-bin";
+5
View File
@@ -22,3 +22,8 @@ tokio-codec = "=0.2.0-alpha.4"
async-stream = { path = "../../async-stream/async-stream" }
http-body = "0.2.0-alpha.1"
pin-project = "0.4.0-alpha.2"
hyper = { git = "https://github.com/hyperium/hyper", optional = true}
[features]
default = ["transport"]
transport = ["hyper"]
+3
View File
@@ -11,6 +11,9 @@ pub mod metadata;
pub mod server;
pub mod service;
#[cfg(feature = "transport")]
pub mod transport;
mod request;
mod response;
mod status;
+3
View File
@@ -1,5 +1,8 @@
// TODO: make this private again
pub mod add_origin;
pub use self::add_origin::AddOrigin;
use crate::body::Body;
use http::{Request, Response};
use http_body::Body as HttpBody;
+68
View File
@@ -0,0 +1,68 @@
use crate::{
body::BoxBody,
service::{AddOrigin, GrpcService},
};
use http::Uri;
use hyper::client::conn;
use hyper::{Request, Response};
use std::task::{Context, Poll};
use tower_service::Service;
use hyper::client::conn::Builder;
use hyper::client::connect::HttpConnector;
use hyper::client::service::{Connect, MakeService};
//type BoxFuture<'a, T> = Pin<Box<dyn Future<Output = T> + Send + 'a>>;
type BoxService = Box<
dyn GrpcService<
BoxBody,
ResponseBody = hyper::Body,
Error = hyper::Error,
Future = conn::ResponseFuture, //BoxFuture<'static, Result<Response<hyper::Body>, hyper::Error>>,
> + Send
+ 'static,
>;
// #[derive/(Clone)]
pub struct Client {
svc: BoxService,
}
impl Client {
pub async fn connect(addr: Uri) -> Result<Self, hyper::Error> {
let settings = Builder::new().http2_only(true).clone();
let mut maker = Connect::new(HttpConnector::new(), settings);
maker.make_service(addr.clone()).await.map(|svc| Self::new(addr, svc))
}
fn new<S>(addr: Uri, service: S) -> Self
where
S: Service<
Request<BoxBody>,
Response = Response<hyper::Body>,
Error = hyper::Error,
Future = conn::ResponseFuture, //BoxFuture<'static, Result<Response<hyper::Body>, hyper::Error>>,
> + Send
+ 'static,
{
let svc = AddOrigin::new(service, addr);
Self { svc: Box::new(svc) }
}
}
impl GrpcService<BoxBody> for Client {
type ResponseBody = hyper::Body;
type Error = hyper::Error;
// type Future = BoxFuture<'static, Result<Response<Self::ResponseBody>, Self::Error>>;
type Future = conn::ResponseFuture;
fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
self.svc.poll_ready(cx)
}
fn call(&mut self, request: Request<BoxBody>) -> Self::Future {
self.svc.call(request)
}
}
+3
View File
@@ -0,0 +1,3 @@
mod client;
pub use self::client::Client;