aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/backoff
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-11-09 17:46:29 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2017-11-09 17:46:29 -0800
commit4e9265c828f0b559b5fdba04913fed46bf771399 (patch)
tree4a379fc2bdc037753cf8d81f8b86327e4bc50a42 /test/core/backoff
parent0ee7574732a06e8cace4e099a678f4bd5dbff679 (diff)
parentd9da7387b8057f3bd99a417a5ee905377bce9296 (diff)
Merge with master
Diffstat (limited to 'test/core/backoff')
-rw-r--r--test/core/backoff/BUILD4
-rw-r--r--test/core/backoff/backoff_test.c150
-rw-r--r--test/core/backoff/backoff_test.cc187
3 files changed, 114 insertions, 227 deletions
diff --git a/test/core/backoff/BUILD b/test/core/backoff/BUILD
index 4ae762007c..4cd7acf066 100644
--- a/test/core/backoff/BUILD
+++ b/test/core/backoff/BUILD
@@ -25,8 +25,8 @@ package(
grpc_cc_test(
name = "backoff_test",
- srcs = ["backoff_test.c"],
- language = "C",
+ srcs = ["backoff_test.cc"],
+ language = "C++",
deps = [
"//:grpc",
"//test/core/util:grpc_test_util",
diff --git a/test/core/backoff/backoff_test.c b/test/core/backoff/backoff_test.c
deleted file mode 100644
index 93952f3d10..0000000000
--- a/test/core/backoff/backoff_test.c
+++ /dev/null
@@ -1,150 +0,0 @@
-/*
- *
- * 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.
- *
- */
-
-#include "src/core/lib/backoff/backoff.h"
-
-#include <grpc/support/log.h>
-
-#include "test/core/util/test_config.h"
-
-static void test_constant_backoff(void) {
- grpc_backoff backoff;
- grpc_backoff_init(&backoff, 200 /* initial timeout */, 1.0 /* multiplier */,
- 0.0 /* jitter */, 100 /* min timeout */,
- 1000 /* max timeout */);
-
- exec_ctx = GRPC_EXEC_CTX_INIT;
- grpc_millis next = grpc_backoff_begin(&backoff);
- GPR_ASSERT(next - grpc_exec_ctx_now() == 200);
- for (int i = 0; i < 10000; i++) {
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next - grpc_exec_ctx_now() == 200);
- exec_ctx.now = next;
- }
- grpc_exec_ctx_finish();
-}
-
-static void test_min_connect(void) {
- grpc_backoff backoff;
- grpc_backoff_init(&backoff, 100 /* initial timeout */, 1.0 /* multiplier */,
- 0.0 /* jitter */, 200 /* min timeout */,
- 1000 /* max timeout */);
-
- exec_ctx = GRPC_EXEC_CTX_INIT;
- grpc_millis next = grpc_backoff_begin(&backoff);
- GPR_ASSERT(next - grpc_exec_ctx_now() == 200);
- grpc_exec_ctx_finish();
-}
-
-static void test_no_jitter_backoff(void) {
- grpc_backoff backoff;
- grpc_backoff_init(&backoff, 2 /* initial timeout */, 2.0 /* multiplier */,
- 0.0 /* jitter */, 1 /* min timeout */,
- 513 /* max timeout */);
- // x_1 = 2
- // x_n = 2**i + x_{i-1} ( = 2**(n+1) - 2 )
- exec_ctx = GRPC_EXEC_CTX_INIT;
- exec_ctx.now = 0;
- exec_ctx.now_is_valid = true;
- grpc_millis next = grpc_backoff_begin(&backoff);
- GPR_ASSERT(next == 2);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 6);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 14);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 30);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 62);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 126);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 254);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 510);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 1022);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- // Hit the maximum timeout. From this point onwards, retries will increase
- // only by max timeout.
- GPR_ASSERT(next == 1535);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 2048);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 2561);
- grpc_exec_ctx_finish();
-}
-
-static void test_jitter_backoff(void) {
- const int64_t initial_timeout = 500;
- const double jitter = 0.1;
- grpc_backoff backoff;
- grpc_backoff_init(&backoff, (grpc_millis)initial_timeout,
- 1.0 /* multiplier */, jitter, 100 /* min timeout */,
- 1000 /* max timeout */);
-
- backoff.rng_state = 0; // force consistent PRNG
-
- exec_ctx = GRPC_EXEC_CTX_INIT;
- grpc_millis next = grpc_backoff_begin(&backoff);
- GPR_ASSERT(next - grpc_exec_ctx_now() == 500);
-
- int64_t expected_next_lower_bound =
- (int64_t)((double)initial_timeout * (1 - jitter));
- int64_t expected_next_upper_bound =
- (int64_t)((double)initial_timeout * (1 + jitter));
-
- for (int i = 0; i < 10000; i++) {
- next = grpc_backoff_step(&backoff);
-
- // next-now must be within (jitter*100)% of the previous timeout.
- const int64_t timeout_millis = next - grpc_exec_ctx_now();
- GPR_ASSERT(timeout_millis >= expected_next_lower_bound);
- GPR_ASSERT(timeout_millis <= expected_next_upper_bound);
-
- expected_next_lower_bound =
- (int64_t)((double)timeout_millis * (1 - jitter));
- expected_next_upper_bound =
- (int64_t)((double)timeout_millis * (1 + jitter));
- exec_ctx.now = next;
- }
- grpc_exec_ctx_finish();
-}
-
-int main(int argc, char **argv) {
- grpc_test_init(argc, argv);
- gpr_time_init();
-
- test_constant_backoff();
- test_min_connect();
- test_no_jitter_backoff();
- test_jitter_backoff();
-
- return 0;
-}
diff --git a/test/core/backoff/backoff_test.cc b/test/core/backoff/backoff_test.cc
index ea27f7547f..4e32298da4 100644
--- a/test/core/backoff/backoff_test.cc
+++ b/test/core/backoff/backoff_test.cc
@@ -19,122 +19,159 @@
#include "src/core/lib/backoff/backoff.h"
#include <grpc/support/log.h>
+#include <grpc/support/useful.h>
#include "test/core/util/test_config.h"
static void test_constant_backoff(void) {
grpc_backoff backoff;
- grpc_backoff_init(&backoff, 200 /* initial timeout */, 1.0 /* multiplier */,
- 0.0 /* jitter */, 100 /* min timeout */,
- 1000 /* max timeout */);
-
- grpc_millis next = grpc_backoff_begin(&backoff);
- GPR_ASSERT(next - grpc_exec_ctx_now() == 200);
+ const grpc_millis initial_backoff = 200;
+ const double multiplier = 1.0;
+ const double jitter = 0.0;
+ const grpc_millis min_connect_timeout = 100;
+ const grpc_millis max_backoff = 1000;
+ grpc_backoff_init(&backoff, initial_backoff, multiplier, jitter,
+ min_connect_timeout, max_backoff);
+ ExecCtx _local_exec_ctx;
+ grpc_backoff_result next_deadlines = grpc_backoff_begin(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline - grpc_exec_ctx_now() ==
+ initial_backoff);
+ GPR_ASSERT(next_deadlines.next_attempt_start_time - grpc_exec_ctx_now() ==
+ initial_backoff);
for (int i = 0; i < 10000; i++) {
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next - grpc_exec_ctx_now() == 200);
- exec_ctx.now = next;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline - grpc_exec_ctx_now() ==
+ initial_backoff);
+ GPR_ASSERT(next_deadlines.next_attempt_start_time - grpc_exec_ctx_now() ==
+ initial_backoff);
+ exec_ctx->now = next_deadlines.current_deadline;
}
grpc_exec_ctx_finish();
}
static void test_min_connect(void) {
grpc_backoff backoff;
- grpc_backoff_init(&backoff, 100 /* initial timeout */, 1.0 /* multiplier */,
- 0.0 /* jitter */, 200 /* min timeout */,
- 1000 /* max timeout */);
-
- grpc_millis next = grpc_backoff_begin(&backoff);
- GPR_ASSERT(next - grpc_exec_ctx_now() == 200);
+ const grpc_millis initial_backoff = 100;
+ const double multiplier = 1.0;
+ const double jitter = 0.0;
+ const grpc_millis min_connect_timeout = 200;
+ const grpc_millis max_backoff = 1000;
+ grpc_backoff_init(&backoff, initial_backoff, multiplier, jitter,
+ min_connect_timeout, max_backoff);
+ ExecCtx _local_exec_ctx;
+ grpc_backoff_result next = grpc_backoff_begin(&backoff);
+ // Because the min_connect_timeout > initial_backoff, current_deadline is used
+ // as the deadline for the current attempt.
+ GPR_ASSERT(next.current_deadline - grpc_exec_ctx_now() ==
+ min_connect_timeout);
+ // ... while, if the current attempt fails, the next one will happen after
+ // initial_backoff.
+ GPR_ASSERT(next.next_attempt_start_time - grpc_exec_ctx_now() ==
+ initial_backoff);
grpc_exec_ctx_finish();
}
static void test_no_jitter_backoff(void) {
grpc_backoff backoff;
- grpc_backoff_init(&backoff, 2 /* initial timeout */, 2.0 /* multiplier */,
- 0.0 /* jitter */, 1 /* min timeout */,
- 513 /* max timeout */);
+ const grpc_millis initial_backoff = 2;
+ const double multiplier = 2.0;
+ const double jitter = 0.0;
+ const grpc_millis min_connect_timeout = 1;
+ const grpc_millis max_backoff = 513;
+ grpc_backoff_init(&backoff, initial_backoff, multiplier, jitter,
+ min_connect_timeout, max_backoff);
// x_1 = 2
// x_n = 2**i + x_{i-1} ( = 2**(n+1) - 2 )
-
- exec_ctx.now = 0;
- exec_ctx.now_is_valid = true;
- grpc_millis next = grpc_backoff_begin(&backoff);
- GPR_ASSERT(next == 2);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 6);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 14);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 30);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 62);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 126);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 254);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 510);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 1022);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
+ ExecCtx _local_exec_ctx;
+ exec_ctx->now = 0;
+ exec_ctx->now_is_valid = true;
+ grpc_backoff_result next_deadlines = grpc_backoff_begin(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline ==
+ next_deadlines.next_attempt_start_time);
+ GPR_ASSERT(next_deadlines.current_deadline == 2);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 6);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 14);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 30);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 62);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 126);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 254);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 510);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 1022);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
// Hit the maximum timeout. From this point onwards, retries will increase
// only by max timeout.
- GPR_ASSERT(next == 1535);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 2048);
- exec_ctx.now = next;
- next = grpc_backoff_step(&backoff);
- GPR_ASSERT(next == 2561);
+ GPR_ASSERT(next_deadlines.current_deadline == 1535);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 2048);
+ exec_ctx->now = next_deadlines.current_deadline;
+ next_deadlines = grpc_backoff_step(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline == 2561);
grpc_exec_ctx_finish();
}
static void test_jitter_backoff(void) {
- const int64_t initial_timeout = 500;
+ const grpc_millis initial_backoff = 500;
+ grpc_millis current_backoff = initial_backoff;
+ const grpc_millis max_backoff = 1000;
+ const grpc_millis min_connect_timeout = 100;
+ const double multiplier = 1.0;
const double jitter = 0.1;
grpc_backoff backoff;
- grpc_backoff_init(&backoff, (grpc_millis)initial_timeout,
- 1.0 /* multiplier */, jitter, 100 /* min timeout */,
- 1000 /* max timeout */);
+ grpc_backoff_init(&backoff, initial_backoff, multiplier, jitter,
+ min_connect_timeout, max_backoff);
backoff.rng_state = 0; // force consistent PRNG
- grpc_millis next = grpc_backoff_begin(&backoff);
- GPR_ASSERT(next - grpc_exec_ctx_now() == 500);
+ ExecCtx _local_exec_ctx;
+ grpc_backoff_result next_deadlines = grpc_backoff_begin(&backoff);
+ GPR_ASSERT(next_deadlines.current_deadline - grpc_exec_ctx_now() ==
+ initial_backoff);
+ GPR_ASSERT(next_deadlines.next_attempt_start_time - grpc_exec_ctx_now() ==
+ initial_backoff);
- int64_t expected_next_lower_bound =
- (int64_t)((double)initial_timeout * (1 - jitter));
- int64_t expected_next_upper_bound =
- (int64_t)((double)initial_timeout * (1 + jitter));
+ grpc_millis expected_next_lower_bound =
+ (grpc_millis)((double)current_backoff * (1 - jitter));
+ grpc_millis expected_next_upper_bound =
+ (grpc_millis)((double)current_backoff * (1 + jitter));
for (int i = 0; i < 10000; i++) {
- next = grpc_backoff_step(&backoff);
-
- // next-now must be within (jitter*100)% of the previous timeout.
- const int64_t timeout_millis = next - grpc_exec_ctx_now();
+ next_deadlines = grpc_backoff_step(&backoff);
+ // next-now must be within (jitter*100)% of the current backoff (which
+ // increases by * multiplier up to max_backoff).
+ const grpc_millis timeout_millis =
+ next_deadlines.current_deadline - grpc_exec_ctx_now();
GPR_ASSERT(timeout_millis >= expected_next_lower_bound);
GPR_ASSERT(timeout_millis <= expected_next_upper_bound);
-
+ current_backoff = GPR_MIN(
+ (grpc_millis)((double)current_backoff * multiplier), max_backoff);
expected_next_lower_bound =
- (int64_t)((double)timeout_millis * (1 - jitter));
+ (grpc_millis)((double)current_backoff * (1 - jitter));
expected_next_upper_bound =
- (int64_t)((double)timeout_millis * (1 + jitter));
- exec_ctx.now = next;
+ (grpc_millis)((double)current_backoff * (1 + jitter));
+ exec_ctx->now = next_deadlines.current_deadline;
}
grpc_exec_ctx_finish();
}
-int main(int argc, char **argv) {
+int main(int argc, char** argv) {
grpc_test_init(argc, argv);
gpr_time_init();