|
|
|
@ -197,7 +197,7 @@ static void request_for_disabled_algorithm( |
|
|
|
|
grpc_server_request_call(f.server, &s, &call_details, |
|
|
|
|
&request_metadata_recv, f.cq, f.cq, tag(101)); |
|
|
|
|
GPR_ASSERT(GRPC_CALL_OK == error); |
|
|
|
|
cq_expect_completion(cqv, tag(101), 1); |
|
|
|
|
cq_expect_completion(cqv, tag(101), true); |
|
|
|
|
cq_verify(cqv); |
|
|
|
|
|
|
|
|
|
op = ops; |
|
|
|
@ -214,8 +214,7 @@ static void request_for_disabled_algorithm( |
|
|
|
|
error = grpc_call_start_batch(s, ops, (size_t)(op - ops), tag(102), NULL); |
|
|
|
|
GPR_ASSERT(GRPC_CALL_OK == error); |
|
|
|
|
|
|
|
|
|
cq_expect_completion(cqv, tag(102), 0); |
|
|
|
|
cq_verify(cqv); |
|
|
|
|
cq_expect_completion(cqv, tag(102), false); |
|
|
|
|
|
|
|
|
|
op = ops; |
|
|
|
|
op->op = GRPC_OP_RECV_CLOSE_ON_SERVER; |
|
|
|
@ -226,8 +225,8 @@ static void request_for_disabled_algorithm( |
|
|
|
|
error = grpc_call_start_batch(s, ops, (size_t)(op - ops), tag(103), NULL); |
|
|
|
|
GPR_ASSERT(GRPC_CALL_OK == error); |
|
|
|
|
|
|
|
|
|
cq_expect_completion(cqv, tag(103), 1); |
|
|
|
|
cq_expect_completion(cqv, tag(1), 1); |
|
|
|
|
cq_expect_completion(cqv, tag(103), true); |
|
|
|
|
cq_expect_completion(cqv, tag(1), true); |
|
|
|
|
cq_verify(cqv); |
|
|
|
|
|
|
|
|
|
/* call was cancelled (closed) ... */ |
|
|
|
@ -359,7 +358,7 @@ static void request_with_payload_template( |
|
|
|
|
grpc_server_request_call(f.server, &s, &call_details, |
|
|
|
|
&request_metadata_recv, f.cq, f.cq, tag(101)); |
|
|
|
|
GPR_ASSERT(GRPC_CALL_OK == error); |
|
|
|
|
cq_expect_completion(cqv, tag(101), 1); |
|
|
|
|
cq_expect_completion(cqv, tag(101), true); |
|
|
|
|
cq_verify(cqv); |
|
|
|
|
|
|
|
|
|
GPR_ASSERT(GPR_BITCOUNT(grpc_call_test_only_get_encodings_accepted_by_peer( |
|
|
|
@ -385,7 +384,7 @@ static void request_with_payload_template( |
|
|
|
|
error = grpc_call_start_batch(s, ops, (size_t)(op - ops), tag(102), NULL); |
|
|
|
|
GPR_ASSERT(GRPC_CALL_OK == error); |
|
|
|
|
|
|
|
|
|
cq_expect_completion(cqv, tag(102), 1); |
|
|
|
|
cq_expect_completion(cqv, tag(102), true); |
|
|
|
|
cq_verify(cqv); |
|
|
|
|
|
|
|
|
|
op = ops; |
|
|
|
@ -404,8 +403,8 @@ static void request_with_payload_template( |
|
|
|
|
error = grpc_call_start_batch(s, ops, (size_t)(op - ops), tag(103), NULL); |
|
|
|
|
GPR_ASSERT(GRPC_CALL_OK == error); |
|
|
|
|
|
|
|
|
|
cq_expect_completion(cqv, tag(103), 1); |
|
|
|
|
cq_expect_completion(cqv, tag(1), 1); |
|
|
|
|
cq_expect_completion(cqv, tag(103), true); |
|
|
|
|
cq_expect_completion(cqv, tag(1), true); |
|
|
|
|
cq_verify(cqv); |
|
|
|
|
|
|
|
|
|
GPR_ASSERT(status == GRPC_STATUS_OK); |
|
|
|
|