blob: ab61ae7c8604635d09e6137451dc75451402a437 [file]
# Copyright 2016 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_test",
"grpc_package",
)
load("//test/core/test_util:grpc_fuzzer.bzl", "grpc_fuzz_test")
grpc_package(
name = "test/core/compression",
features = [
"layering_check",
"parse_headers",
],
)
licenses(["notice"])
grpc_cc_test(
name = "compression_test",
srcs = ["compression_test.cc"],
external_deps = [
"absl/log:log",
"gtest",
],
uses_event_engine = False,
uses_polling = False,
deps = [
"//:gpr",
"//:grpc",
"//src/core:channel_args",
"//src/core:useful",
"//test/core/test_util:grpc_test_util",
],
)
grpc_fuzz_test(
name = "message_compress_fuzzer",
srcs = ["message_compress_fuzzer.cc"],
external_deps = [
"fuzztest",
"fuzztest_main",
],
deps = [
"//:grpc",
"//:grpc_base",
"//test/core/test_util:grpc_test_util",
],
)
grpc_fuzz_test(
name = "message_decompress_fuzzer",
srcs = ["message_decompress_fuzzer.cc"],
external_deps = [
"fuzztest",
"fuzztest_main",
],
deps = [
"//:grpc",
"//:grpc_base",
"//test/core/test_util:grpc_test_util",
],
)
grpc_cc_test(
name = "message_compress_test",
srcs = ["message_compress_test.cc"],
external_deps = [
"absl/log:log",
"gtest",
],
uses_event_engine = False,
uses_polling = False,
deps = [
"//:exec_ctx",
"//:gpr",
"//:grpc",
"//:grpc_base",
"//src/core:useful",
"//test/core/test_util:grpc_test_util",
"//test/core/test_util:grpc_test_util_base",
],
)