aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests
Commit message (Collapse)AuthorAge
* Eliminate unnecessary-lambda suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate undefined-variable suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate non-iterator-returned suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate undefined-loop-variable suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate raising-bad-type suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate unreachable suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate bad-continuation suppressionGravatar Mehrdad Afshari2018-04-19
|
* Break out qps services into seperate protosGravatar kpayson642018-04-18
|
* Fix a use of nonexistent .received_cancelledGravatar Nathaniel Manista2018-04-17
| | | | | | .received_cancelled was changed to .cancelled() in 81edf5ff9af2d90813773acb9c2793e1a4cd1057; this change should have been a part of that change.
* Regenerate projectsGravatar Mehrdad Afshari2018-04-04
|
* Fix gevent test flakesGravatar kpayson642018-04-02
|
* Merge pull request #14561 from kpayson64/gevent_2Gravatar kpayson642018-03-28
|\ | | | | Initial Gevent Compatibility
| * Initial gevent supportGravatar kpayson642018-03-27
| | | | | | | | | | Because some cpp code ends up leaking into cython, we change the cython generator to generate cpp code.
| * Explicitly stop servers in unit tests.Gravatar kpayson642018-03-27
| | | | | | | | Relying on garbage collection to stop servers breaks with gevent.
* | Merge pull request #14765 from grpc/revert-14687-early-okGravatar Noah Eisen2018-03-21
|\ \ | |/ |/| Revert "Verify early OK behavior"
| * Revert "Verify early OK behavior"Gravatar Noah Eisen2018-03-20
| |
* | [grpc] Add SSL session client cache supportGravatar Ruslan Nigmatullin2018-03-20
|/
* Remove _face_interface_testGravatar Nathaniel Manista2018-03-13
| | | | | | | | The Beta API has an execution date and RPC Framework is but a distant memory. This test is flaky with Python 3.5 on Windows! Some mysteries will just have to remain unsolved...
* Verify early OK behaviorGravatar Nathaniel Manista2018-03-13
| | | | | | | | | | Looks like early OK support was implemented in https://github.com/grpc/grpc/pull/14080 but https://github.com/grpc/grpc/issues/7032 was not marked fixed at the time. Good thing it was just an idea on our Google Summer of Code ideas page...
* Merge pull request #14448 from kpayson64/remove_pollerGravatar kpayson642018-03-07
|\ | | | | Remove Python background poller thread
* | Regenerate projectsGravatar Mehrdad Afshari2018-02-22
| |
| * Remove Python background poller threadGravatar Ken Payson2018-02-20
|/
* Sleep a second to deflake ReconnectTestGravatar Mehrdad Afshari2018-02-06
| | | | | | | | | The thread that watches connectivity on the channel might not pick up that the server has gone away before the request is dispatched, and return UNAVAILABLE instead of reconnecting prior to sending the request. The fundamental solution would basically be enabling retries in C-core. For now, we opt to sleep a second to deflake this particular test case.
* Merge pull request #14107 from nathanielmanistaatgoogle/12531Gravatar Nathaniel Manista2018-01-26
|\ | | | | Elide cygrpc.ChannelArg and cygrpc.ChannelArgs.
| * Elide cygrpc.ChannelArg and cygrpc.ChannelArgsGravatar Nathaniel Manista2018-01-26
| |
* | Regenerate projectsGravatar Mehrdad Afshari2018-01-19
| |
* | Merge pull request #13965 from evanj/python-abort-fixGravatar kpayson642018-01-12
|\ \ | |/ |/| python: Context.abort should fail RPC even for StatusCode.OK
| * python: Context.abort should fail RPC even for StatusCode.OKGravatar Evan Jones2018-01-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | grpc.ServicerContext.abort is documented to always raise an exception to terminate the RPC. The code argument "must not be StatusCode.OK." However, if you do pass StatusCode.OK, the RPC terminates successfully on the client side, but returns None. _server.py: If the user accidentally passes StatusCode.OK, treat it as StatusCode.UNKNOWN. This is what happens if the user accidentally passes something that is not a StatusCode instance. Additionally set details to ''. _metadata_code_details_test.py: update test to verify the behavior of abort with invalid codes.
* | Elide cygrpc.TimespecGravatar Nathaniel Manista2018-01-10
|/
* Upgrade yapf to 0.20.0Gravatar Mehrdad Afshari2018-01-02
| | | | Upgrade yapf version to 0.20.0 and reformat Python files.
* Merge pull request #13891 from nathanielmanistaatgoogle/12531Gravatar Nathaniel Manista2017-12-31
|\ | | | | Reform cygrpc.OperationTag and cygrpc.Event.
* \ Merge branch v1.8.x into masterGravatar Mehrdad Afshari2017-12-31
|\ \ | | | | | | | | | Upmerge v1.8.3 into master
| | * Reform cygrpc.OperationTag and cygrpc.EventGravatar Nathaniel Manista2017-12-31
| | | | | | | | | | | | | | | | | | Rather than single classes they are now broken up into class families with each class containing only those fields and methods that are needed in the context in which the class is used.
| * | Bump version to 1.8.3Gravatar Mehrdad Afshari2017-12-30
| |/
| * Reform cygrpc.OperationGravatar Nathaniel Manista2017-12-21
| | | | | | | | | | | | | | | | | | It is now a family of classes conforming to an interface rather than a single class no single instance of which makes use of all behavior scoped to the class. It also now only uses gRPC Core memory for the time of a single batch rather than for the entire lifetime of the instance.
* | Fix port picking logic in Python testsGravatar Mehrdad Afshari2017-12-20
| |
* | Merge pull request #13843 from kpayson64/fix_python_testsGravatar kpayson642017-12-20
|\ \ | | | | | | Disable so_reuseport for Python tests
| * | Disable so_reuseport for Python testsGravatar Ken Payson2017-12-20
| | |
| | * Bump to 1.8.2Gravatar Ken Payson2017-12-19
| | |
| | * Bump version to 1.8.1Gravatar Mehrdad Afshari2017-12-14
| | |
* | | Merge pull request #13789 from grpc/v1.8.xGravatar Mehrdad Afshari2017-12-14
|\ \ \ | |/ / |/| / | |/ Upmerge changes from v1.8.x to master
| * Reallow out-of-spec metadataGravatar Nathaniel Manista2017-12-14
| | | | | | | | | | | | This restore unsupported, de facto behavior that was dropped in 80516e884a8cd03daaa1f4a40d2bb2 but that it turns out a lot of folks have been using.
* | Merge remote-tracking branch 'origin/v1.8.x'Gravatar Mehrdad Afshari2017-12-11
|\|
| * v1.8.0-pre2 is now v1.8.0Gravatar Mehrdad Afshari2017-12-12
| |
| * Add tests for gRPC Python interceptor machineryGravatar Mehrdad Afshari2017-12-12
| |
| * Add gRPC Python client-side interceptor machineryGravatar Mehrdad Afshari2017-12-12
| |
| * Add gRPC Python service-side interceptor machineryGravatar Mehrdad Afshari2017-12-12
| |
* | yapf grpcio_testsGravatar ncteisen2017-12-11
| |
| * Refactor: Rename call to response_iterator_callGravatar Mehrdad Afshari2017-12-10
| | | | | | | | Rename call to response_iterator_call file-wide for response-streaming tests.
| * Tests for ServicerContext.abortGravatar Mehrdad Afshari2017-12-10
| |