aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests
Commit message (Collapse)AuthorAge
* 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.
| * 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
| |
* | 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.
* 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
|
* 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
|
* Merge pull request #13688 from nathanielmanistaatgoogle/12531Gravatar Nathaniel Manista2017-12-08
|\ | | | | Elide cygrpc.Operations.
| * Elide cygrpc.OperationsGravatar Nathaniel Manista2017-12-08
| |
* | Merge pull request #13672 from nathanielmanistaatgoogle/12531Gravatar Nathaniel Manista2017-12-08
|\| | | | | Streamline metadata in gRPC Python.
| * Streamline metadata in gRPC PythonGravatar Nathaniel Manista2017-12-08
| |
* | Return UNKNOWN on GenericRpcHandler failureGravatar Mehrdad Afshari2017-12-04
|/ | | | | | | | | | A GenericRpcHandler registered on a gRPC Server is not supposed to raise an exception and if it does so it is considered a programming defect. However, gRPC is supposed to respond to the client with an UNKNOWN status code. Previously, this situation was left unhandled and the client ended up receiving a response with CANCELLED status code. This commit fixes the issue https://github.com/grpc/grpc/issues/13629.
* Change client-side credentials' use of gRPC CoreGravatar Nathaniel Manista2017-12-03
| | | | | | Rather than allocating gRPC Core memory when instantiated and retaining it until deleted, gRPC Python's credentials objects now offer methods to create gRPC Core structures on demand.
* Correct AccessTokenAuthMetadataPlugin nameGravatar Nathaniel Manista2017-12-01
| | | | It was never itself a "call credentials" of any sort.
* Merge pull request #13479 from ↵Gravatar Nathaniel Manista2017-11-21
|\ | | | | | | | | nathanielmanistaatgoogle/certificate-configuration Avoid abbreviation in Python API.
| * Avoid abbreviation in Python APIGravatar Nathaniel Manista2017-11-21
| | | | | | | | | | I should have requested this during code review of bcf083fa9099e5c919 but it slipped my mind.
* | Merge pull request #13406 from nathanielmanistaatgoogle/interop_required_argsGravatar Nathaniel Manista2017-11-20
|\ \ | |/ |/| Require port and server_port interop flags.
* | Add Python support for server SSL cert reloadingGravatar Giang Nguyen2017-11-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, a secure server is configured with SSL credentials during initialization, and those credentials will be used for the lifetime of the server. If the user wants the server to use new credentials, the user has to restart the server, resulting in server downtime. This change enables the user to optionally configure the server with a "certificiate config fetcher," such that on every new client connection, the server will call the config fetcher before performing the handshake, allowing the user application to optionally specify new certificate configuration for the server to use (the fetcher can return a "no change" and the server continues to use its current certificate configuration).
| * Require port and server_port interop flagsGravatar Nathaniel Manista2017-11-15
|/ | | | Also sort arguments to ArgumentParser.add_argument in idiomatic order.
* "resopnse" typo correctionGravatar Nathaniel Manista2017-09-28
|
* Clean up even more uses of gRPC in _pb2.py filesGravatar Nathaniel Manista2017-09-21
|
* Use grpc_1_0 flag in beta_python_plugin_testGravatar Nathaniel Manista2017-09-18
| | | | | | | | | | Beta code elements are not generated at all in _pb2_grpc.py files. This duplicates a lot of the in-test code generation done in _split_definitions_test. In a future clean-up we may want to deduplicate the common behavior, put it in a module available to all other tests, and do all of our testing of generated code with in-test code generation.
* Merge pull request #12602 from nathanielmanistaatgoogle/grpc_1_0_flagGravatar Nathaniel Manista2017-09-17
|\ | | | | Overhaul protoc_plugins._split_definitions_test.
| * Overhaul protoc_plugins._split_definitions_testGravatar Nathaniel Manista2017-09-16
| | | | | | | | | | | | | | | | | | | | | | | | | | We were mistaken before when we were testing _pb2.py files being generated in one directory and _pb2_grpc.py files being generated in another directory. Sure, that was a thing our code generator could do, but because of the way paths and packages work in Python it wasn't a realistic use case for actual users. This test now tests _pb2.py files and _pb2_grpc.py files being generated either together or independently of one another, and if independently, in either order. Looking forward to an eventual py_grpc_library Bazel rule, that's what actually matters.
* | Tweak Python sanity testGravatar Nathaniel Manista2017-09-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Move it out of the "unit" package, as it's not itself a unit test. - Suffix the test class with "Test" as we do with every other subclass of unittest.TestCase. - Add a larger-than-we'll-need-any-time-soon maxDiff so that failures are fully described. - Relax the assertion from assertListEqual to assertSequenceEqual since we don't actually care whether or not the sequences being compared are list instances. - Change the order of the assertions arguments to match the "<expected>, <actual>" convention used in our assert*Equal calls elsewhere throughout the test corpus. - Internal implementation simplifications.
* | Clean up a few more uses of gRPC in _pb2.py filesGravatar Nathaniel Manista2017-09-15
| | | | | | | | | | | | | | Were this not done these would break when the default behavior of gRPC Python Protoc Plug-In is changed to be the put-gRPC-code-elements-only- in-_pb2_grpc.py-files behavior that currently happens only when the grpc_2_0 flag is passed.
* | Add more Cython-layer testsGravatar Nathaniel Manista2017-09-11
|/ | | | | | I wrote these in the course of a bug hunt. I haven't yet caught and fixed the bug, but that's no reason not to check in perfectly good tests. :-)
* Merge pull request #11583 from nathanielmanistaatgoogle/grpc_testingGravatar Nathaniel Manista2017-09-05
|\ | | | | gRPC Python test infrastructure.
| * gRPC Python test infrastructureGravatar Nathaniel Manista2017-09-05
| | | | | | | | (The server-related third part of it.)
* | Unskip reflection unit test since proto is fixedGravatar Mehrdad Afshari2017-08-22
|/
* gRPC Python test infrastructureGravatar Nathaniel Manista2017-08-03
| | | | (The channel-related second part of it.)
* gRPC Python test infrastructureGravatar Nathaniel Manista2017-07-25
| | | | (The time-related first part of it, anyway.)
* Update python reflection tests to cover the higher level APIGravatar Mehrdad Afshari2017-06-13
|
* fix remaining license noticesGravatar Jan Tattermusch2017-06-08
|
* auto-fix most of licensesGravatar Jan Tattermusch2017-06-08
|
* Merge remote-tracking branch 'upstream/v1.3.x' into master_1.3.x_upmergeGravatar murgatroid992017-05-25
|\
| * Reconnect disconnected channels automaticallyGravatar Ken Payson2017-05-22
| |
* | Merge pull request #11087 from kpayson64/update_python_authGravatar kpayson642017-05-15
|\ \ | | | | | | Update Python interop tests to use google-auth package
| * | Update Python interop tests to use google-auth packageGravatar Ken Payson2017-05-12
| | | | | | | | | | | | | | | The oauth2client test dependency is still needed as it used by the beta API unit tests.
* | | Expose Auth Context in PythonGravatar Ken Payson2017-05-11
|/ /
* / Fix http2_interop test for c++ and pythonGravatar yang-g2017-04-20
|/
* Merge branch 'v1.2.x' of https://github.com/grpc/grpc into upmerge-1.2.0Gravatar Nicolas "Pixel" Noble2017-03-24
|\
* | Add pylint comment to justify unused importGravatar Mehrdad Afshari2017-03-23
| |