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.
92 lines
3.2 KiB
92 lines
3.2 KiB
# Copyright 2018 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. |
|
|
|
# |
|
# This is for the gRPC build system. This isn't intended to be used outsite of |
|
# the BUILD file for gRPC. It contains the mapping for the template system we |
|
# use to generate other platform's build system files. |
|
# |
|
# Please consider that there should be a high bar for additions and changes to |
|
# this file. |
|
# Each rule listed must be re-written for Google's internal build system, and |
|
# each change must be ported from one to the other. |
|
# |
|
|
|
"""Script to run qps benchmark.""" |
|
|
|
load("//bazel:grpc_build_system.bzl", "grpc_cc_test") |
|
load("//test/cpp/qps:qps_json_driver_scenarios.bzl", "QPS_JSON_DRIVER_SCENARIOS") |
|
load("//test/cpp/qps:json_run_localhost_scenarios.bzl", "JSON_RUN_LOCALHOST_SCENARIOS") |
|
|
|
def add_suffix(name): |
|
# NOTE(https://github.com/grpc/grpc/issues/24178): Add the suffix to the name |
|
# to avoid having the target name that 89 or 90 long. |
|
m = len(name) - (89 - len("//test/cpp/qps:")) |
|
if m == 0 or m == 1: |
|
return name + "_" * (2 - m) |
|
else: |
|
return name |
|
|
|
def qps_json_driver_batch(): |
|
for scenario in QPS_JSON_DRIVER_SCENARIOS: |
|
grpc_cc_test( |
|
name = add_suffix("qps_json_driver_test_%s" % scenario), |
|
srcs = ["qps_json_driver.cc"], |
|
args = [ |
|
"--run_inproc", |
|
"--scenarios_json", |
|
QPS_JSON_DRIVER_SCENARIOS[scenario], |
|
], |
|
deps = [ |
|
":benchmark_config", |
|
":driver_impl", |
|
"//:grpc++", |
|
"//test/cpp/util:test_config", |
|
"//test/cpp/util:test_util", |
|
], |
|
tags = [ |
|
"qps_json_driver", |
|
"no_mac", |
|
], |
|
# TODO(b/156975956): address OOMing benchmark tests |
|
flaky = True, |
|
) |
|
|
|
def json_run_localhost_batch(): |
|
for scenario in JSON_RUN_LOCALHOST_SCENARIOS: |
|
grpc_cc_test( |
|
name = add_suffix("json_run_localhost_%s" % scenario), |
|
srcs = ["json_run_localhost.cc"], |
|
args = [ |
|
"--scenarios_json", |
|
JSON_RUN_LOCALHOST_SCENARIOS[scenario], |
|
], |
|
data = [ |
|
"//test/cpp/qps:qps_json_driver", |
|
"//test/cpp/qps:qps_worker", |
|
], |
|
deps = [ |
|
"//:gpr", |
|
"//test/core/util:grpc_test_util", |
|
"//test/cpp/util:test_config", |
|
"//test/cpp/util:test_util", |
|
], |
|
tags = [ |
|
"json_run_localhost", |
|
"no_windows", |
|
"no_mac", |
|
], |
|
# TODO(b/156975956): address OOMing benchmark tests |
|
flaky = True, |
|
)
|
|
|