forked from acquia/blt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RoboFile.php
660 lines (607 loc) · 19 KB
/
RoboFile.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
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
<?php
use Acquia\Blt\Robo\Exceptions\BltException;
use Github\Api\Issue;
use Robo\Contract\VerbosityThresholdInterface;
use Github\Client;
use Robo\Tasks;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerAwareTrait;
/**
* This is project's console commands configuration for Robo task runner.
*
* @see http://robo.li/
*/
class RoboFile extends Tasks implements LoggerAwareInterface {
use LoggerAwareTrait;
protected $bltRoot;
protected $bin;
protected $drupalPhpcsStandard;
protected $phpcsPaths;
const BLT_DEV_BRANCH = "9.x";
const BLT_PROJECT_DIR = "../blted8";
/**
* This hook will fire for all commands in this command file.
*
* @hook init
*/
public function initialize() {
$this->bltRoot = __DIR__;
$this->bin = $this->bltRoot . '/vendor/bin';
}
/**
* @param array $options
*/
protected function createTestApp($options = [
'project-type' => 'standalone',
'project-dir' => self::BLT_PROJECT_DIR,
'vm' => TRUE,
]) {
switch ($options['project-type']) {
case 'standalone':
$this->createFromBltProject($options);
break;
case 'symlink':
$this->createFromSymlink($options);
break;
}
}
/**
* Create a new project via symlink from current checkout of BLT.
*
* Local BLT will be symlinked to blted8/vendor/acquia/blt.
*
* @option project-dir The directory in which the test project will be
* created.
* @option vm Whether a VM will be booted.
*/
public function createFromSymlink($options = [
'project-dir' => self::BLT_PROJECT_DIR,
'vm' => TRUE,
]) {
$test_project_dir = $this->bltRoot . "/" . $options['project-dir'];
$bin = $test_project_dir . "/vendor/bin";
$this->prepareTestProjectDir($test_project_dir);
$this->taskFilesystemStack()
->mkdir($test_project_dir)
->mirror($this->bltRoot . "/blted8", $test_project_dir)
->run();
$this->taskExecStack()
->dir($test_project_dir)
->exec("git init")
->exec("git add -A")
->exec("git commit -m 'Initial commit.'")
->run();
if (!$options['vm']) {
$this->taskReplaceInFile($test_project_dir . "/composer.json")
->from("../blt")
->to($this->bltRoot)
->run();
}
$task = $this->taskExecStack()
->dir($test_project_dir)
// BLT is the only dependency at this point. Install it.
->exec("composer install")
// I have no idea why this is necessary, but testing on OSX does not pass
// without it.
->exec("rm -rf $test_project_dir/vendor")
->exec("composer install");
if ($options['vm']) {
$task->exec("$bin/blt vm --no-boot --no-interaction --yes -v")
->exec("$bin/yaml-cli update:value box/config.yml vagrant_synced_folders.1.local_path '../blt'")
->exec("$bin/yaml-cli update:value box/config.yml vagrant_synced_folders.1.destination '/var/www/blt'")
->exec("$bin/yaml-cli update:value box/config.yml vagrant_synced_folders.1.type nfs");
}
$task->run();
}
/**
* Create a new project using `composer create-project acquia/blt-project`.
*
* @option base-branch The blt-project (NOT blt) branch to test.
* @option project-dir The directory in which the test project will be
* created.
* @option vm Whether a VM will be booted.
*/
public function createFromBltProject($options = [
'base-branch' => self::BLT_DEV_BRANCH,
'project-dir' => self::BLT_PROJECT_DIR,
]) {
$test_project_dir = $this->bltRoot . "/" . $options['project-dir'];
$this->prepareTestProjectDir($test_project_dir);
$this->yell("Creating project from acquia/blt-project:{$options['base-branch']}-dev.");
$this->taskExecStack()
->dir($this->bltRoot . "/..")
->exec("COMPOSER_PROCESS_TIMEOUT=2000 composer create-project acquia/blt-project:{$options['base-branch']}-dev blted8 --no-interaction")
->run();
}
/**
* Create a new project using `composer require acquia/blt`.
*
* @option base-branch The blt-project (NOT blt) branch to test.
* @option project-dir The directory in which the test project will be
* created.
* @option vm Whether a VM will be booted.
*/
public function createFromScratch($options = [
'base-branch' => self::BLT_DEV_BRANCH,
'project-dir' => self::BLT_PROJECT_DIR,
'vm' => TRUE,
]) {
$test_project_dir = $this->bltRoot . "/" . $options['project-dir'];
$bin = $test_project_dir . "/vendor/bin";
$this->prepareTestProjectDir($test_project_dir);
$this->taskFilesystemStack()->mkdir("$test_project_dir")->run();
$this->taskExecStack()
->dir($test_project_dir)
->exec("composer init --name=acme/project --stability=dev --no-interaction")
->exec("composer config prefer-stable true")
->exec("git init")
->exec("git add -A")
->exec("git commit -m 'Initial commit.'")
->run();
$task = $this->taskExecStack()
->dir($test_project_dir)
// BLT is the only dependency at this point. Install it.
->exec("composer require acquia/blt {$options['base-branch']}-dev");
if ($options['vm']) {
$task->exec("$bin/blt vm --no-boot --no-interaction --yes -v");
}
$task->run();
}
/**
* Executes pre-release tests against blt-project self::BLT_DEV_BRANCH.
*/
public function releaseTest() {
$task = $this->taskExecStack()
->printMetadata(TRUE)
->exec("{$this->bltRoot}/vendor/bin/robo sniff-code --load-from {$this->bltRoot}");
$phpunit_group = getenv('PHPUNIT_GROUP');
$phpunit_exclude_group = getenv('PHPUNIT_EXCLUDE_GROUP');
$phpunit_command_string = "{$this->bltRoot}/vendor/bin/phpunit";
if ($phpunit_group) {
$phpunit_command_string .= " --group=" . $phpunit_group;
}
if ($phpunit_exclude_group) {
$phpunit_command_string .= " --exclude-group=" . $phpunit_exclude_group;
}
$task->exec($phpunit_command_string);
$result = $task->run();
return $result;
}
/**
* Generates release notes and cuts a new tag on GitHub.
*
* @command release
*
* @param string $tag
* The tag name. E.g, 8.6.10.
* @param string $github_token
* A github access token.
* @option prev-tag The previous tag on the current branch from which to
* determine diff.
*
* @return int
* The CLI status code.
*/
public function bltRelease(
$tag,
$github_token,
$options = [
'prev-tag' => NULL,
]
) {
$this->stopOnFail();
$current_branch = $this->getCurrentBranch();
$this->checkDirty();
$this->printReleasePreamble($tag, $current_branch);
$this->assertBranchMatchesUpstream($current_branch);
$this->resetLocalBranch($current_branch);
$this->updateBltVersionConstant($tag);
$prev_tag = $this->getPrevTag($options, $current_branch);
$release_notes = $this->generateReleaseNotes($prev_tag, $tag, $github_token);
$this->updateChangelog($tag, $release_notes);
// Push the change upstream.
$this->_exec("git add CHANGELOG.md $this->bltRoot/src/Robo/Blt.php");
$this->_exec("git commit -m 'Updating CHANGELOG.md and setting version for $tag.' -n");
$this->_exec("git push origin $current_branch");
$this->createGitHubRelease($current_branch, $tag, $release_notes, $github_token);
return 0;
}
/**
* Update CHANGELOG.md with notes for new release.
*
* @param string $tag
* The tag name. E.g, 8.6.10.
* @param string $github_token
* A github access token.
* @option prev-tag The previous tag on the current branch from which to
* determine diff.
*
* @return int
* The CLI status code.
*/
public function releaseNotes(
$tag,
$github_token,
$options = [
'prev-tag' => NULL,
]
) {
$current_branch = $this->getCurrentBranch();
$prev_tag = $this->getPrevTag($options, $current_branch);
// @todo Check git version.
$changes = $this->generateReleaseNotes($tag, $prev_tag, $github_token);
$this->updateChangelog($tag, $changes);
}
/**
* @param $prev_tag
* @param $tag
* @param $github_token
*
* @return string
*/
protected function generateReleaseNotes($prev_tag, $tag, $github_token) {
$log = $this->getChangesOnBranchSinceTag($prev_tag);
$changes = $this->sortChanges($log, $github_token);
$text = '';
$text .= "[Full Changelog](https://github.com/acquia/blt/compare/$prev_tag...$tag)\n\n";
if (!empty($changes['enhancements'])) {
$text .= "**Implemented enhancements**\n\n";
$text .= $this->processReleaseNotesSection($changes['enhancements']);
}
if (!empty($changes['bugs'])) {
$text .= "\n**Fixed bugs**\n\n";
$text .= $this->processReleaseNotesSection($changes['bugs']);
}
if (!empty($changes['misc'])) {
$text .= "\n**Miscellaneous**\n\n";
$text .= $this->processReleaseNotesSection($changes['misc']);
}
return $text;
}
/**
* Fixes BLT internal code via PHPCBF.
*
* @command fix-code
*/
public function fixCode() {
$command = "'{$this->bin}/phpcbf'";
$task = $this->taskExecStack()
->dir($this->bltRoot)
->exec($command);
$result = $task->run();
return $result->getExitCode();
}
/**
* Sniffs BLT internal code via PHPCS.
*
* @command sniff-code
*/
public function sniffCode() {
$task = $this->taskExecStack()
->dir($this->bltRoot)
->exec("{$this->bin}/phpcs")
->exec("composer validate");
$result = $task->run();
return $result->getExitCode();
}
/**
* Updates the version constant in Blt.php.
*
* @param string $tag
* The new version.
*/
protected function updateBltVersionConstant($tag) {
// Change version constant in Blt.php.
$this->taskReplaceInFile($this->bltRoot . '/src/Robo/Blt.php')
// Test group:
// @codingStandardsIgnoreStart
// const VERSION = '9.x-dev';
// const VERSION = '9.0.x-dev';
// const VERSION = '9.0.0-alpha1';
// const VERSION = '9.0.0-beta2';
// const VERSION = '9.0.0';
// @codingStandardsIgnoreEnd
->regex('/(const VERSION = \')[0-9]{1,2}\.[0-9x]{1,2}(\.[0-9x](-(alpha|beta|rc|dev)[0-9]{0,2})?|-dev?)(\';)/')
->to('${1}' . $tag . '${5}')
->run();
}
/**
* @param $prev_tag
*
* @return array
*/
protected function getChangesOnBranchSinceTag($prev_tag) {
$output = $this->taskExecStack()
->exec("git rev-list $prev_tag..HEAD --pretty=oneline")
->interactive(FALSE)
->silent(TRUE)
->setVerbosityThreshold(VerbosityThresholdInterface::VERBOSITY_VERBOSE)
->run()
->getMessage();
$lines = array_filter(explode("\n", $output));
$changes = [];
foreach ($lines as $line) {
$num_matches = preg_match("/([a-f0-9]{40}) (.+)/", $line, $matches);
$commit_hash = $matches[1];
$changes[$commit_hash] = $matches[2];
}
return $changes;
}
/**
* @param $current_branch
*
* @return mixed
*/
protected function getLastTagOnBranch($current_branch) {
$output = $this->taskExecStack()
->exec("git tag --merged $current_branch")
->interactive(FALSE)
->silent(TRUE)
->setVerbosityThreshold(VerbosityThresholdInterface::VERBOSITY_VERBOSE)
->run()
->getMessage();
$lines = explode("\n", $output);
$tags_on_branch = array_reverse($lines);
$prev_tag = reset($tags_on_branch);
return $prev_tag;
}
/**
* @return string
*/
protected function getCurrentBranch() {
$current_branch = $this->taskExecStack()
->exec('git rev-parse --abbrev-ref HEAD')
->interactive(FALSE)
->silent(TRUE)
->run()
->getMessage();
return $current_branch;
}
/**
* @param $tag
* @param $changes
*/
protected function updateChangelog($tag, $changes) {
$this->taskChangelog('CHANGELOG.md')
->setHeader("#### $tag (" . date("Y-m-d") . ")\n\n")
->anchor("# Change Log")
->setBody($changes)
->setVerbosityThreshold(VerbosityThresholdInterface::VERBOSITY_VERBOSE)
->run();
}
/**
* Sorts an array of log changes based on GitHub issue labels.
*
* This method will iterate over an array of log changes, use a regular
* expression to identify GitHub issue numbers, and use the GitHub API to
* fetch the labels for those issues.
*
* @param array $log_entries
* An array of log changes. Typically each row would be a commit message.
*
* @return array
* A multidimensional array grouped by the labels enchancement and bug.
*/
protected function sortChanges($log_entries, $github_token) {
$client = new Client();
$client->authenticate($github_token, NULL, Client::AUTH_URL_TOKEN);
/** @var \Github\Api\Issue $issue_api */
$issue_api = $client->api('issue');
$changes = [
'enhancements' => [],
'bugs' => [],
'misc' => [],
];
foreach ($log_entries as $log_entry) {
$changes = $this->sortLogEntry($log_entry, $issue_api, $changes);
}
return $changes;
}
/**
* Sorts log entry according to GitHub label.
*
* @param $log_entry
* @param $issue_api
* @param $changes
*
* @return mixed
*/
protected function sortLogEntry($log_entry, $issue_api, $changes) {
$sorted = FALSE;
$github_issue_number = $this->parseGitHubIssueNumber($log_entry);
if ($github_issue_number) {
$labels = $this->getGitHubIssueLabels($issue_api, $github_issue_number);
if ($labels) {
foreach ($labels as $label) {
if ($label['name'] == 'enhancement') {
$changes['enhancements'][] = $log_entry;
$sorted = TRUE;
break;
}
elseif ($label['name'] == 'bug') {
$changes['bugs'][] = $log_entry;
$sorted = TRUE;
break;
}
}
}
}
if (!$sorted) {
$changes['misc'][] = $log_entry;
}
return $changes;
}
/**
* @param $row
*
* @return null
*/
protected function parseGitHubIssueNumber($row) {
$found_match = preg_match("/(((fix(es|ed)?)|(close(s|d)?)|(resolve(s|d)?)) )?#([[:digit:]]+)|#[[:digit:]]+/",
$row, $matches);
if ($found_match) {
$issue_num = $matches[9];
return $issue_num;
}
return NULL;
}
/**
* @param \Github\Api\Issue $issue_api
* @param $github_issue_number
*
* @return array|bool
*/
protected function getGitHubIssueLabels(Issue $issue_api, $github_issue_number) {
$issue = $issue_api->show('acquia', 'blt', $github_issue_number);
$labels = isset($issue['labels']) ? $issue['labels'] : [];
return $labels;
}
/**
* Processes an array of change log changes.
*
* Walks the array and appends prefix and suffix for markdown formatting.
*
* @param string[] $rows
* An array containing a list of changes.
*
* @return string
* A string containing the formatted and imploded contents of $rows.
*
*/
protected function processReleaseNotesSection($rows) {
$text = implode(
"\n",
array_map(
function ($i) {
return "- $i";
},
$rows
)
) . "\n";
return $text;
}
/**
* Checks to see if current git branch has uncommitted changes.
*
* @throws \Exception
* Thrown if deploy.git.failOnDirty is TRUE and there are uncommitted
* changes.
*/
protected function checkDirty() {
$result = $this->taskExec('git status --porcelain')
->printMetadata(FALSE)
->printOutput(FALSE)
->interactive(FALSE)
->run();
if (!$result->wasSuccessful()) {
throw new BltException("Unable to determine if local git repository is dirty.");
}
$dirty = (bool) $result->getMessage();
if ($dirty) {
throw new BltException("There are uncommitted changes, commit or stash these changes before deploying.");
}
}
/**
* @param $tag
* @param $current_branch
*/
protected function printReleasePreamble($tag, $current_branch) {
$this->logger->warning("Please run all release tests before executing this command!");
$this->say("To run release tests, execute <comment>./vendor/bin/robo test</comment>");
$this->output()->writeln('');
$this->say("Continuing will do the following:");
$this->say("- <comment>Destroy any uncommitted work on the current branch.</comment>");
$this->say("- Hard reset to origin/$current_branch");
$this->say("- Update and <comment>commit</comment> CHANGELOG.md");
$this->say("- <comment>Push</comment> $current_branch to origin");
$this->say("- Create a $tag release in GitHub with release notes");
}
/**
* @param $options
* @param $current_branch
*
* @return mixed
*/
protected function getPrevTag($options, $current_branch) {
if (!empty($options['prev-tag'])) {
return $options['prev-tag'];
}
else {
return $this->getLastTagOnBranch($current_branch);
}
}
/**
* @param $commitish
* @param $tag
* @param $description
* @param $github_token
*/
protected function createGitHubRelease(
$commitish,
$tag,
$description,
$github_token
) {
$result = $this->taskGitHubRelease($tag)
->uri('acquia/blt')
->comittish($commitish)
->name($tag)
->description($description)
->draft(TRUE)
->accessToken($github_token)
->setVerbosityThreshold(VerbosityThresholdInterface::VERBOSITY_VERBOSE)
->run();
$data = $result->getData();
$response = $data['response'];
$this->taskOpenBrowser($response->html_url)->run();
}
/**
* @param $current_branch
*/
protected function resetLocalBranch($current_branch) {
// Clean up all staged and unstaged files on current branch.
$this->taskGitStack()
->exec('clean -fd .')
->exec('remote update')
->exec("reset --hard origin/$current_branch")
->run();
}
/**
* @param $test_project_dir
*
* @throws \Acquia\Blt\Robo\Exceptions\BltException
*/
protected function prepareTestProjectDir($test_project_dir) {
if (file_exists($test_project_dir . "/.vagrant")) {
$this->taskExecStack()
->exec("vagrant destroy")
->dir($test_project_dir)
->run();
}
if (file_exists($test_project_dir)) {
$this->logger->warning("This will destroy the $test_project_dir directory!");
$continue = $this->confirm("Continue?");
if (!$continue) {
$this->say("Please run <comment>sudo rm -rf $test_project_dir</comment>");
throw new BltException("$test_project_dir already exists.");
}
}
$this->taskDeleteDir($test_project_dir)->run();
}
/**
* @param $current_branch
*
* @throws \Acquia\Blt\Robo\Exceptions\BltException
*/
protected function assertBranchMatchesUpstream($current_branch) {
$branch_matches_upstream = $this->_exec("git diff $current_branch origin/$current_branch --quiet")->wasSuccessful();
if (!$branch_matches_upstream) {
$this->logger->warning("$current_branch does not match origin/$current_branch.");
$this->logger->warning("Continuing will cause you to lose all local changes!");
$continue = $this->confirm("Continue?");
if (!$continue) {
throw new BltException("Release terminated by user.");
}
}
}
}