|
|
|
@ -222,7 +222,7 @@ static void read_and_write_test(grpc_endpoint_test_config config, |
|
|
|
|
even when bytes_written is unsigned. */ |
|
|
|
|
state.bytes_written -= state.current_write_size; |
|
|
|
|
read_and_write_test_write_handler(&exec_ctx, &state, 1); |
|
|
|
|
grpc_exec_ctx_finish(&exec_ctx); |
|
|
|
|
grpc_exec_ctx_flush(&exec_ctx); |
|
|
|
|
|
|
|
|
|
grpc_endpoint_read(&exec_ctx, state.read_ep, &state.incoming, |
|
|
|
|
&state.done_read); |
|
|
|
@ -233,7 +233,7 @@ static void read_and_write_test(grpc_endpoint_test_config config, |
|
|
|
|
gpr_log(GPR_DEBUG, "shutdown write"); |
|
|
|
|
grpc_endpoint_shutdown(&exec_ctx, state.write_ep); |
|
|
|
|
} |
|
|
|
|
grpc_exec_ctx_finish(&exec_ctx); |
|
|
|
|
grpc_exec_ctx_flush(&exec_ctx); |
|
|
|
|
|
|
|
|
|
gpr_mu_lock(g_mu); |
|
|
|
|
while (!state.read_done || !state.write_done) { |
|
|
|
@ -243,7 +243,7 @@ static void read_and_write_test(grpc_endpoint_test_config config, |
|
|
|
|
gpr_now(GPR_CLOCK_MONOTONIC), deadline); |
|
|
|
|
} |
|
|
|
|
gpr_mu_unlock(g_mu); |
|
|
|
|
grpc_exec_ctx_finish(&exec_ctx); |
|
|
|
|
grpc_exec_ctx_flush(&exec_ctx); |
|
|
|
|
|
|
|
|
|
end_test(config); |
|
|
|
|
gpr_slice_buffer_destroy(&state.outgoing); |
|
|
|
@ -253,11 +253,64 @@ static void read_and_write_test(grpc_endpoint_test_config config, |
|
|
|
|
grpc_exec_ctx_finish(&exec_ctx); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void inc_on_failure(grpc_exec_ctx *exec_ctx, void *arg, bool success) { |
|
|
|
|
*(int *)arg += (success == false); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void wait_for_fail_count(grpc_exec_ctx *exec_ctx, int *fail_count, |
|
|
|
|
int want_fail_count) { |
|
|
|
|
grpc_exec_ctx_flush(exec_ctx); |
|
|
|
|
for (int i = 0; i < 5 && *fail_count < want_fail_count; i++) { |
|
|
|
|
grpc_pollset_worker *worker = NULL; |
|
|
|
|
gpr_timespec now = gpr_now(GPR_CLOCK_REALTIME); |
|
|
|
|
gpr_timespec deadline = |
|
|
|
|
gpr_time_add(now, gpr_time_from_seconds(1, GPR_TIMESPAN)); |
|
|
|
|
gpr_mu_lock(g_mu); |
|
|
|
|
grpc_pollset_work(exec_ctx, g_pollset, &worker, now, deadline); |
|
|
|
|
gpr_mu_unlock(g_mu); |
|
|
|
|
grpc_exec_ctx_flush(exec_ctx); |
|
|
|
|
} |
|
|
|
|
GPR_ASSERT(*fail_count == want_fail_count); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
static void multiple_shutdown_test(grpc_endpoint_test_config config) { |
|
|
|
|
grpc_endpoint_test_fixture f = |
|
|
|
|
begin_test(config, "multiple_shutdown_test", 128); |
|
|
|
|
int fail_count = 0; |
|
|
|
|
|
|
|
|
|
gpr_slice_buffer slice_buffer; |
|
|
|
|
gpr_slice_buffer_init(&slice_buffer); |
|
|
|
|
|
|
|
|
|
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; |
|
|
|
|
grpc_endpoint_add_to_pollset(&exec_ctx, f.client_ep, g_pollset); |
|
|
|
|
grpc_endpoint_read(&exec_ctx, f.client_ep, &slice_buffer, |
|
|
|
|
grpc_closure_create(inc_on_failure, &fail_count)); |
|
|
|
|
wait_for_fail_count(&exec_ctx, &fail_count, 0); |
|
|
|
|
grpc_endpoint_shutdown(&exec_ctx, f.client_ep); |
|
|
|
|
wait_for_fail_count(&exec_ctx, &fail_count, 1); |
|
|
|
|
grpc_endpoint_read(&exec_ctx, f.client_ep, &slice_buffer, |
|
|
|
|
grpc_closure_create(inc_on_failure, &fail_count)); |
|
|
|
|
wait_for_fail_count(&exec_ctx, &fail_count, 2); |
|
|
|
|
gpr_slice_buffer_add(&slice_buffer, gpr_slice_from_copied_string("a")); |
|
|
|
|
grpc_endpoint_write(&exec_ctx, f.client_ep, &slice_buffer, |
|
|
|
|
grpc_closure_create(inc_on_failure, &fail_count)); |
|
|
|
|
wait_for_fail_count(&exec_ctx, &fail_count, 3); |
|
|
|
|
grpc_endpoint_shutdown(&exec_ctx, f.client_ep); |
|
|
|
|
wait_for_fail_count(&exec_ctx, &fail_count, 3); |
|
|
|
|
|
|
|
|
|
gpr_slice_buffer_destroy(&slice_buffer); |
|
|
|
|
|
|
|
|
|
grpc_endpoint_destroy(&exec_ctx, f.client_ep); |
|
|
|
|
grpc_endpoint_destroy(&exec_ctx, f.server_ep); |
|
|
|
|
grpc_exec_ctx_finish(&exec_ctx); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void grpc_endpoint_tests(grpc_endpoint_test_config config, |
|
|
|
|
grpc_pollset *pollset, gpr_mu *mu) { |
|
|
|
|
size_t i; |
|
|
|
|
g_pollset = pollset; |
|
|
|
|
g_mu = mu; |
|
|
|
|
multiple_shutdown_test(config); |
|
|
|
|
read_and_write_test(config, 10000000, 100000, 8192, 0); |
|
|
|
|
read_and_write_test(config, 1000000, 100000, 1, 0); |
|
|
|
|
read_and_write_test(config, 100000000, 100000, 1, 1); |
|
|
|
@ -265,4 +318,5 @@ void grpc_endpoint_tests(grpc_endpoint_test_config config, |
|
|
|
|
read_and_write_test(config, 40320, i, i, 0); |
|
|
|
|
} |
|
|
|
|
g_pollset = NULL; |
|
|
|
|
g_mu = NULL; |
|
|
|
|
} |
|
|
|
|