diff options
author | Stanley Cheung <stanleycheung@google.com> | 2015-08-24 16:58:42 -0700 |
---|---|---|
committer | Stanley Cheung <stanleycheung@google.com> | 2015-09-02 13:34:40 -0700 |
commit | 3ab8e79b0111dc93696d72e815531b5ee3124230 (patch) | |
tree | badc54d70b58bb289fda46dba0d0314d1d08a492 /src/php/tests/interop/interop_client.php | |
parent | dea2648a6acb5c16b158335b4deb02caf4f02487 (diff) |
php: support per message compression disable
Diffstat (limited to 'src/php/tests/interop/interop_client.php')
-rwxr-xr-x | src/php/tests/interop/interop_client.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/php/tests/interop/interop_client.php b/src/php/tests/interop/interop_client.php index bd15ee4303..28782735c0 100755 --- a/src/php/tests/interop/interop_client.php +++ b/src/php/tests/interop/interop_client.php @@ -173,7 +173,11 @@ function clientStreaming($stub) { return $request; }, $request_lengths); - list($result, $status) = $stub->StreamingInputCall($requests)->wait(); + $call = $stub->StreamingInputCall(); + foreach ($requests as $request) { + $call->write($request); + } + list($result, $status) = $call->wait(); hardAssert($status->code === Grpc\STATUS_OK, 'Call did not complete successfully'); hardAssert($result->getAggregatedPayloadSize() === 74922, 'aggregated_payload_size was incorrect'); @@ -374,5 +378,6 @@ switch ($args['test_case']) { // messages are sent immediately after metadata is sent. There is // currently no way to cancel before messages are sent. default: + echo "Unsupported test case $args[test_case]\n"; exit(1); } |