aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end
Commit message (Collapse)AuthorAge
* Fix a missing initializationGravatar David Klempner2016-05-19
|
* Add calls to grpc_recycle_unused_port to two of the tests which callGravatar David Klempner2016-05-13
| | | | grpc_pick_unused_port a lot.
* Merge pull request #6373 from y-zeng/server-builder-pluginGravatar Yuchen Zeng2016-05-11
|\ | | | | Server builder plugin
* | fix compiling errorGravatar yang-g2016-05-10
| |
| * Resolve conflictsGravatar Yuchen Zeng2016-05-06
| |\
| * | Fix naming and comment problemsGravatar Yuchen Zeng2016-05-06
| | |
* | | Add parsing back to protobuf exampleGravatar yang-g2016-05-06
| | |
* | | Add a test for server returning error with debug info in trailer.Gravatar yang-g2016-05-05
| |/ |/|
* | Fix async_end2end_test flow controlGravatar Craig Tiller2016-05-03
| | | | | | | | | | | | | | | | | | | | | | | | | | Completion queues + flow control + single threading is hard. We need a read outstanding on a call to grant flow control tokens to the remote end. To do that we need to request a read *before* we wait for the write to be finished, otherwise, in the case of a large write we'll block waiting for flow control tokens. Built on #6402
| * Add plugins at the time of static initializationGravatar Yuchen Zeng2016-05-03
| |
* | Cover large message sent securely or insecurely over asyncGravatar Vijay Pai2016-05-02
| |
* | Add coverage for secure async end2end testingGravatar Vijay Pai2016-05-02
| |
| * Add GRPC_ prefix for macrosGravatar Yuchen Zeng2016-04-29
| |
| * modified has_async_methods and has_sync_methods of TestServerBuilderPluginGravatar Yuchen Zeng2016-04-29
| |
| * Server builder pluginGravatar Yuchen Zeng2016-04-29
|/
* Merge branch 'master' into ignore_connectivityGravatar Craig Tiller2016-04-04
|\
* | FixesGravatar Craig Tiller2016-04-01
| |
* | Fix client_crash_test, implement idempotency, fail_fast for C++Gravatar Craig Tiller2016-04-01
| |
| * Merge github.com:grpc/grpc into cleaner-posix2Gravatar Craig Tiller2016-04-01
| |\ | |/ |/|
* | Merge pull request #6041 from vjpai/i_know_virtual_destructorsGravatar Jan Tattermusch2016-03-31
|\ \ | | | | | | Add virtual destructor to satisfy a requirement of some compilers
| | * Merge github.com:grpc/grpc into cleaner-posix2Gravatar Craig Tiller2016-03-31
| | |\ | |_|/ |/| |
| * | Add virtual destructor to satisfy a requirement of some compilersGravatar vjpai2016-03-31
| | |
* | | Update copyrightsGravatar Craig Tiller2016-03-31
|/ /
| * Merge github.com:grpc/grpc into cleaner-posix2Gravatar Craig Tiller2016-03-30
| |\ | |/ |/|
| * Fix include pathGravatar Craig Tiller2016-03-30
| |
* | Used TYPED_TEST to parametrizeGravatar Vijay Pai2016-03-29
| | | | | | | | Include all 4 sync/async client/server combos
* | clang-formatGravatar Vijay Pai2016-03-29
| |
* | Add a concurrent test for sync client, async server caseGravatar Vijay Pai2016-03-29
| |
| * Merge github.com:grpc/grpc into cleaner-posix2Gravatar Craig Tiller2016-03-28
| |\ | |/ |/|
* | Fix includesGravatar Craig Tiller2016-03-25
| |
* | Auto-changesGravatar Craig Tiller2016-03-25
| |
* | Make a copy of ByteBuffer when writingGravatar yang-g2016-03-21
| |
| * Merge github.com:grpc/grpc into cleaner-posix2Gravatar Craig Tiller2016-03-16
| |\ | |/ |/|
* | Merge pull request #5652 from grpc/revert-5599-revert-5572-srv_ctxGravatar Jan Tattermusch2016-03-15
|\ \ | | | | | | Revert "Revert "Properly integrate async API with server-side cancellations.""
* | | Add support for IP Addresses in Subject Alt Names.Gravatar Paul Querna2016-03-14
| | |
| | * Merge github.com:grpc/grpc into cleaner-posix2Gravatar Craig Tiller2016-03-07
| | |\
| * | | Revert "Revert "Properly integrate async API with server-side cancellations.""Gravatar Sree Kuchibhotla2016-03-07
| | |/ | |/|
| * | Revert "Properly integrate async API with server-side cancellations."Gravatar Sree Kuchibhotla2016-03-04
| | |
* | | clang reformat.Gravatar Dan Born2016-03-03
| | |
* | | Allow use of alternative credential types.Gravatar Dan Born2016-03-03
| | |
| * | Better comments.Gravatar Vijay Pai2016-03-03
| | |
| * | clang-formatGravatar Vijay Pai2016-03-03
| | |
| * | Properly integrate async API with server-side cancellations.Gravatar Vijay Pai2016-03-03
|/ / | | | | | | There is a comment above IsCancelled that says when it is ok to use this.
* | Merge pull request #5523 from vjpai/e2e_stcGravatar Yang Gao2016-03-02
|\ \ | | | | | | Fix ServerTryCancel in end2end tests
| * | ServerTryCancel was not actually respecting the API since itGravatar Vijay Pai2016-03-01
| | | | | | | | | | | | | | | could be an arbitrary amount of time between when the cancel is tried and actually observable.
* | | Fix ResponseStreamServerCancelAfter test flakeGravatar Sree Kuchibhotla2016-02-29
|/ /
| * Fix async e2eGravatar Craig Tiller2016-02-25
|/
* SimultaneousReadWritesDone test was not observing the contract on theGravatar Vijay Pai2016-02-25
| | | | | | streaming API. In particular, Finish should not be called until the client is sure that there is no more message to be read (as documented in the comments for ClientStreamingInterface::Finish)
* Discard the read buffer on stream errorGravatar yang-g2016-02-22
|
* Merge pull request #5258 from vjpai/poll_override2Gravatar Craig Tiller2016-02-21
|\ | | | | Avoid a race when overriding default poll function