113 lines
2.6 KiB
Python
113 lines
2.6 KiB
Python
load("//bazel:python_rules.bzl", "py2and3_test")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
GRPCIO_TESTS_UNIT = [
|
|
"_abort_test.py",
|
|
"_api_test.py",
|
|
"_auth_context_test.py",
|
|
"_auth_test.py",
|
|
"_version_test.py",
|
|
"_channel_args_test.py",
|
|
"_channel_close_test.py",
|
|
"_channel_connectivity_test.py",
|
|
"_channel_ready_future_test.py",
|
|
"_compression_test.py",
|
|
"_credentials_test.py",
|
|
"_dns_resolver_test.py",
|
|
"_empty_message_test.py",
|
|
"_error_message_encoding_test.py",
|
|
"_exit_test.py",
|
|
"_grpc_shutdown_test.py",
|
|
"_interceptor_test.py",
|
|
"_invalid_metadata_test.py",
|
|
"_invocation_defects_test.py",
|
|
"_local_credentials_test.py",
|
|
"_logging_test.py",
|
|
"_metadata_flags_test.py",
|
|
"_metadata_code_details_test.py",
|
|
"_metadata_test.py",
|
|
# TODO: Issue 16336
|
|
# "_reconnect_test.py",
|
|
"_resource_exhausted_test.py",
|
|
"_rpc_test.py",
|
|
"_signal_handling_test.py",
|
|
# TODO(ghostwriternr): To be added later.
|
|
# "_server_ssl_cert_config_test.py",
|
|
"_server_test.py",
|
|
"_server_shutdown_test.py",
|
|
"_server_wait_for_termination_test.py",
|
|
"_session_cache_test.py",
|
|
]
|
|
|
|
py_library(
|
|
name = "_tcp_proxy",
|
|
srcs = ["_tcp_proxy.py"],
|
|
)
|
|
|
|
py_library(
|
|
name = "_signal_client",
|
|
srcs = ["_signal_client.py"],
|
|
)
|
|
|
|
py_library(
|
|
name = "resources",
|
|
srcs = ["resources.py"],
|
|
data = [
|
|
"//src/python/grpcio_tests/tests/unit/credentials",
|
|
],
|
|
)
|
|
|
|
py_library(
|
|
name = "test_common",
|
|
srcs = ["test_common.py"],
|
|
)
|
|
|
|
py_library(
|
|
name = "thread_pool",
|
|
srcs = ["thread_pool.py"],
|
|
)
|
|
|
|
py_library(
|
|
name = "_exit_scenarios",
|
|
srcs = ["_exit_scenarios.py"],
|
|
)
|
|
|
|
py_library(
|
|
name = "_server_shutdown_scenarios",
|
|
srcs = ["_server_shutdown_scenarios.py"],
|
|
)
|
|
|
|
py_library(
|
|
name = "_from_grpc_import_star",
|
|
srcs = ["_from_grpc_import_star.py"],
|
|
)
|
|
|
|
[
|
|
py2and3_test(
|
|
name = test_file_name[:-3],
|
|
size = "small",
|
|
srcs = [test_file_name],
|
|
data = [
|
|
"//src/python/grpcio_tests/tests/unit/credentials",
|
|
],
|
|
imports = ["../../"],
|
|
main = test_file_name,
|
|
deps = [
|
|
":_exit_scenarios",
|
|
":_from_grpc_import_star",
|
|
":_server_shutdown_scenarios",
|
|
":_signal_client",
|
|
":_tcp_proxy",
|
|
":resources",
|
|
":test_common",
|
|
":thread_pool",
|
|
"//external:six",
|
|
"//src/python/grpcio/grpc:grpcio",
|
|
"//src/python/grpcio_tests/tests/testing",
|
|
"//src/python/grpcio_tests/tests/unit/framework/common",
|
|
],
|
|
)
|
|
for test_file_name in GRPCIO_TESTS_UNIT
|
|
]
|