|
|
|
# Copyright 2017 gRPC authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
load("//bazel:grpc_build_system.bzl", "grpc_cc_library", "grpc_cc_test", "grpc_cc_binary", "grpc_package")
|
|
|
|
|
|
|
|
licenses(["notice"]) # Apache v2
|
|
|
|
|
|
|
|
load("//test/core/util:grpc_fuzzer.bzl", "grpc_fuzzer")
|
|
|
|
|
|
|
|
grpc_package(
|
|
|
|
name = "test/core/iomgr",
|
|
|
|
visibility = "public",
|
|
|
|
) # Useful for third party devs to test their io manager implementation.
|
|
|
|
|
|
|
|
grpc_cc_library(
|
|
|
|
name = "endpoint_tests",
|
|
|
|
srcs = ["endpoint_tests.cc"],
|
|
|
|
hdrs = ["endpoint_tests.h"],
|
|
|
|
language = "C++",
|
|
|
|
visibility = ["//test:__subpackages__"],
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "combiner_test",
|
|
|
|
srcs = ["combiner_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
data = ["//third_party/toolchains:RBE_USE_MACHINE_TYPE_LARGE"],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "endpoint_pair_test",
|
|
|
|
srcs = ["endpoint_pair_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
":endpoint_tests",
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "error_test",
|
|
|
|
srcs = ["error_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
":endpoint_tests",
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "ev_epollex_linux_test",
|
|
|
|
srcs = ["ev_epollex_linux_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "ev_epollsig_linux_test",
|
|
|
|
srcs = ["ev_epollsig_linux_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "fd_conservation_posix_test",
|
|
|
|
srcs = ["fd_conservation_posix_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "fd_posix_test",
|
|
|
|
srcs = ["fd_posix_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "load_file_test",
|
|
|
|
srcs = ["load_file_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "pollset_set_test",
|
|
|
|
srcs = ["pollset_set_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "resolve_address_posix_test",
|
|
|
|
srcs = ["resolve_address_posix_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "resolve_address_test",
|
|
|
|
srcs = ["resolve_address_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "resource_quota_test",
|
|
|
|
srcs = ["resource_quota_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "sockaddr_utils_test",
|
|
|
|
srcs = ["sockaddr_utils_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "socket_utils_test",
|
|
|
|
srcs = ["socket_utils_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "tcp_client_posix_test",
|
|
|
|
srcs = ["tcp_client_posix_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "tcp_posix_test",
|
|
|
|
srcs = ["tcp_posix_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
":endpoint_tests",
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "tcp_server_posix_test",
|
|
|
|
srcs = ["tcp_server_posix_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
tags = ["manual"], # TODO(adelez): Remove once this works on Foundry.
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "time_averaged_stats_test",
|
|
|
|
srcs = ["time_averaged_stats_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "timer_heap_test",
|
|
|
|
srcs = ["timer_heap_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "timer_list_test",
|
|
|
|
srcs = ["timer_list_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "udp_server_test",
|
|
|
|
srcs = ["udp_server_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
grpc_cc_test(
|
|
|
|
name = "wakeup_fd_cv_test",
|
|
|
|
srcs = ["wakeup_fd_cv_test.cc"],
|
|
|
|
language = "C++",
|
|
|
|
deps = [
|
|
|
|
"//:gpr",
|
|
|
|
"//:grpc",
|
|
|
|
"//test/core/util:gpr_test_util",
|
|
|
|
"//test/core/util:grpc_test_util",
|
|
|
|
],
|
|
|
|
)
|