-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathTerminusTestBase.php
448 lines (399 loc) · 11.2 KB
/
TerminusTestBase.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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<?php
namespace Pantheon\Terminus\Tests\Functional;
use PHPUnit\Framework\TestCase;
/**
* Class TerminusTestBase.
*
* @package Pantheon\Terminus\Tests\Functional
*/
abstract class TerminusTestBase extends TestCase
{
/**
* Run a terminus command.
*
* @param string $command
* The command to run.
* @param string|null $pipeInput
* The pipe input.
*
* @return array
* The execution's stdout [0], exit code [1] and stderr [2].
*/
protected static function callTerminus(string $command, ?string $pipeInput = null): array
{
$procCommand = sprintf('%s %s', TERMINUS_BIN_FILE, $command);
if (null !== $pipeInput) {
$procCommand = sprintf('%s | %s', $pipeInput, $procCommand);
}
$process = proc_open(
$procCommand,
[
1 => ['pipe', 'w'],
2 => ['pipe', 'w'],
],
$pipes,
dirname(__DIR__, 2)
);
if (!is_resource($process)) {
return ['', 1, sprintf('Failed executing command "%s"', $procCommand)];
}
$stdout = trim(stream_get_contents($pipes[1]));
fclose($pipes[1]);
$stderr = trim(stream_get_contents($pipes[2]));
fclose($pipes[2]);
$exitCode = proc_close($process);
return [$stdout, $exitCode, $stderr];
}
/**
* Run a terminus command.
*
* @param string $command
* The command to run.
* @param array $suffixParts
* Additional command options added to the end of the command line.
* @param bool $assertExitCode
* If set to TRUE, assert the exit code equals to zero.
*/
protected function terminus(string $command, array $suffixParts = [], bool $assertExitCode = true): ?string
{
if (count($suffixParts) > 0) {
$command = sprintf('%s --yes %s', $command, implode(' ', $suffixParts));
} else {
$command = sprintf('%s --yes', $command);
}
[$output, $exitCode, $error] = static::callTerminus($command);
if (true === $assertExitCode) {
$this->assertEquals(0, $exitCode, $error);
}
return $output;
}
/**
* Run a terminus command with the pipe input.
*
* @param string $command
* The command to run.
* @param string $pipeInput
* The pipe input.
*/
protected function terminusPipeInput(string $command, string $pipeInput)
{
$command = sprintf('%s --yes', $command);
[$output, $status] = static::callTerminus($command, $pipeInput);
$this->assertEquals(0, $status, $output);
return $output;
}
/**
* Run a terminus command redirecting stderr to stdout.
*
* @param string $command
* The command to run.
*/
protected function terminusWithStderrRedirected(string $command): ?string
{
return $this->terminus($command, ['2>&1']);
}
/**
* @param $command
*
* @return array|string|null
*/
protected function terminusJsonResponse($command)
{
$response = trim($this->terminus($command, ['--format=json']));
try {
return json_decode(
$response,
true,
512,
JSON_THROW_ON_ERROR
);
} catch (\JsonException $jsonException) {
return $response;
}
}
/**
* Asserts the callback result is equal to the expected value in multiple attempts.
*
* @param callable $callable
* The callable to return an actual value.
* @param mixed $expected
* The expected value.
* @param int $attempts
* The maximum number of attempts.
* @param int $intervalSeconds
* The interval between attempts in seconds.
*/
protected function assertCallbackResultEqualsInAttempts(
callable $callable,
$expected,
int $attempts = 24,
int $intervalSeconds = 10
): void {
do {
$actual = $callable();
if ($actual === $expected) {
break;
}
sleep($intervalSeconds);
$attempts--;
} while ($attempts > 0);
$this->assertEquals($expected, $actual);
}
/**
* Asserts terminus command execution succeeds in multiple attempts.
*
* @param string $command
* The command to execute.
* @param int $attempts
* The maximum number of attempts.
*/
protected function assertTerminusCommandSucceedsInAttempts(string $command, int $attempts = 3): void
{
$this->assertCallbackResultEqualsInAttempts(
fn() => static::callTerminus(sprintf('%s --yes', $command))[1],
0,
$attempts
);
}
/**
* Returns the site name.
*
* @return string
*/
public static function getSiteName(): string
{
return getenv('TERMINUS_SITE');
}
/**
* Returns the organization ID.
*
* @return string
*/
protected static function getOrg(): string
{
return getenv('TERMINUS_ORG');
}
/**
* Returns the plugin dir.
*
* @return string
*/
protected function getPluginsDir(): string
{
return getenv('TERMINUS_PLUGINS_DIR');
}
/**
* Returns the Terminus 2 plugin dir.
*
* @return string
*/
protected function getPlugins2Dir(): string
{
return getenv('TERMINUS_PLUGINS2_DIR');
}
/**
* Returns the Terminus base dir.
*
* @return string
*/
protected function getBaseDir(): string
{
return getenv('TERMINUS_BASE_DIR');
}
/**
* Returns the dependencies base dir.
*
* @return string
*/
protected function getDependenciesBaseDir(): string
{
return getenv('TERMINUS_DEPENDENCIES_BASE_DIR');
}
/**
* Returns TRUE if the test site is based on Drupal framework.
*
* @return bool
*
* @throws \Exception
*/
protected function isSiteFrameworkDrupal(): bool
{
switch ($this->getSiteFramework()) {
case 'drupal':
case 'drupal8':
return true;
default:
return false;
}
}
/**
* Returns the test site framework.
*
* @return string
*
* @throws \Exception
*/
protected function getSiteFramework(): string
{
$site_info = $this->getSiteInfo();
if (!isset($site_info['framework'])) {
throw new \Exception(sprintf('Failed to get framework for test site %s', $this->getSiteName()));
}
return $site_info['framework'];
}
/**
* Returns the test site id.
*
* @return string
*
* @throws \Exception
*/
protected function getSiteId(): string
{
$site_info = $this->getSiteInfo();
if (!isset($site_info['id'])) {
throw new \Exception(sprintf('Failed to get id for test site %s', $this->getSiteName()));
}
return $site_info['id'];
}
/**
* Returns the test user email address.
*
* @return string
*/
protected function getUserEmail(): string
{
return getenv('TERMINUS_USER');
}
/**
* Returns TRUE for a CI environment.
*
* @return bool
*/
protected function isCiEnv(): bool
{
return (bool) getenv('CI');
}
/**
* Returns the site info.
*
* @return array
*/
protected function getSiteInfo(): array
{
static $site_info;
if (is_null($site_info)) {
$site_info = $this->terminusJsonResponse(sprintf('site:info %s', $this->getSiteName()));
}
return $site_info;
}
/**
* Returns the testing runtime multidev name.
*
* @return string
*/
protected static function getMdEnv(): string
{
return getenv('TERMINUS_TESTING_RUNTIME_ENV');
}
/**
* Sets the testing runtime multidev name.
*/
public static function setMdEnv(string $name): void
{
putenv(sprintf('TERMINUS_TESTING_RUNTIME_ENV=%s', $name));
}
/**
* Returns site and environment in a form of "<site>.<env>" string which used in most commands.
*
* @return string
*/
protected function getSiteEnv(): string
{
return sprintf('%s.%s', $this->getSiteName(), $this->getMdEnv());
}
/**
* Returns the absolute path to the local test site directory.
*
* @return string
*/
protected function getLocalTestSiteDir(): string
{
return implode(DIRECTORY_SEPARATOR, [$_SERVER['HOME'], 'pantheon-local-copies', self::getSiteName()]);
}
/**
* Generates and uploads a test file to the site.
*
* @param string $siteEnv
* @param string $filePath
*
* @return string
* The name of the test file.
*/
protected function uploadTestFileToSite(string $siteEnv, string $filePath): string
{
if (!extension_loaded('ssh2')) {
$this->markTestSkipped(
'PECL SSH2 extension for PHP is required.'
);
}
// Get SFTP connection information.
$siteInfo = $this->terminusJsonResponse(
sprintf('connection:info %s --fields=sftp_username,sftp_host', $siteEnv)
);
$this->assertNotEmpty($siteInfo);
$this->assertTrue(
isset($siteInfo['sftp_username'], $siteInfo['sftp_host']),
'SFTP connection info should contain "sftp_username" and "sftp_host" values.'
);
// Upload a test file to the server.
$session = ssh2_connect(
$siteInfo['sftp_host'],
2222
);
$this->assertTrue(
ssh2_auth_agent($session, $siteInfo['sftp_username']),
'Failed to authenticate over SSH using the ssh agent'
);
$sftp = ssh2_sftp($session);
$this->assertNotFalse($sftp);
$uniqueId = md5(mt_rand());
$fileName = sprintf('terminus-functional-test-file-%s.txt', $uniqueId);
$stream = fopen(
sprintf('ssh2.sftp://%d/%s/%s', intval($sftp), $filePath, $fileName),
'w'
);
$this->assertNotFalse($stream, 'Failed to open a test file for writing');
$this->assertNotFalse(
fwrite(
$stream,
sprintf('This is a test file (%s) to use in Terminus functional testing assertions.', $uniqueId)
),
'Failed to write a test file'
);
fclose($stream);
return $fileName;
}
/**
* Asserts the command exists.
*
* @param string $commandName
* The command name to assert.
*/
protected function assertCommandExists(string $commandName)
{
$commandList = $this->terminus('list');
$this->assertStringContainsString($commandName, $commandList);
}
/**
* Asserts the command does not exist.
*
* @param string $commandName
* The command name to assert.
*/
protected function assertCommandDoesNotExist(string $commandName)
{
$commandList = $this->terminus('list');
$this->assertStringNotContainsString($commandName, $commandList);
}
}