-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathPerformanceContext.php
285 lines (254 loc) · 7.92 KB
/
PerformanceContext.php
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<?php
namespace Aws\Test;
use Aws;
use Aws\Api\ApiProvider;
use Aws\Api\Service;
use Aws\Result;
use Aws\S3\S3Client;
use Behat\Behat\Context\Context;
use Behat\Behat\Context\SnippetAcceptingContext;
use Behat\Behat\Hook\Scope\AfterScenarioScope;
use Behat\Behat\Hook\Scope\BeforeScenarioScope;
use DomainException;
use PHPUnit\Framework\Assert;
use GuzzleHttp\Psr7;
/**
* Defines application features from the specific context.
*/
class PerformanceContext implements Context, SnippetAcceptingContext
{
use UsesServiceTrait;
/** @var array */
private $resourceUsageSnapshot = [];
/** @var string[] */
private $serviceList = [];
/** @var array */
private $clients = [];
/** @var string */
private $tempFilePath;
/** @var S3Client */
private $s3Client;
/**
* @BeforeScenario @streaming
*
* @param BeforeScenarioScope $scope
*/
public function setUp(BeforeScenarioScope $scope)
{
$this->s3Client = $this->getTestClient('s3');
}
/**
* @AfterScenario @streaming
*
* @param AfterScenarioScope $scope
*/
public function cleanUpFile(AfterScenarioScope $scope)
{
if ($this->tempFilePath) {
unlink($this->tempFilePath);
}
}
/**
* @Given I have loaded my SDK and its dependencies
*/
public function iHaveLoadedMySdkAndItsDependencies()
{
$this->iCreateAndDiscardClientSForEachService(1);
}
/**
* @Given I take a snapshot of my resources
*/
public function iTakeASnapshotOfMyResources()
{
$this->resourceUsageSnapshot = [
'memory' => memory_get_usage(),
'open_file_handles' => $this->getOpenFileHandleCount(),
];
}
/**
* @Given I have a list of services
*/
public function iHaveAListOfServices()
{
$this->serviceList = array_keys(Aws\manifest());
}
/**
* @Given /^I have a (\d+) byte file$/
*/
public function iHaveAByteFile($fileSize)
{
$path = tempnam(sys_get_temp_dir(), 'performance_test');
$kb = ceil($fileSize / 1024);
if (self::isRunningOnWindows()) {
// dd is not available, so write out a file of the requisite size
$handle = fopen($path, 'w');
$dummyText = str_repeat('x', 1024);
for ($i = 0; $i < $kb; $i++) {
fwrite($handle, $dummyText);
}
fclose($handle);
} else {
shell_exec("dd if=/dev/zero of=$path bs=1024 count=$kb >& /dev/null");
}
$this->tempFilePath = $path;
}
/**
* @When I create a client for each service
*/
public function iCreateAClientForEachService()
{
foreach ($this->serviceList as $service) {
$this->clients[$service] = $this->getTestClient($service, [
'CloudSearchDomain' => [
'endpoint' => 'https://aws.amazon.com',
],
]);
}
}
/**
* @When /^I create and discard (\d+) clients for each service$/
*/
public function iCreateAndDiscardClientSForEachService($numClients)
{
foreach ($this->serviceList as $service) {
for ($i = 0; $i < $numClients; $i++) {
$this->getTestClient($service, [
'CloudSearchDomain' => [
'endpoint' => 'https://aws.amazon.com',
],
]);
}
}
}
/**
* @When /^I execute (\d+) command\(s\) on each client$/
*/
public function iExecuteCommandsOnEachClient($numCommands)
{
foreach ($this->serviceList as $service) {
try {
$operation = $this
->findOperationWithNoRequiredParameters($service);
$this->addMockResults(
$this->clients[$service],
array_fill(0, $numCommands, new Result)
);
for ($i = 0; $i < $numCommands; $i++) {
$this->clients[$service]->execute(
$this->clients[$service]->getCommand($operation)
);
}
} catch (DomainException $e) {
// This step cannot be completed due to service constraints.
}
}
}
/**
* @When I upload the file
*/
public function iUploadTheFile()
{
$options = [
'concurrency' => 5,
'mup_threshold' => 16 * 1024 * 1024,
'part_size' => 5 * 1024 * 1024,
];
$putObject = new Result();
$initiate = new Result(['UploadId' => 'foo']);
$putPart = new Result(['ETag' => 'bar']);
$complete = new Result(['Location' => 'https://s3.amazonaws.com/bucket/key']);
$filesize = filesize($this->tempFilePath);
if ($filesize < $options['mup_threshold']) {
$this->addMockResults($this->s3Client, [$putObject]);
} else {
$parts = ceil($filesize / $options['part_size']);
$this->addMockResults(
$this->s3Client,
array_merge(
[$initiate],
array_fill(0, $parts, $putPart),
[$complete]
)
);
}
$this->s3Client->upload(
'bucket',
'key',
fopen($this->tempFilePath, 'rb'),
'private',
$options
);
}
/**
* @When then download the file
*/
public function thenDownloadTheFile()
{
$this->addMockResults($this->s3Client, [new Result([
'Body' => Psr7\Utils::streamFor(Psr7\Utils::tryFopen($this->tempFilePath, 'rb')),
])]);
$this->s3Client->getObject([
'Bucket' => 'bucket',
'Key' => 'key',
]);
}
/**
* @When I destroy all the clients
*/
public function iDestroyAllTheClients()
{
$this->clients = [];
gc_collect_cycles();
}
/**
* @Then I should not have leaked any resources
*/
public function iShouldNotHaveLeakedAnyResources()
{
// These should account for additional memory and files handles used to
// load class definitions into the PHP runtime
static $memoryFudge;
static $handlesFudge;
if (empty($memoryFudge)) {
$opcacheEnabled = function_exists('opcache_get_status')
&& !empty(opcache_get_status(false)['opcache_enabled']);
$memoryFudge = $opcacheEnabled
? 256 * 1024 // 256KB if OPCache is enabled
: 5 * 1024 * 1024; // 5MB otherwise
$handlesFudge = 5;
}
// Make sure you're not counting anything that's eligible for GC
gc_collect_cycles();
Assert::assertLessThanOrEqual(
$this->resourceUsageSnapshot['memory'] + $memoryFudge,
memory_get_usage()
);
Assert::assertLessThanOrEqual(
$this->resourceUsageSnapshot['open_file_handles'] + $handlesFudge,
$this->getOpenFileHandleCount()
);
}
private function findOperationWithNoRequiredParameters($service)
{
$provider = ApiProvider::defaultProvider();
$definition = new Service($provider('api', $service, 'latest'), $provider);
foreach ($definition->getOperations() as $name => $operation) {
if (empty($operation->getInput()['required'])) {
return $name;
}
}
throw new DomainException("The $service service has no operations"
. " without required parameters");
}
private function getOpenFileHandleCount()
{
if (self::isRunningOnWindows()) {
return 0;
}
return (int) shell_exec('lsof -p ' . getmypid() . ' | wc -l');
}
private static function isRunningOnWindows()
{
return 'WIN' === strtoupper(substr(PHP_OS, 0, 3));
}
}