aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop/client.cc
Commit message (Collapse)AuthorAge
...
* | Return 1 when test_case is not supported in interop testGravatar Yang Gao2015-04-15
|/
* Split interop client and server into componentsGravatar Yang Gao2015-04-09
|
* Splitting gRPC service class codegen into its own set of files.Gravatar Nicolas "Pixel" Noble2015-04-09
|
* sync to head and run clang-format againGravatar Yang Gao2015-03-19
|\
| * Print out status when it is not ok in interop testsGravatar Yang Gao2015-03-17
| |
* | clang-format c++ codeGravatar Yang Gao2015-03-17
|/
* add a jwt test case for interop testGravatar Yang Gao2015-03-11
|
* Merge branch 'master' into jwtGravatar Yang Gao2015-03-11
|\
| * Merge github.com:grpc/grpc into creditGravatar Craig Tiller2015-03-02
| |\
* | | add jwt token creds test_caseGravatar Yang Gao2015-02-27
| |/ |/|
* | Make it possible to compile with gcc4.6Gravatar Craig Tiller2015-02-26
| |
| * Merge github.com:grpc/grpc into creditGravatar Craig Tiller2015-02-26
| |\ | |/ |/|
* | Verifying the peer name on the X509 Certs correctly.Gravatar Julien Boeuf2015-02-23
| | | | | | | | | | | | | | - The SANs take precedence over the CN. - The CN is only checked if there are no SANs. - Fixing the tests as the test cert did not list *.test.google.com in the SANs. Will fix the test cert another time...
| * Credentials prototypingGravatar Craig Tiller2015-02-23
|/ | | | | | - Remove CredentialsFactory as it's unnecessary - Effectively make Credentials a channel factory, allowing different credential types to create different channel types - this gives us a hook so that InsecureCredentials can at runtime instantiate a different kind of channel as required - giving us a way of generating an openssl free version of grpc++. - Server credentials not touched yet, but they'll need to be updated.
* Making the usage of gflags uniform across distributions.Gravatar Nicolas "Pixel" Noble2015-02-20
|
* Fixing gflags' include path.Gravatar Nicolas "Pixel" Noble2015-02-20
|
* Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
|
* Update copyright to 2015Gravatar Craig Tiller2015-02-18
|
* Compile fixesGravatar Craig Tiller2015-02-13
|
* Fixup callers with new apiGravatar Craig Tiller2015-02-09
|
* Few minor fixes.Gravatar Nicolas "Pixel" Noble2015-02-06
| | | | | Fixing a few issues in case you *cough* have a different local implementation of protobuf, gtest and gflags for some weird reason.
* formatGravatar Yang Gao2015-01-27
|
* make the flag name shorterGravatar Yang Gao2015-01-27
|
* add compute engine credentials supportGravatar Yang Gao2015-01-27
|
* resolve commentsGravatar Yang Gao2015-01-27
|
* Let each test case create its own channel.Gravatar Yang Gao2015-01-26
|
* add service_account support into interop clientGravatar Yang Gao2015-01-26
|
* kNumResponseMessages is an int, so i is doing signedness mismatch.Gravatar Nicolas "Pixel" Noble2015-01-22
|
* clang-format codebaseGravatar Craig Tiller2015-01-13
|
* Enable streaming test case for gRPC client in GCE.Gravatar chenw2015-01-09
| | | | | | | Change on 2015/01/08 by chenw <chenw@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=83549959
* Add Flags to override host and enable prod ssl root.Gravatar chenw2014-12-29
| | | | | | | Change on 2014/12/22 by chenw <chenw@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82679415
* Client side implementation of creating channel with credentials.Gravatar yangg2014-12-29
| | | | | | | | | The old test_ssl_channel related code is deleted and the new create channel call is used for interop tests. Change on 2014/12/19 by yangg <yangg@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82540921
* Add slow client consumer test case for flow control test.Gravatar chenw2014-12-16
| | | | | | | | The client will sleep 500 milliseconds before read next message in reponse streaming. Change on 2014/12/16 by chenw <chenw@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82265748
* Use '\0' instead of '0' in payload as java client actually checks that.Gravatar yangg2014-12-15
| | | | | | | Change on 2014/12/12 by yangg <yangg@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=82023559
* Fixes package prefixesGravatar temiola2014-12-12
| | | | | | | | | | | | | | | | | Fixes how module names for messages with package prefixes are rendered. - detected while prototyping with beefcake - fixed on the internal beefcake fork here [] This change replicates that fix for the official code generator. TODO: add a test; what's normal done to test features like this the proto codebase? Add another test.proto/golden file? Change on 2014/12/11 by temiola <temiola@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81916292
* Build CPP interop client in Git-on-[] as well as in [].Gravatar chenw2014-12-11
To build client in Git-on-[]: # regenerate Makefile net/grpc/tools/buildgen/generate_projects.sh # generate .pb.h and .pb.cc protoc --cpp_out=. --grpc_out=. --plugin=protoc-gen-grpc=[]-bin/net/grpc/compiler/cpp_plugin net/grpc/cpp/test/interop/test.proto net/grpc/cpp/test/interop/empty.proto net/grpc/cpp/test/interop/messages.proto # Complile and link net/grpc/tools/build_grpc_dev.sh bins/interop_client To test against GFE/ESF: # bring up server [] build net/grpc/testing/interop:server_components_env []-bin/net/grpc/testing/interop/server_components_env --manual --rpc_port=25000 # start client /tmp/grpc-codebase/bins/interop_client --enable_ssl=true --server_port="server ssl port listening port" To test [] build against GFE/ESF: [] run net/grpc/cpp:interop_client -- --enable_ssl=true --server_port="server ssl port listening port" Change on 2014/12/10 by chenw <chenw@google.com> ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=81821921