-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathResumableStreamTest.php
More file actions
133 lines (121 loc) · 5.56 KB
/
ResumableStreamTest.php
File metadata and controls
133 lines (121 loc) · 5.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
/**
* Copyright 2024, Google LLC All rights reserved.
*
* 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.
*/
namespace Google\Cloud\Bigtable\Tests\Unit;
use Google\Cloud\Bigtable\ResumableStream;
use Google\Cloud\Bigtable\V2\Client\BigtableClient;
use Google\Cloud\Bigtable\V2\ReadRowsRequest;
use Google\Cloud\Bigtable\V2\ReadRowsResponse;
use PHPUnit\Framework\TestCase;
use Prophecy\PhpUnit\ProphecyTrait;
use Prophecy\Argument;
use Google\ApiCore\ServerStream;
/**
* @group bigtable
* @group bigtabledata
*/
class ResumableStreamTest extends TestCase
{
use ProphecyTrait;
const RETRYABLE_CODE = 1234;
public function testRetryDelayAndAttemptAreResetWhenRowReceived()
{
if (extension_loaded('protobuf')) {
$this->markTestSkipped('This test is not compatible with the protobuf extension');
}
$count = 0;
$stream = $this->prophesize(ServerStream::class);
$generator1 = function () {
yield new ReadRowsResponse();
throw new \Exception('This is the 3rd retryable', self::RETRYABLE_CODE);
};
$generator2 = fn () => yield new ReadRowsResponse();
$stream->readAll()
->will(function () use (&$count, $generator1, $generator2) {
// Simlate a call to readRows where the server throws 2 exceptions, reads a row
// successfuly, throws another exception, and reads one more row successfully.
return match ($count++) {
0 => throw new \Exception('This is the 1st retryable', self::RETRYABLE_CODE),
1 => throw new \Exception('This is the 2nd retryable', self::RETRYABLE_CODE),
2 => $generator1(),
3 => throw new \Exception(
'The 4th exception should retry because attempts reset',
self::RETRYABLE_CODE
),
4 => $generator2(),
};
});
$bigtable = $this->prophesize(BigtableClient::class);
$bigtable->readRows(Argument::type(ReadRowsRequest::class), Argument::type('array'))
->shouldBeCalledTimes(5)
->willReturn($stream->reveal());
$resumableStream = new ResumableStream(
$bigtable->reveal(),
'readRows',
$this->prophesize(ReadRowsRequest::class)->reveal(),
fn ($request, $callOptions) => [$request, $callOptions],
fn ($exception) => $exception && $exception->getCode() === self::RETRYABLE_CODE
);
$retries = 0;
$delayFunction = function ($delayFactor) use (&$retries) {
$this->assertEquals(match (++$retries) {
1 => 1, // initial delay
2 => 2, // increment by 1
3 => 1, // the delay is reset by the successful call
4 => 2, // increment by 1
}, $delayFactor);
};
$prop = (new \ReflectionObject($resumableStream))->getProperty('delayFunction');
$prop->setValue($resumableStream, $delayFunction);
$rows = iterator_to_array($resumableStream->readAll());
$this->assertEquals(2, count($rows));
$this->assertEquals(4, $retries);
}
public function testThreeConsecutiveFailuresIsNotReset()
{
if (extension_loaded('protobuf')) {
$this->markTestSkipped('This test is not compatible with the protobuf extension');
}
$this->expectException(\Exception::class);
$this->expectExceptionMessage('This is retryable, but we are at our limit!');
$count = 0;
$stream = $this->prophesize(ServerStream::class);
$stream->readAll()
->will(function () use (&$count) {
// Simlate a call to readRows where the server throws 2 exceptions, reads a row
// successfuly, throws another exception, and reads one more row successfully.
return match ($count++) {
0 => throw new \Exception('This is retryable!', self::RETRYABLE_CODE),
1 => throw new \Exception('This is also retryable!', self::RETRYABLE_CODE),
2 => throw new \Exception('This is too is retryable!', self::RETRYABLE_CODE),
3 => throw new \Exception('This is retryable, but we are at our limit!', self::RETRYABLE_CODE),
4 => throw new \Exception('This is not retryable and should not be thrown'),
};
});
$bigtable = $this->prophesize(BigtableClient::class);
$bigtable->readRows(Argument::type(ReadRowsRequest::class), Argument::type('array'))
->shouldBeCalledTimes(4)
->willReturn($stream->reveal());
$resumableStream = new ResumableStream(
$bigtable->reveal(),
'readRows',
$this->prophesize(ReadRowsRequest::class)->reveal(),
fn ($request, $callOptions) => [$request, $callOptions],
fn ($exception) => $exception && $exception->getCode() === self::RETRYABLE_CODE
);
iterator_to_array($resumableStream->readAll());
}
}