1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234 |
- <?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\Console;
- use PhpCsFixer\Cache\NullCacheManager;
- use PhpCsFixer\Config;
- use PhpCsFixer\ConfigurationException\InvalidConfigurationException;
- use PhpCsFixer\Console\Command\FixCommand;
- use PhpCsFixer\Console\ConfigurationResolver;
- use PhpCsFixer\Finder;
- use PhpCsFixer\Linter\LinterInterface;
- use PhpCsFixer\Tests\Fixtures\DeprecatedFixer;
- use PhpCsFixer\Tests\TestCase;
- use PhpCsFixer\ToolInfo;
- use Symfony\Component\Console\Output\OutputInterface;
- /**
- * @author Katsuhiro Ogawa <ko.fivestar@gmail.com>
- * @author Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\Console\ConfigurationResolver
- */
- final class ConfigurationResolverTest extends TestCase
- {
- public function testSetOptionWithUndefinedOption()
- {
- $this->expectException(InvalidConfigurationException::class);
- $this->expectExceptionMessageRegExp('/^Unknown option name: "foo"\.$/');
- $this->createConfigurationResolver(['foo' => 'bar']);
- }
- public function testResolveProgressWithPositiveConfigAndPositiveOption()
- {
- $config = new Config();
- $config->setHideProgress(true);
- $resolver = $this->createConfigurationResolver([
- 'format' => 'txt',
- 'verbosity' => OutputInterface::VERBOSITY_VERBOSE,
- ], $config);
- static::assertSame('none', $resolver->getProgress());
- }
- public function testResolveProgressWithPositiveConfigAndNegativeOption()
- {
- $config = new Config();
- $config->setHideProgress(true);
- $resolver = $this->createConfigurationResolver([
- 'format' => 'txt',
- 'verbosity' => OutputInterface::VERBOSITY_NORMAL,
- ], $config);
- static::assertSame('none', $resolver->getProgress());
- }
- public function testResolveProgressWithNegativeConfigAndPositiveOption()
- {
- $config = new Config();
- $config->setHideProgress(false);
- $resolver = $this->createConfigurationResolver([
- 'format' => 'txt',
- 'verbosity' => OutputInterface::VERBOSITY_VERBOSE,
- ], $config);
- static::assertSame('run-in', $resolver->getProgress());
- }
- public function testResolveProgressWithNegativeConfigAndNegativeOption()
- {
- $config = new Config();
- $config->setHideProgress(false);
- $resolver = $this->createConfigurationResolver([
- 'format' => 'txt',
- 'verbosity' => OutputInterface::VERBOSITY_NORMAL,
- ], $config);
- static::assertSame('none', $resolver->getProgress());
- }
- /**
- * @param string $progressType
- *
- * @dataProvider provideProgressTypeCases
- */
- public function testResolveProgressWithPositiveConfigAndExplicitProgress($progressType)
- {
- $config = new Config();
- $config->setHideProgress(true);
- $resolver = $this->createConfigurationResolver([
- 'format' => 'txt',
- 'verbosity' => OutputInterface::VERBOSITY_VERBOSE,
- 'show-progress' => $progressType,
- ], $config);
- static::assertSame($progressType, $resolver->getProgress());
- }
- /**
- * @param string $progressType
- *
- * @dataProvider provideProgressTypeLegacyCases
- *
- * @group legacy
- * @expectedDeprecation Passing `estimating`, `estimating-max` or `run-in` is deprecated and will not be supported in 3.0, use `none` or `dots` instead.
- */
- public function testResolveProgressWithPositiveConfigAndExplicitProgressLegacy($progressType)
- {
- $this->testResolveProgressWithPositiveConfigAndExplicitProgress($progressType);
- }
- /**
- * @param string $progressType
- *
- * @dataProvider provideProgressTypeCases
- */
- public function testResolveProgressWithNegativeConfigAndExplicitProgress($progressType)
- {
- $config = new Config();
- $config->setHideProgress(false);
- $resolver = $this->createConfigurationResolver([
- 'format' => 'txt',
- 'verbosity' => OutputInterface::VERBOSITY_VERBOSE,
- 'show-progress' => $progressType,
- ], $config);
- static::assertSame($progressType, $resolver->getProgress());
- }
- /**
- * @param string $progressType
- *
- * @dataProvider provideProgressTypeLegacyCases
- *
- * @group legacy
- * @expectedDeprecation Passing `estimating`, `estimating-max` or `run-in` is deprecated and will not be supported in 3.0, use `none` or `dots` instead.
- */
- public function testResolveProgressWithNegativeConfigAndExplicitProgressLegacy($progressType)
- {
- $this->testResolveProgressWithNegativeConfigAndExplicitProgress($progressType);
- }
- public function provideProgressTypeLegacyCases()
- {
- return [
- ['run-in'],
- ['estimating'],
- ['estimating-max'],
- ];
- }
- public function provideProgressTypeCases()
- {
- return [
- ['none'],
- ['dots'],
- ];
- }
- public function testResolveProgressWithInvalidExplicitProgress()
- {
- $resolver = $this->createConfigurationResolver([
- 'format' => 'txt',
- 'verbosity' => OutputInterface::VERBOSITY_VERBOSE,
- 'show-progress' => 'foo',
- ]);
- $this->expectException(InvalidConfigurationException::class);
- $this->expectExceptionMessage('The progress type "foo" is not defined, supported are "none", "run-in", "estimating", "estimating-max", "dots".');
- $resolver->getProgress();
- }
- public function testResolveConfigFileDefault()
- {
- $resolver = $this->createConfigurationResolver([]);
- static::assertNull($resolver->getConfigFile());
- static::assertInstanceOf(\PhpCsFixer\ConfigInterface::class, $resolver->getConfig());
- }
- public function testResolveConfigFileByPathOfFile()
- {
- $dir = __DIR__.'/../Fixtures/ConfigurationResolverConfigFile/case_1';
- $resolver = $this->createConfigurationResolver(['path' => [$dir.\DIRECTORY_SEPARATOR.'foo.php']]);
- static::assertSame($dir.\DIRECTORY_SEPARATOR.'.php_cs.dist', $resolver->getConfigFile());
- static::assertInstanceOf('Test1Config', $resolver->getConfig());
- }
- public function testResolveConfigFileSpecified()
- {
- $file = __DIR__.'/../Fixtures/ConfigurationResolverConfigFile/case_4/my.php_cs';
- $resolver = $this->createConfigurationResolver(['config' => $file]);
- static::assertSame($file, $resolver->getConfigFile());
- static::assertInstanceOf('Test4Config', $resolver->getConfig());
- }
- /**
- * @param string $expectedFile
- * @param string $expectedClass
- * @param string $path
- * @param null|string $cwdPath
- *
- * @dataProvider provideResolveConfigFileDefaultCases
- */
- public function testResolveConfigFileChooseFile($expectedFile, $expectedClass, $path, $cwdPath = null)
- {
- $resolver = $this->createConfigurationResolver(
- ['path' => [$path]],
- null,
- $cwdPath
- );
- static::assertSame($expectedFile, $resolver->getConfigFile());
- static::assertInstanceOf($expectedClass, $resolver->getConfig());
- }
- public function provideResolveConfigFileDefaultCases()
- {
- $dirBase = $this->getFixtureDir();
- return [
- [
- $dirBase.'case_1'.\DIRECTORY_SEPARATOR.'.php_cs.dist',
- 'Test1Config',
- $dirBase.'case_1',
- ],
- [
- $dirBase.'case_2'.\DIRECTORY_SEPARATOR.'.php_cs',
- 'Test2Config',
- $dirBase.'case_2',
- ],
- [
- $dirBase.'case_3'.\DIRECTORY_SEPARATOR.'.php_cs',
- 'Test3Config',
- $dirBase.'case_3',
- ],
- [
- $dirBase.'case_6'.\DIRECTORY_SEPARATOR.'.php_cs.dist',
- 'Test6Config',
- $dirBase.'case_6'.\DIRECTORY_SEPARATOR.'subdir',
- $dirBase.'case_6',
- ],
- [
- $dirBase.'case_6'.\DIRECTORY_SEPARATOR.'.php_cs.dist',
- 'Test6Config',
- $dirBase.'case_6'.\DIRECTORY_SEPARATOR.'subdir/empty_file.php',
- $dirBase.'case_6',
- ],
- ];
- }
- public function testResolveConfigFileChooseFileWithInvalidFile()
- {
- $this->expectException(InvalidConfigurationException::class);
- $this->expectExceptionMessageRegExp(
- '#^The config file: ".+[\/\\\]Fixtures[\/\\\]ConfigurationResolverConfigFile[\/\\\]case_5[\/\\\]\.php_cs\.dist" does not return a "PhpCsFixer\\\ConfigInterface" instance\. Got: "string"\.$#'
- );
- $dirBase = $this->getFixtureDir();
- $resolver = $this->createConfigurationResolver(['path' => [$dirBase.'case_5']]);
- $resolver->getConfig();
- }
- public function testResolveConfigFileChooseFileWithInvalidFormat()
- {
- $this->expectException(InvalidConfigurationException::class);
- $this->expectExceptionMessageRegExp('/^The format "xls" is not defined, supported are "checkstyle", "gitlab", "json", "junit", "txt", "xml"\.$/');
- $dirBase = $this->getFixtureDir();
- $resolver = $this->createConfigurationResolver(['path' => [$dirBase.'case_7']]);
- $resolver->getReporter();
- }
- public function testResolveConfigFileChooseFileWithPathArrayWithoutConfig()
- {
- $this->expectException(InvalidConfigurationException::class);
- $this->expectExceptionMessageRegExp('/^For multiple paths config parameter is required\.$/');
- $dirBase = $this->getFixtureDir();
- $resolver = $this->createConfigurationResolver(['path' => [$dirBase.'case_1/.php_cs.dist', $dirBase.'case_1/foo.php']]);
- $resolver->getConfig();
- }
- public function testResolveConfigFileChooseFileWithPathArrayAndConfig()
- {
- $dirBase = $this->getFixtureDir();
- $resolver = $this->createConfigurationResolver([
- 'config' => $dirBase.'case_1/.php_cs.dist',
- 'path' => [$dirBase.'case_1/.php_cs.dist', $dirBase.'case_1/foo.php'],
- ]);
- static::assertInstanceOf(\PhpCsFixer\Console\ConfigurationResolver::class, $resolver);
- }
- public function testResolvePathRelativeA()
- {
- $resolver = $this->createConfigurationResolver(
- ['path' => ['Command']],
- null,
- __DIR__
- );
- static::assertSame([__DIR__.\DIRECTORY_SEPARATOR.'Command'], $resolver->getPath());
- }
- public function testResolvePathRelativeB()
- {
- $resolver = $this->createConfigurationResolver(
- ['path' => [basename(__DIR__)]],
- null,
- \dirname(__DIR__)
- );
- static::assertSame([__DIR__], $resolver->getPath());
- }
- public function testResolvePathWithFileThatIsExcludedDirectlyOverridePathMode()
- {
- $config = new Config();
- $config->getFinder()
- ->in(__DIR__)
- ->notPath(basename(__FILE__))
- ;
- $resolver = $this->createConfigurationResolver(
- ['path' => [__FILE__]],
- $config
- );
- static::assertCount(1, $resolver->getFinder());
- }
- public function testResolvePathWithFileThatIsExcludedDirectlyIntersectionPathMode()
- {
- $config = new Config();
- $config->getFinder()
- ->in(__DIR__)
- ->notPath(basename(__FILE__))
- ;
- $resolver = $this->createConfigurationResolver([
- 'path' => [__FILE__],
- 'path-mode' => 'intersection',
- ], $config);
- static::assertCount(0, $resolver->getFinder());
- }
- public function testResolvePathWithFileThatIsExcludedByDirOverridePathMode()
- {
- $dir = \dirname(__DIR__);
- $config = new Config();
- $config->getFinder()
- ->in($dir)
- ->exclude(basename(__DIR__))
- ;
- $resolver = $this->createConfigurationResolver(
- ['path' => [__FILE__]],
- $config
- );
- static::assertCount(1, $resolver->getFinder());
- }
- public function testResolvePathWithFileThatIsExcludedByDirIntersectionPathMode()
- {
- $dir = \dirname(__DIR__);
- $config = new Config();
- $config->getFinder()
- ->in($dir)
- ->exclude(basename(__DIR__))
- ;
- $resolver = $this->createConfigurationResolver([
- 'path-mode' => 'intersection',
- 'path' => [__FILE__],
- ], $config);
- static::assertCount(0, $resolver->getFinder());
- }
- public function testResolvePathWithFileThatIsNotExcluded()
- {
- $dir = __DIR__;
- $config = new Config();
- $config->getFinder()
- ->in($dir)
- ->notPath('foo-'.basename(__FILE__))
- ;
- $resolver = $this->createConfigurationResolver(
- ['path' => [__FILE__]],
- $config
- );
- static::assertCount(1, $resolver->getFinder());
- }
- /**
- * @param array|\Exception $expected
- * @param null|Finder $configFinder
- * @param string $pathMode
- * @param null|string $configOption
- *
- * @dataProvider provideResolveIntersectionOfPathsCases
- */
- public function testResolveIntersectionOfPaths($expected, $configFinder, array $path, $pathMode, $configOption = null)
- {
- if ($expected instanceof \Exception) {
- $this->expectException(\get_class($expected));
- }
- if (null !== $configFinder) {
- $config = new Config();
- $config->setFinder($configFinder);
- } else {
- $config = null;
- }
- $resolver = $this->createConfigurationResolver([
- 'config' => $configOption,
- 'path' => $path,
- 'path-mode' => $pathMode,
- ], $config);
- $intersectionItems = array_map(
- static function (\SplFileInfo $file) {
- return $file->getRealPath();
- },
- iterator_to_array($resolver->getFinder(), false)
- );
- sort($expected);
- sort($intersectionItems);
- static::assertSame($expected, $intersectionItems);
- }
- public function provideResolveIntersectionOfPathsCases()
- {
- $dir = __DIR__.'/../Fixtures/ConfigurationResolverPathsIntersection';
- $cb = static function (array $items) use ($dir) {
- return array_map(
- static function ($item) use ($dir) {
- return realpath($dir.'/'.$item);
- },
- $items
- );
- };
- return [
- 'no path at all' => [
- new \LogicException(),
- Finder::create(),
- [],
- 'override',
- ],
- 'configured only by finder' => [
- // don't override if the argument is empty
- $cb(['a1.php', 'a2.php', 'b/b1.php', 'b/b2.php', 'b_b/b_b1.php', 'c/c1.php', 'c/d/cd1.php', 'd/d1.php', 'd/d2.php', 'd/e/de1.php', 'd/f/df1.php']),
- Finder::create()
- ->in($dir),
- [],
- 'override',
- ],
- 'configured only by argument' => [
- $cb(['a1.php', 'a2.php', 'b/b1.php', 'b/b2.php', 'b_b/b_b1.php', 'c/c1.php', 'c/d/cd1.php', 'd/d1.php', 'd/d2.php', 'd/e/de1.php', 'd/f/df1.php']),
- Finder::create(),
- [$dir],
- 'override',
- ],
- 'configured by finder, intersected with empty argument' => [
- [],
- Finder::create()
- ->in($dir),
- [],
- 'intersection',
- ],
- 'configured by finder, intersected with dir' => [
- $cb(['c/c1.php', 'c/d/cd1.php']),
- Finder::create()
- ->in($dir),
- [$dir.'/c'],
- 'intersection',
- ],
- 'configured by finder, intersected with file' => [
- $cb(['c/c1.php']),
- Finder::create()
- ->in($dir),
- [$dir.'/c/c1.php'],
- 'intersection',
- ],
- 'finder points to one dir while argument to another, not connected' => [
- [],
- Finder::create()
- ->in($dir.'/b'),
- [$dir.'/c'],
- 'intersection',
- ],
- 'finder with excluded dir, intersected with excluded file' => [
- [],
- Finder::create()
- ->in($dir)
- ->exclude('c'),
- [$dir.'/c/d/cd1.php'],
- 'intersection',
- ],
- 'finder with excluded dir, intersected with dir containing excluded one' => [
- $cb(['c/c1.php']),
- Finder::create()
- ->in($dir)
- ->exclude('c/d'),
- [$dir.'/c'],
- 'intersection',
- ],
- 'finder with excluded file, intersected with dir containing excluded one' => [
- $cb(['c/d/cd1.php']),
- Finder::create()
- ->in($dir)
- ->notPath('c/c1.php'),
- [$dir.'/c'],
- 'intersection',
- ],
- 'configured by finder, intersected with non-existing path' => [
- new \LogicException(),
- Finder::create()
- ->in($dir),
- ['non_existing_dir'],
- 'intersection',
- ],
- 'configured by config file, overridden by multiple files' => [
- $cb(['d/d1.php', 'd/d2.php']),
- null,
- [$dir.'/d/d1.php', $dir.'/d/d2.php'],
- 'override',
- $dir.'/d/.php_cs',
- ],
- 'configured by config file, intersected with multiple files' => [
- $cb(['d/d1.php', 'd/d2.php']),
- null,
- [$dir.'/d/d1.php', $dir.'/d/d2.php'],
- 'intersection',
- $dir.'/d/.php_cs',
- ],
- 'configured by config file, overridden by non-existing dir' => [
- new \LogicException(),
- null,
- [$dir.'/d/fff'],
- 'override',
- $dir.'/d/.php_cs',
- ],
- 'configured by config file, intersected with non-existing dir' => [
- new \LogicException(),
- null,
- [$dir.'/d/fff'],
- 'intersection',
- $dir.'/d/.php_cs',
- ],
- 'configured by config file, overridden by non-existing file' => [
- new \LogicException(),
- null,
- [$dir.'/d/fff.php'],
- 'override',
- $dir.'/d/.php_cs',
- ],
- 'configured by config file, intersected with non-existing file' => [
- new \LogicException(),
- null,
- [$dir.'/d/fff.php'],
- 'intersection',
- $dir.'/d/.php_cs',
- ],
- 'configured by config file, overridden by multiple files and dirs' => [
- $cb(['d/d1.php', 'd/e/de1.php', 'd/f/df1.php']),
- null,
- [$dir.'/d/d1.php', $dir.'/d/e', $dir.'/d/f/'],
- 'override',
- $dir.'/d/.php_cs',
- ],
- 'configured by config file, intersected with multiple files and dirs' => [
- $cb(['d/d1.php', 'd/e/de1.php', 'd/f/df1.php']),
- null,
- [$dir.'/d/d1.php', $dir.'/d/e', $dir.'/d/f/'],
- 'intersection',
- $dir.'/d/.php_cs',
- ],
- ];
- }
- /**
- * @param bool $expectedResult
- *
- * @dataProvider provideConfigFinderIsOverriddenCases
- */
- public function testConfigFinderIsOverridden(array $options, $expectedResult)
- {
- $resolver = $this->createConfigurationResolver($options);
- static::assertSame($expectedResult, $resolver->configFinderIsOverridden());
- $resolver = $this->createConfigurationResolver($options);
- $resolver->getFinder();
- static::assertSame($expectedResult, $resolver->configFinderIsOverridden());
- }
- public function provideConfigFinderIsOverriddenCases()
- {
- $root = __DIR__.'/../..';
- return [
- [
- [
- 'config' => $root.'/.php_cs.dist',
- ],
- false,
- ],
- [
- [
- 'config' => $root.'/.php_cs.dist',
- 'path' => [$root.'/src'],
- ],
- true,
- ],
- [
- [],
- false,
- ],
- [
- [
- 'path' => [$root.'/src'],
- ],
- false,
- ],
- [
- [
- 'config' => $root.'/.php_cs.dist',
- 'path' => [$root.'/src'],
- 'path-mode' => ConfigurationResolver::PATH_MODE_INTERSECTION,
- ],
- false,
- ],
- // scenario when loaded config is not setting custom finder
- [
- [
- 'config' => $root.'/tests/Fixtures/ConfigurationResolverConfigFile/case_3/.php_cs.dist',
- 'path' => [$root.'/src'],
- ],
- false,
- ],
- // scenario when loaded config contains not fully defined finder
- [
- [
- 'config' => $root.'/tests/Fixtures/ConfigurationResolverConfigFile/case_9/.php_cs',
- 'path' => [$root.'/src'],
- ],
- false,
- ],
- ];
- }
- public function testResolveIsDryRunViaStdIn()
- {
- $resolver = $this->createConfigurationResolver([
- 'dry-run' => false,
- 'path' => ['-'],
- ]);
- static::assertTrue($resolver->isDryRun());
- }
- public function testResolveIsDryRunViaNegativeOption()
- {
- $resolver = $this->createConfigurationResolver(['dry-run' => false]);
- static::assertFalse($resolver->isDryRun());
- }
- public function testResolveIsDryRunViaPositiveOption()
- {
- $resolver = $this->createConfigurationResolver(['dry-run' => true]);
- static::assertTrue($resolver->isDryRun());
- }
- /**
- * @param bool $expected
- * @param bool $configValue
- * @param null|bool|string $passed
- *
- * @dataProvider provideResolveBooleanOptionCases
- */
- public function testResolveUsingCacheWithConfigOption($expected, $configValue, $passed)
- {
- $config = new Config();
- $config->setUsingCache($configValue);
- $resolver = $this->createConfigurationResolver(
- ['using-cache' => $passed],
- $config
- );
- static::assertSame($expected, $resolver->getUsingCache());
- }
- public function testResolveUsingCacheWithPositiveConfigAndNoOption()
- {
- $config = new Config();
- $config->setUsingCache(true);
- $resolver = $this->createConfigurationResolver(
- [],
- $config
- );
- static::assertTrue($resolver->getUsingCache());
- }
- public function testResolveUsingCacheWithNegativeConfigAndNoOption()
- {
- $config = new Config();
- $config->setUsingCache(false);
- $resolver = $this->createConfigurationResolver(
- [],
- $config
- );
- static::assertFalse($resolver->getUsingCache());
- }
- public function testResolveCacheFileWithoutConfigAndOption()
- {
- $config = new Config();
- $default = $config->getCacheFile();
- $resolver = $this->createConfigurationResolver(
- [],
- $config
- );
- static::assertSame($default, $resolver->getCacheFile());
- }
- public function testResolveCacheFileWithConfig()
- {
- $cacheFile = 'foo/bar.baz';
- $config = new Config();
- $config->setCacheFile($cacheFile);
- $resolver = $this->createConfigurationResolver(
- [],
- $config
- );
- static::assertSame($cacheFile, $resolver->getCacheFile());
- $cacheManager = $resolver->getCacheManager();
- static::assertInstanceOf(NullCacheManager::class, $cacheManager);
- $linter = $resolver->getLinter();
- static::assertInstanceOf(LinterInterface::class, $linter);
- }
- public function testResolveCacheFileWithOption()
- {
- $cacheFile = 'bar.baz';
- $config = new Config();
- $config->setCacheFile($cacheFile);
- $resolver = $this->createConfigurationResolver(
- ['cache-file' => $cacheFile],
- $config
- );
- static::assertSame($cacheFile, $resolver->getCacheFile());
- }
- public function testResolveCacheFileWithConfigAndOption()
- {
- $configCacheFile = 'foo/bar.baz';
- $optionCacheFile = 'bar.baz';
- $config = new Config();
- $config->setCacheFile($configCacheFile);
- $resolver = $this->createConfigurationResolver(
- ['cache-file' => $optionCacheFile],
- $config
- );
- static::assertSame($optionCacheFile, $resolver->getCacheFile());
- }
- /**
- * @param bool $expected
- * @param bool $configValue
- * @param null|bool|string $passed
- *
- * @dataProvider provideResolveBooleanOptionCases
- */
- public function testResolveAllowRiskyWithConfigOption($expected, $configValue, $passed)
- {
- $config = new Config();
- $config->setRiskyAllowed($configValue);
- $resolver = $this->createConfigurationResolver(
- ['allow-risky' => $passed],
- $config
- );
- static::assertSame($expected, $resolver->getRiskyAllowed());
- }
- public function testResolveAllowRiskyWithNegativeConfigAndPositiveOption()
- {
- $config = new Config();
- $config->setRiskyAllowed(false);
- $resolver = $this->createConfigurationResolver(
- ['allow-risky' => 'yes'],
- $config
- );
- static::assertTrue($resolver->getRiskyAllowed());
- }
- public function testResolveAllowRiskyWithNegativeConfigAndNegativeOption()
- {
- $config = new Config();
- $config->setRiskyAllowed(false);
- $resolver = $this->createConfigurationResolver(
- ['allow-risky' => 'no'],
- $config
- );
- static::assertFalse($resolver->getRiskyAllowed());
- }
- public function testResolveAllowRiskyWithPositiveConfigAndNoOption()
- {
- $config = new Config();
- $config->setRiskyAllowed(true);
- $resolver = $this->createConfigurationResolver(
- [],
- $config
- );
- static::assertTrue($resolver->getRiskyAllowed());
- }
- public function testResolveAllowRiskyWithNegativeConfigAndNoOption()
- {
- $config = new Config();
- $config->setRiskyAllowed(false);
- $resolver = $this->createConfigurationResolver(
- [],
- $config
- );
- static::assertFalse($resolver->getRiskyAllowed());
- }
- public function testResolveRulesWithConfig()
- {
- $config = new Config();
- $config->setRules([
- 'braces' => true,
- 'strict_comparison' => false,
- ]);
- $resolver = $this->createConfigurationResolver(
- [],
- $config
- );
- static::assertSameRules(
- [
- 'braces' => true,
- ],
- $resolver->getRules()
- );
- }
- public function testResolveRulesWithOption()
- {
- $resolver = $this->createConfigurationResolver(['rules' => 'braces,-strict_comparison']);
- static::assertSameRules(
- [
- 'braces' => true,
- ],
- $resolver->getRules()
- );
- }
- public function testResolveRulesWithUnknownRules()
- {
- $this->expectException(
- \PhpCsFixer\ConfigurationException\InvalidConfigurationException::class
- );
- $this->expectExceptionMessage(
- 'The rules contain unknown fixers: "bar", "binary_operator_space" (did you mean "binary_operator_spaces"?).'
- );
- $resolver = $this->createConfigurationResolver(['rules' => 'braces,-bar,binary_operator_space']);
- $resolver->getRules();
- }
- public function testResolveRulesWithConfigAndOption()
- {
- $config = new Config();
- $config->setRules([
- 'braces' => true,
- 'strict_comparison' => false,
- ]);
- $resolver = $this->createConfigurationResolver(
- ['rules' => 'blank_line_before_statement'],
- $config
- );
- static::assertSameRules(
- [
- 'blank_line_before_statement' => true,
- ],
- $resolver->getRules()
- );
- }
- public function testResolveCommandLineInputOverridesDefault()
- {
- $command = new FixCommand(new ToolInfo());
- $definition = $command->getDefinition();
- $arguments = $definition->getArguments();
- static::assertCount(1, $arguments, 'Expected one argument, possibly test needs updating.');
- static::assertArrayHasKey('path', $arguments);
- $options = $definition->getOptions();
- static::assertSame(
- ['path-mode', 'allow-risky', 'config', 'dry-run', 'rules', 'using-cache', 'cache-file', 'diff', 'diff-format', 'format', 'stop-on-violation', 'show-progress'],
- array_keys($options),
- 'Expected options mismatch, possibly test needs updating.'
- );
- $resolver = $this->createConfigurationResolver([
- 'path-mode' => 'intersection',
- 'allow-risky' => 'yes',
- 'config' => null,
- 'dry-run' => true,
- 'rules' => 'php_unit_construct',
- 'using-cache' => false,
- 'diff' => true,
- 'diff-format' => 'udiff',
- 'format' => 'json',
- 'stop-on-violation' => true,
- ]);
- static::assertTrue($resolver->shouldStopOnViolation());
- static::assertTrue($resolver->getRiskyAllowed());
- static::assertTrue($resolver->isDryRun());
- static::assertSame(['php_unit_construct' => true], $resolver->getRules());
- static::assertFalse($resolver->getUsingCache());
- static::assertNull($resolver->getCacheFile());
- static::assertInstanceOf(\PhpCsFixer\Differ\UnifiedDiffer::class, $resolver->getDiffer());
- static::assertSame('json', $resolver->getReporter()->getFormat());
- }
- /**
- * @param string $expected
- * @param null|bool|string $diffConfig
- * @param null|string $differConfig
- *
- * @dataProvider provideDifferCases
- */
- public function testResolveDiffer($expected, $diffConfig, $differConfig = null)
- {
- $resolver = $this->createConfigurationResolver([
- 'diff' => $diffConfig,
- 'diff-format' => $differConfig,
- ]);
- static::assertInstanceOf($expected, $resolver->getDiffer());
- }
- public function provideDifferCases()
- {
- return [
- [
- \PhpCsFixer\Differ\NullDiffer::class,
- false,
- ],
- [
- \PhpCsFixer\Differ\NullDiffer::class,
- null,
- ],
- [
- \PhpCsFixer\Differ\SebastianBergmannDiffer::class,
- true,
- ],
- [
- \PhpCsFixer\Differ\SebastianBergmannDiffer::class,
- 'sbd',
- ],
- [
- \PhpCsFixer\Differ\SebastianBergmannDiffer::class,
- true,
- 'sbd',
- ],
- [
- \PhpCsFixer\Differ\SebastianBergmannDiffer::class,
- false,
- 'sbd',
- ],
- [
- \PhpCsFixer\Differ\SebastianBergmannDiffer::class,
- null,
- 'sbd',
- ],
- [
- \PhpCsFixer\Differ\UnifiedDiffer::class,
- true,
- 'udiff',
- ],
- [
- \PhpCsFixer\Differ\UnifiedDiffer::class,
- false,
- 'udiff',
- ],
- [
- \PhpCsFixer\Differ\UnifiedDiffer::class,
- null,
- 'udiff',
- ],
- ];
- }
- public function testResolveUnknownDiffer()
- {
- $resolver = $this->createConfigurationResolver([
- 'diff-format' => 'XXX',
- ]);
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessageRegExp('#^"diff\-format" must be any of "null", "sbd", "udiff", got "XXX"\.$#');
- $resolver->getDiffer();
- }
- public function testResolveConfigFileOverridesDefault()
- {
- $dir = __DIR__.'/../Fixtures/ConfigurationResolverConfigFile/case_8';
- $resolver = $this->createConfigurationResolver(['path' => [$dir.\DIRECTORY_SEPARATOR.'.php_cs']]);
- static::assertTrue($resolver->getRiskyAllowed());
- static::assertSame(['php_unit_construct' => true], $resolver->getRules());
- static::assertFalse($resolver->getUsingCache());
- static::assertNull($resolver->getCacheFile());
- static::assertSame('xml', $resolver->getReporter()->getFormat());
- }
- /**
- * @group legacy
- * @expectedDeprecation Expected "yes" or "no" for option "allow-risky", other values are deprecated and support will be removed in 3.0. Got "yes please", this implicitly set the option to "false".
- */
- public function testDeprecationOfPassingOtherThanNoOrYes()
- {
- $resolver = $this->createConfigurationResolver(['allow-risky' => 'yes please']);
- static::assertFalse($resolver->getRiskyAllowed());
- }
- public function provideResolveBooleanOptionCases()
- {
- return [
- [true, true, 'yes'],
- [true, true, true],
- [true, false, 'yes'],
- [true, false, true],
- [false, true, 'no'],
- [false, true, false],
- [false, false, 'no'],
- [false, false, false],
- [true, true, null],
- [false, false, null],
- ];
- }
- public function testWithEmptyRules()
- {
- $resolver = $this->createConfigurationResolver(['rules' => '']);
- $this->expectException(InvalidConfigurationException::class);
- $this->expectExceptionMessageRegExp('/^Empty rules value is not allowed\.$/');
- $resolver->getRules();
- }
- /**
- * @param array|bool $ruleConfig
- *
- * @dataProvider provideDeprecatedFixerConfiguredCases
- *
- * @group legacy
- * @expectedDeprecation Rule "Vendor4/foo" is deprecated. Use "testA" and "testB" instead.
- */
- public function testDeprecatedFixerConfigured($ruleConfig)
- {
- $fixer = new DeprecatedFixer();
- $config = new Config();
- $config->registerCustomFixers([$fixer]);
- $config->setRules([$fixer->getName() => $ruleConfig]);
- $resolver = $this->createConfigurationResolver([], $config);
- $resolver->getFixers();
- }
- public function provideDeprecatedFixerConfiguredCases()
- {
- return [
- [true],
- [['foo' => true]],
- [false],
- ];
- }
- public function provideGetDirectoryCases()
- {
- return [
- [null, '/my/path/my/file', 'path/my/file'],
- ['/my/path2/dir/.php_cs.cache', '/my/path2/dir/dir2/file', 'dir2/file'],
- ['dir/.php_cs.cache', '/my/path/dir/dir3/file', 'dir3/file'],
- ];
- }
- /**
- * @dataProvider provideGetDirectoryCases
- *
- * @param null|string $cacheFile
- * @param string $file
- * @param string $expectedPathRelativeToFile
- */
- public function testGetDirectory($cacheFile, $file, $expectedPathRelativeToFile)
- {
- if (null !== $cacheFile) {
- $cacheFile = $this->normalizePath($cacheFile);
- }
- $file = $this->normalizePath($file);
- $expectedPathRelativeToFile = $this->normalizePath($expectedPathRelativeToFile);
- $config = new Config();
- if (null === $cacheFile) {
- $config->setUsingCache(false);
- } else {
- $config->setCacheFile($cacheFile);
- }
- $resolver = new ConfigurationResolver($config, [], $this->normalizePath('/my/path'), new ToolInfo());
- $directory = $resolver->getDirectory();
- static::assertSame($expectedPathRelativeToFile, $directory->getRelativePathTo($file));
- }
- private function normalizePath($path)
- {
- return str_replace('/', \DIRECTORY_SEPARATOR, $path);
- }
- private static function assertSameRules(array $expected, array $actual, $message = '')
- {
- ksort($expected);
- ksort($actual);
- static::assertSame($expected, $actual, $message);
- }
- private function getFixtureDir()
- {
- return realpath(__DIR__.\DIRECTORY_SEPARATOR.'..'.\DIRECTORY_SEPARATOR.'Fixtures'.\DIRECTORY_SEPARATOR.'ConfigurationResolverConfigFile'.\DIRECTORY_SEPARATOR).'/';
- }
- private function createConfigurationResolver(array $options, Config $config = null, $cwdPath = '')
- {
- if (null === $config) {
- $config = new Config();
- }
- return new ConfigurationResolver(
- $config,
- $options,
- $cwdPath,
- new ToolInfo()
- );
- }
- }
|