aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests
Commit message (Collapse)AuthorAge
* Merge pull request #16864 from lidizheng/masterGravatar Lidi Zheng2018-10-15
|\ | | | | Fix Exception throw for invalid channel args
| * fix Exception throw for invalid channel argsGravatar Lidi Zheng2018-10-14
| | | | | | | | | | | | * unit test included * throw ValueError exception from Cython to Python * prevent the deconstruction method from failing when Channel initialization failed
* | Revert "Bazel rules for gRPC Python interop tests"Gravatar Mehrdad Afshari2018-10-12
| | | | | | | | This reverts commit 9172775bc82b071acb81f08e81e7d7706a9dee3f.
* | Revert "Bazel rules for Python grpcio_reflection"Gravatar Mehrdad Afshari2018-10-12
|/ | | | This reverts commit 2e78e516ad8cb45cff705581625f85e5033b4e5b.
* Merge pull request #16831 from ghostwriternr/bazel-python-reflectionGravatar Nathaniel Manista2018-10-12
|\ | | | | Bazel rules for Python grpcio_reflection.
* \ Merge pull request #16813 from ghostwriternr/bazel-python-interop-testsGravatar Nathaniel Manista2018-10-12
|\ \ | | | | | | Bazel rules for gRPC Python interop tests.
| | * Bazel rules for Python grpcio_reflectionGravatar Naresh2018-10-11
| |/ |/|
| * Bazel rules for gRPC Python interop testsGravatar Naresh2018-10-11
| | | | | | | | | | | | | | | | | | | | Add interop tests for gRPC Python. py_proto_library rules are added to src/proto/grpc/testing/BUILD since grpc_proto_library is not compatible with py_* rules. 'requests' python module is added to requirements.bazel.txt as it is a dependency for google-auth. Previously, this was installed through tools/run_tests/helper_scripts/build_python.sh before running tests.
* | Bazel rules for Python grpcio_health_checkingGravatar Naresh2018-10-09
|/ | | | | | | | | | | | | | | Add Bazel rules for building and testing grpcio_health_checking. An unofficial fork for rules_protobuf is used for now as it incorporates a change (#196 by duduko on the upstream repo pubref/rules_protobuf) which allows the protoc compiler to compile generated protos too. This was not merged because the change was failing for golang, but works as expected for Python. This is needed because grpcio_health_checking fetches it's proto file from a different directory (previously achived through setup.py) and thus needs to be moved to the required location within bazel-genfiles using a genrule.
* Merge pull request #16335 from ghostwriternr/python_bazel_4Gravatar Nathaniel Manista2018-10-08
|\ | | | | Add Bazel targets for (some) Python unit tests.
| * Add Bazel targets for Python unit testsGravatar Naresh2018-10-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are exactly 50 tests under grpcio_tests/tests/testing and grpcio_tests/tests/unit for gRPC Python. Add Bazel targets for 44 of them. unit._reconnect_test has been left out for now due to an unexpected RuntimeError (#16336) and unit._server_ssl_cert_config_test because of changes needed to the import path within src/python/grpcio_tests/tests/testing/proto/services.proto (will possibly be included as a fix to #15370). The count of tests here is reported the way unittest counts tests, which is the number of individual unit test classes it sees. This will be different from Bazel's count, which counts the number of Bazel test targets, which (by convention mostly) is one per test module.
* | Merge pull request #16378 from ghostwriternr/module-level-logger-fixGravatar Nathaniel Manista2018-09-06
|\ \ | | | | | | Configure module level loggers with basicConfig().
* \ \ Merge pull request #16425 from lamby/spelling-errorsGravatar Juanli Shen2018-08-22
|\ \ \ | | | | | | | | Fix a number of spelling errors.
* | | | Support gRPC Python client-side fork with epoll1Gravatar Eric Gribkoff2018-08-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A process may fork after invoking grpc_init() and use gRPC in the child if and only if the child process first destroys all gRPC resources inherited from the parent process and invokes grpc_shutdown(). Subsequent to this, the child will be able to re-initialize and use gRPC. After fork, the parent process will be able to continue to use existing gRPC resources such as channels and calls without interference from the child process. To facilitate gRPC Python applications meeting the above constraints, gRPC Python will automatically destroy and shutdown all gRPC Core resources in the child's post-fork handler, including cancelling in-flight calls (see detailed design below). From the client's perspective, the child process is now free to create new channels and use gRPC.
| * | | Fix a number of spelling errors.Gravatar Chris Lamb2018-08-22
|/ / /
* | / Ensure thread_pool is not None for grpc.ServerGravatar Mehrdad Afshari2018-08-21
| |/ |/|
| * Configure module level loggers with basicConfig()Gravatar Naresh2018-08-17
|/ | | | | | | | | | | Module level loggers were introduced to gRPC Python in 06e1683, but missed configuring these, leading to 'No handler found for module' errors. Using the root logger implicitly calls basicConfig() which does the basic configuration for the logging system by creating a StreamHandler with a default Formatter and adding it to the logger. But this is not the case for module level loggers. Fix this issue by explicitly calling logging.basicConfig().
* Minimal Bazel BUILD files for grpcio PythonGravatar Naresh2018-08-02
| | | | | Follow-up on the additions in #15992. Pad the grpcio Python package with necessary BUILD files along with 2 simple tests.
* Add SERVICE_NAME to reflection/healthGravatar Mehrdad Afshari2018-07-26
|
* Disable ChannelConnectivityTest for the Beta APIGravatar Mehrdad Afshari2018-07-25
| | | | | | The Beta API has been unsupported for a while and we plan to disable the flaky tests in the Beta API as we see them before we entirely remove it.
* Merge pull request #15689 from ↵Gravatar Nathaniel Manista2018-06-11
|\ | | | | | | | | nathanielmanistaatgoogle/generic-rpc-handler-validation Check conformance to grpc.GenericRpcHandler type.
* \ Merge pull request #15682 from mehrdada/bump-pylintGravatar Mehrdad Afshari2018-06-08
|\ \ | | | | | | Bump pylint to 1.9.2
| | * Check conformance to grpc.GenericRpcHandler typeGravatar Nathaniel Manista2018-06-08
| |/ |/|
* | Merge pull request #14879 from santoshankr/python_ssl_session_cache_lruGravatar Nathaniel Manista2018-06-08
|\ \ | | | | | | TLS session resumption support for Python clients.
| | * Run yapf to reformat Python codeGravatar Mehrdad Afshari2018-06-07
| | |
| | * Remove unused _junkdrawerGravatar Mehrdad Afshari2018-06-07
| | |
| | * Fix raising-format-tuple pylint warningGravatar Mehrdad Afshari2018-06-07
| | |
| | * Refactor to avord redefining argumentGravatar Mehrdad Afshari2018-06-07
| | |
| | * Fix arguments-differ pylint warningGravatar Mehrdad Afshari2018-06-07
| | |
| | * Fix useless-super-delegation pylint warningsGravatar Mehrdad Afshari2018-06-07
| |/ |/|
* | Merge pull request #14557 from ghostwriternr/py-custom-loggerGravatar Nathaniel Manista2018-06-07
|\ \ | | | | | | Update logging in Python to use module-level logger.
| | * TLS session resumption support for Python clientsGravatar Santosh Ananthakrishnan2018-06-07
| |/ |/| | | | | | | | | | | | | This change adds an experimental ssl_session_cache_lru function to the Python API that returns an encapsulated grpc_ssl_session_cache (#14483). Python clients may use this object as an argument for the grpc.ssl_session_cache channel option if they wish to cache and resume TLS sessions with a server.
| * Update logging in Python to use module-level loggerGravatar Naresh2018-05-31
| | | | | | | | | | | | | | All logging in Python so far was done with the root logger, resulting in logs like: `ERROR:Exception calling application:`. With module-level loggers, the logs will instead include the module in which the exception is raised: `ERROR:grpc._server:Exception calling application:`
* | Use the correct proto for benchmark_serivceGravatar kpayson642018-05-29
|/
* Surfaces debug_error_string to Python APIGravatar Noah Eisen2018-05-17
| | | | | In case of error, the user can access call.debug_error_string() which contains a string representation of error from the c core.
* Merge remote-tracking branch 'upstream/master' into remove_cleanup_threadGravatar kpayson642018-05-03
|\
| * Add grpc.Channel.closeGravatar Nathaniel Manista2018-05-02
| |
| * Keep Core memory inside cygrpc.Channel objectsGravatar Nathaniel Manista2018-05-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes invocation-side completion queues from the _cygrpc API. Invocation-side calls are changed to no longer share the same lifetime as Core calls. Illegal metadata is now detected on invocation rather than at the start of a batch (so passing illegal metadata to a response-streaming method will now raise an exception immediately rather than later on when attempting to read the first response message). It is no longer possible to create a call without immediately starting at least one batch of operations on it. Only tests are affected by this change; there are no real use cases in which one wants to start a call but wait a little while before learning that the server has rejected it. It is now required that code above cygrpc.Channel spend threads on next_event whenever events are pending. A cygrpc.Channel.close method is introduced, but it merely blocks until the cygrpc.Channel's completion queues are drained; it does not itself drain them. Noteworthy here is that we drop the cygrpc.Channel.__dealloc__ method. It is not the same as __del__ (which is not something that can be added to cygrpc.Channel) and there is no guarantee that __dealloc__ will be called at all or that it will be called while the cygrpc.Channel instance's Python attributes are intact (in testing, I saw both in different environments). This commit does not knowingly break any garbage-collection-based memory management working (or "happening to appear to work in some circumstances"), though if it does, the proper remedy is to call grpc.Channel.close... which is the objective towards which this commit builds.
* | Remove CleanupThreadGravatar kpayson642018-04-30
|/ | | | | This is no longer needed with the addition of a close() API that allows clean shutdown.
* Eliminate broad-except suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate bare-except suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate old-style-class suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate wildcard-import suppressionGravatar Mehrdad Afshari2018-04-19
|
* Eliminate function-redefined suppressionGravatar Mehrdad Afshari2018-04-19
|
* 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
|