123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278 |
- <?php
- 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\Fixtures\FakeDiffer;
- use PhpCsFixer\Tests\TestCase;
- use PhpCsFixer\ToolInfo;
- use Symfony\Component\Console\Output\OutputInterface;
- final class ConfigurationResolverTest extends TestCase
- {
- public function testSetOptionWithUndefinedOption()
- {
- $this->expectException(InvalidConfigurationException::class);
- $this->expectExceptionMessageMatches('/^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('dots', $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());
- }
-
- 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());
- }
-
- 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());
- }
- 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", "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());
- }
-
- 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->expectExceptionMessageMatches(
- '#^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->expectExceptionMessageMatches('/^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->expectExceptionMessageMatches('/^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 testResolvePath(array $paths, $cwd, array $expectedPaths)
- {
- $resolver = $this->createConfigurationResolver(
- ['path' => $paths],
- null,
- $cwd
- );
- static::assertSame($expectedPaths, $resolver->getPath());
- }
- public function providePathCases()
- {
- yield [
- ['Command'],
- __DIR__,
- [__DIR__.\DIRECTORY_SEPARATOR.'Command'],
- ];
- yield [
- [basename(__DIR__)],
- \dirname(__DIR__),
- [__DIR__],
- ];
- yield [
- [' Command'],
- __DIR__,
- [__DIR__.\DIRECTORY_SEPARATOR.'Command'],
- ];
- yield [
- ['Command '],
- __DIR__,
- [__DIR__.\DIRECTORY_SEPARATOR.'Command'],
- ];
- }
-
- public function testRejectInvalidPath(array $paths, $expectedMessage)
- {
- $resolver = $this->createConfigurationResolver(
- ['path' => $paths],
- null,
- \dirname(__DIR__)
- );
- $this->expectException(InvalidConfigurationException::class);
- $this->expectExceptionMessage($expectedMessage);
- $resolver->getPath();
- }
- public function provideEmptyPathCases()
- {
- yield [
- [''],
- 'Invalid path: "".',
- ];
- yield [
- [__DIR__, ''],
- 'Invalid path: "".',
- ];
- yield [
- ['', __DIR__],
- 'Invalid path: "".',
- ];
- yield [
- [' '],
- 'Invalid path: " ".',
- ];
- yield [
- [__DIR__, ' '],
- 'Invalid path: " ".',
- ];
- yield [
- [' ', __DIR__],
- 'Invalid path: " ".',
- ];
- }
- 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());
- }
-
- 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' => [
-
- $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',
- ],
- ];
- }
-
- 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,
- ],
-
- [
- [
- 'config' => $root.'/tests/Fixtures/ConfigurationResolverConfigFile/case_3/.php_cs.dist',
- 'path' => [$root.'/src'],
- ],
- false,
- ],
-
- [
- [
- '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());
- }
-
- 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
- ->setUsingCache(false)
- ->setCacheFile($cacheFile)
- ;
- $resolver = $this->createConfigurationResolver(
- [],
- $config
- );
- static::assertNull($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());
- }
-
- 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' => 'no',
- '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());
- }
-
- public function testResolveDiffer($expected, $diffConfig, $differConfig = null)
- {
- $resolver = $this->createConfigurationResolver([
- 'diff' => $diffConfig,
- 'diff-format' => $differConfig,
- ]);
- static::assertInstanceOf($expected, $resolver->getDiffer());
- }
- public function testCustomDiffer()
- {
- $resolver = $this->createConfigurationResolver([
- 'diff-format' => FakeDiffer::class,
- ]);
- static::assertInstanceOf(FakeDiffer::class, $resolver->getDiffer());
- }
- public function testCustomDifferMustBeAString()
- {
- $resolver = $this->createConfigurationResolver([
- 'diff-format' => new FakeDiffer(),
- ]);
- $this->expectExceptionMessage('"diff-format" must be a string, "object" given');
- $resolver->getDiffer();
- }
- public function provideDifferCases()
- {
- return [
- [
- \PhpCsFixer\Differ\NullDiffer::class,
- false,
- ],
- [
- \PhpCsFixer\Differ\NullDiffer::class,
- null,
- ],
- [
- \PhpCsFixer\Differ\UnifiedDiffer::class,
- true,
- ],
- [
- \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->expectExceptionMessageMatches('#^"diff\-format" must be any of "null", "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());
- }
- public function testDeprecationOfPassingOtherThanNoOrYes()
- {
- $this->expectException(\PhpCsFixer\ConfigurationException\InvalidConfigurationException::class);
- $this->expectExceptionMessage('Expected "yes" or "no" for option "allow-risky", got "yes please".');
- $resolver = $this->createConfigurationResolver(['allow-risky' => 'yes please']);
- $resolver->getRiskyAllowed();
- }
- public function provideResolveBooleanOptionCases()
- {
- return [
- [true, true, 'yes'],
- [true, false, 'yes'],
- [false, true, 'no'],
- [false, false, 'no'],
- [true, true, null],
- [false, false, null],
- ];
- }
- public function testWithEmptyRules()
- {
- $resolver = $this->createConfigurationResolver(['rules' => '']);
- $this->expectException(InvalidConfigurationException::class);
- $this->expectExceptionMessageMatches('/^Empty rules value is not allowed\.$/');
- $resolver->getRules();
- }
-
- 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'],
- ];
- }
-
- 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 TestToolInfo());
- $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 TestToolInfo()
- );
- }
- }
|