Replace InitBenchmark with InitTest. Remove qps_test.cc

pull/11797/head
yang-g 8 years ago
parent ed3ad4b386
commit b575a34e05
  1. 5
      test/cpp/qps/BUILD
  2. 4
      test/cpp/qps/benchmark_config.cc
  3. 3
      test/cpp/qps/benchmark_config.h
  4. 3
      test/cpp/qps/json_run_localhost.cc
  5. 3
      test/cpp/qps/qps_interarrival_test.cc
  6. 3
      test/cpp/qps/qps_json_driver.cc
  7. 4
      test/cpp/qps/qps_openloop_test.cc
  8. 64
      test/cpp/qps/qps_test.cc
  9. 3
      test/cpp/qps/secure_sync_unary_ping_pong_test.cc

@ -121,6 +121,7 @@ grpc_cc_binary(
"//:gpr",
"//test/core/util:gpr_test_util",
"//test/core/util:grpc_test_util",
"//test/cpp/util:test_config",
"//test/cpp/util:test_util",
],
)
@ -131,6 +132,7 @@ grpc_cc_test(
deps = [
":histogram",
":interarrival",
"//test/cpp/util:test_config",
],
)
@ -141,6 +143,7 @@ grpc_cc_binary(
":benchmark_config",
":driver_impl",
"//:grpc++",
"//test/cpp/util:test_config",
],
external_deps = [
"gflags",
@ -154,6 +157,7 @@ grpc_cc_test(
":benchmark_config",
":driver_impl",
":qps_worker_impl",
"//test/cpp/util:test_config",
],
)
@ -164,6 +168,7 @@ grpc_cc_test(
":benchmark_config",
":driver_impl",
"//:grpc++",
"//test/cpp/util:test_config",
],
)

@ -54,10 +54,6 @@ using namespace gflags;
namespace grpc {
namespace testing {
void InitBenchmark(int* argc, char*** argv, bool remove_flags) {
ParseCommandLineFlags(argc, argv, remove_flags);
}
static std::shared_ptr<Reporter> InitBenchmarkReporters() {
auto* composite_reporter = new CompositeReporter;
if (FLAGS_enable_log_reporter) {

@ -20,15 +20,12 @@
#define GRPC_TEST_CPP_UTIL_BENCHMARK_CONFIG_H
#include <memory>
#include <vector>
#include "test/cpp/qps/report.h"
namespace grpc {
namespace testing {
void InitBenchmark(int* argc, char*** argv, bool remove_flags);
/** Returns the benchmark Reporter instance.
*
* The returned instance will take care of generating reports for all the actual

@ -29,6 +29,7 @@
#include "src/core/lib/support/env.h"
#include "test/core/util/port.h"
#include "test/cpp/util/subprocess.h"
#include "test/cpp/util/test_config.h"
using grpc::SubProcess;
@ -75,6 +76,8 @@ static void LogStatus(int status, const char* label) {
}
int main(int argc, char** argv) {
grpc::testing::InitTest(&argc, &argv, true);
register_sighandler();
std::string my_bin = argv[0];

@ -23,6 +23,7 @@
#include <grpc/support/histogram.h>
#include "test/cpp/qps/interarrival.h"
#include "test/cpp/util/test_config.h"
using grpc::testing::RandomDistInterface;
using grpc::testing::InterarrivalTimer;
@ -50,6 +51,8 @@ static void RunTest(RandomDistInterface &&r, int threads, std::string title) {
using grpc::testing::ExpDist;
int main(int argc, char **argv) {
grpc::testing::InitTest(&argc, &argv, true);
RunTest(ExpDist(10.0), 5, std::string("Exponential(10)"));
return 0;
}

@ -30,6 +30,7 @@
#include "test/cpp/qps/driver.h"
#include "test/cpp/qps/parse_json.h"
#include "test/cpp/qps/report.h"
#include "test/cpp/util/test_config.h"
DEFINE_string(scenarios_file, "",
"JSON file containing an array of Scenario objects");
@ -219,7 +220,7 @@ static bool QpsDriver() {
} // namespace grpc
int main(int argc, char** argv) {
grpc::testing::InitBenchmark(&argc, &argv, true);
grpc::testing::InitTest(&argc, &argv, true);
bool ok = grpc::testing::QpsDriver();

@ -20,10 +20,10 @@
#include <grpc/support/log.h>
#include "test/core/util/test_config.h"
#include "test/cpp/qps/benchmark_config.h"
#include "test/cpp/qps/driver.h"
#include "test/cpp/qps/report.h"
#include "test/core/util/test_config.h"
namespace grpc {
namespace testing {
@ -58,7 +58,7 @@ static void RunQPS() {
} // namespace grpc
int main(int argc, char** argv) {
grpc::testing::InitBenchmark(&argc, &argv, true);
grpc::testing::InitTest(&argc, &argv, true);
grpc::testing::RunQPS();

@ -1,64 +0,0 @@
/*
*
* Copyright 2015 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.
*
*/
#include <set>
#include <grpc/support/log.h>
#include "test/cpp/qps/benchmark_config.h"
#include "test/cpp/qps/driver.h"
#include "test/cpp/qps/report.h"
namespace grpc {
namespace testing {
static const int WARMUP = 20;
static const int BENCHMARK = 20;
static void RunQPS() {
gpr_log(GPR_INFO, "Running QPS test");
ClientConfig client_config;
client_config.set_client_type(ASYNC_CLIENT);
client_config.set_outstanding_rpcs_per_channel(100);
client_config.set_client_channels(64);
client_config.set_async_client_threads(8);
client_config.set_rpc_type(STREAMING);
client_config.mutable_load_params()->mutable_closed_loop();
ServerConfig server_config;
server_config.set_server_type(ASYNC_SERVER);
server_config.set_async_server_threads(8);
const auto result =
RunScenario(client_config, 1, server_config, 1, WARMUP, BENCHMARK, -2);
GetReporter()->ReportQPSPerCore(*result);
GetReporter()->ReportLatency(*result);
}
} // namespace testing
} // namespace grpc
int main(int argc, char** argv) {
grpc::testing::InitBenchmark(&argc, &argv, true);
grpc::testing::RunQPS();
return 0;
}

@ -23,6 +23,7 @@
#include "test/cpp/qps/benchmark_config.h"
#include "test/cpp/qps/driver.h"
#include "test/cpp/qps/report.h"
#include "test/cpp/util/test_config.h"
namespace grpc {
namespace testing {
@ -61,7 +62,7 @@ static void RunSynchronousUnaryPingPong() {
} // namespace grpc
int main(int argc, char** argv) {
grpc::testing::InitBenchmark(&argc, &argv, true);
grpc::testing::InitTest(&argc, &argv, true);
grpc::testing::RunSynchronousUnaryPingPong();

Loading…
Cancel
Save