xref: /aosp_15_r20/external/grpc-grpc/src/python/grpcio_tests/tests/reflection/BUILD.bazel (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1# Copyright 2021 The gRPC Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#     http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14load("@grpc_python_dependencies//:requirements.bzl", "requirement")
15
16package(default_visibility = ["//visibility:public"])
17
18py_test(
19    name = "_reflection_servicer_test",
20    size = "small",
21    srcs = ["_reflection_servicer_test.py"],
22    imports = ["../../"],
23    main = "_reflection_servicer_test.py",
24    python_version = "PY3",
25    deps = [
26        "//src/proto/grpc/testing:empty_py_pb2",
27        "//src/proto/grpc/testing/proto2:empty2_extensions_proto",
28        "//src/proto/grpc/testing/proto2:empty2_proto",
29        "//src/python/grpcio/grpc:grpcio",
30        "//src/python/grpcio_reflection/grpc_reflection/v1alpha:grpc_reflection",
31        "//src/python/grpcio_tests/tests/unit:test_common",
32        requirement("protobuf"),
33    ],
34)
35
36py_test(
37    name = "_reflection_client_test",
38    size = "small",
39    srcs = ["_reflection_client_test.py"],
40    imports = ["../../"],
41    main = "_reflection_client_test.py",
42    python_version = "PY3",
43    deps = [
44        "//src/proto/grpc/testing:empty_py_pb2",
45        "//src/proto/grpc/testing:py_messages_proto",
46        "//src/proto/grpc/testing:test_py_pb2_grpc",
47        "//src/proto/grpc/testing/proto2:empty2_extensions_proto",
48        "//src/proto/grpc/testing/proto2:empty2_proto",
49        "//src/python/grpcio/grpc:grpcio",
50        "//src/python/grpcio_reflection/grpc_reflection/v1alpha:grpc_reflection",
51        "//src/python/grpcio_tests/tests/unit:test_common",
52        requirement("protobuf"),
53    ],
54)
55