mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
165 lines
3.7 KiB
165 lines
3.7 KiB
# 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 |
|
|
|
grpc_package(name = "test/core/surface") |
|
|
|
grpc_cc_test( |
|
name = "grpc_byte_buffer_reader_test", |
|
srcs = ["byte_buffer_reader_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "channel_create_test", |
|
srcs = ["channel_create_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "grpc_completion_queue_test", |
|
srcs = ["completion_queue_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "completion_queue_threading_test", |
|
srcs = ["completion_queue_threading_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "concurrent_connectivity_test", |
|
srcs = ["concurrent_connectivity_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "init_test", |
|
srcs = ["init_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "lame_client_test", |
|
srcs = ["lame_client_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/end2end:cq_verifier", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "num_external_connectivity_watchers_test", |
|
srcs = ["num_external_connectivity_watchers_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/end2end:ssl_test_data", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "public_headers_must_be_c89", |
|
srcs = ["public_headers_must_be_c89.c"], |
|
language = "C", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "secure_channel_create_test", |
|
srcs = ["secure_channel_create_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "sequential_connectivity_test", |
|
srcs = ["sequential_connectivity_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/end2end:ssl_test_data", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "server_chttp2_test", |
|
srcs = ["server_chttp2_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
) |
|
|
|
grpc_cc_test( |
|
name = "server_test", |
|
srcs = ["server_test.cc"], |
|
language = "C++", |
|
deps = [ |
|
"//:gpr", |
|
"//:grpc", |
|
"//test/core/util:grpc_test_util", |
|
], |
|
)
|
|
|