You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@mesos.apache.org by Benjamin Bannier <be...@mesosphere.io> on 2017/08/02 09:55:04 UTC

Re: Review Request 61098: Added unit tests for gRPC support in libprocess.

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/61098/#review181955
-----------------------------------------------------------



I believe adding generated protobuf files to the repository is not a good idea (in addition to being highly redundant it also might not work if a user uses e.g., an unbundled protobuf-2.6.1). Have a look at `e6ec4e8362552cbaf74bf3e844e7ac4b15f9aafd` for an example of how to generate test proto files during the build instead of checking them in.

- Benjamin Bannier


On July 28, 2017, 2:49 a.m., Chun-Hung Hsiao wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviews.apache.org/r/61098/
> -----------------------------------------------------------
> 
> (Updated July 28, 2017, 2:49 a.m.)
> 
> 
> Review request for mesos, Benjamin Mahler, Jie Yu, and Joseph Wu.
> 
> 
> Bugs: MESOS-7810
>     https://issues.apache.org/jira/browse/MESOS-7810
> 
> 
> Repository: mesos
> 
> 
> Description
> -------
> 
> We tested the following 6 scenarios when making gRPC calls:
> 
> 1. The server responds with an OK.
> 2. The server responds with a failure.
> 3. The client discards the calls.
> 4. The client makes mulitple outstanding calls.
> 5. The client shuts down during a call.
> 6. The server is unreachable.
> 7. The server dose not respond in time.
> 
> `grpc_tests.pb.h`, `grpc_tests.pb.cc`, `grpc_tests.grpc.pb.h` and
> `grpc_tests.grpc.pb.cc` are created with protobuf 3.3.0 and grpc
> 1.4.2 through the following command, assuming the current working
> directory is `3rdparty/libprocess/src/tests`:
> $ /path/to/protoc -I. --cpp_out=. --grpc_out=. \
>   --plugin=protoc-gen-grpc=/path/to/grpc_cpp_plugin \
>   grpc_tests.proto
> 
> 
> Diffs
> -----
> 
>   3rdparty/libprocess/src/tests/grpc_tests.cpp PRE-CREATION 
>   3rdparty/libprocess/src/tests/grpc_tests.grpc.pb.h PRE-CREATION 
>   3rdparty/libprocess/src/tests/grpc_tests.grpc.pb.cc PRE-CREATION 
>   3rdparty/libprocess/src/tests/grpc_tests.pb.h PRE-CREATION 
>   3rdparty/libprocess/src/tests/grpc_tests.pb.cc PRE-CREATION 
>   3rdparty/libprocess/src/tests/grpc_tests.proto PRE-CREATION 
> 
> 
> Diff: https://reviews.apache.org/r/61098/diff/4/
> 
> 
> Testing
> -------
> 
> N/A
> 
> 
> Thanks,
> 
> Chun-Hung Hsiao
> 
>