12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\AutoReview;
- use PhpCsFixer\Console\Application;
- use PhpCsFixer\Tests\TestCase;
- /**
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @coversNothing
- * @group auto-review
- * @group covers-nothing
- */
- final class ComposerTest extends TestCase
- {
- public function testBranchAlias()
- {
- $composerJson = json_decode(file_get_contents(__DIR__.'/../../composer.json'), true);
- if (!isset($composerJson['extra']['branch-alias'])) {
- $this->addToAssertionCount(1); // composer.json doesn't contain branch alias, all good!
- return;
- }
- static::assertSame(
- ['dev-master' => $this->convertAppVersionToAliasedVersion(Application::VERSION)],
- $composerJson['extra']['branch-alias']
- );
- }
- /**
- * @param string $version
- *
- * @return string
- */
- private function convertAppVersionToAliasedVersion($version)
- {
- $parts = explode('.', $version, 3);
- return sprintf('%d.%d-dev', $parts[0], $parts[1]);
- }
- }
|