1# Copyright 2017 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. 14 15load("//bazel:grpc_build_system.bzl", "grpc_cc_test", "grpc_package") 16 17licenses(["notice"]) 18 19grpc_package(name = "test/cpp/client") 20 21grpc_cc_test( 22 name = "credentials_test", 23 srcs = ["credentials_test.cc"], 24 data = [ 25 "//src/core/tsi/test_creds:ca.pem", 26 "//src/core/tsi/test_creds:server1.key", 27 "//src/core/tsi/test_creds:server1.pem", 28 ], 29 external_deps = [ 30 "absl/log:check", 31 "gtest", 32 ], 33 deps = [ 34 "//:gpr", 35 "//:grpc", 36 "//:grpc++", 37 "//src/core:grpc_crl_provider", 38 "//test/core/test_util:grpc_test_util", 39 "//test/cpp/util:tls_test_utils", 40 ], 41) 42 43grpc_cc_test( 44 name = "destroy_grpclb_channel_with_active_connect_stress_test", 45 srcs = ["destroy_grpclb_channel_with_active_connect_stress_test.cc"], 46 external_deps = ["gtest"], 47 tags = [ 48 "nomsan", # 4/22/22 - seems to tickle the RBE compiler badly causing timeouts 49 ], 50 deps = [ 51 "//:gpr", 52 "//:grpc", 53 "//:grpc++", 54 "//:grpc_resolver_fake", 55 "//src/core:channel_args", 56 "//test/core/test_util:grpc_test_util", 57 "//test/cpp/util:test_util", 58 ], 59) 60