123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\Finder\Tests;
- use Symfony\Component\Finder\Finder;
- class FinderTest extends Iterator\RealIteratorTestCase
- {
- public function testCreate()
- {
- $this->assertInstanceOf('Symfony\Component\Finder\Finder', Finder::create());
- }
- public function testDirectories()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->directories());
- $this->assertIterator($this->toAbsolute(['foo', 'toto']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->directories();
- $finder->files();
- $finder->directories();
- $this->assertIterator($this->toAbsolute(['foo', 'toto']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testFiles()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->files());
- $this->assertIterator($this->toAbsolute(['foo/bar.tmp', 'test.php', 'test.py', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->files();
- $finder->directories();
- $finder->files();
- $this->assertIterator($this->toAbsolute(['foo/bar.tmp', 'test.php', 'test.py', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testRemoveTrailingSlash()
- {
- $finder = $this->buildFinder();
- $expected = $this->toAbsolute(['foo/bar.tmp', 'test.php', 'test.py', 'foo bar']);
- $in = self::$tmpDir.'//';
- $this->assertIterator($expected, $finder->in($in)->files()->getIterator());
- }
- public function testSymlinksNotResolved()
- {
- if ('\\' === \DIRECTORY_SEPARATOR) {
- $this->markTestSkipped('symlinks are not supported on Windows');
- }
- $finder = $this->buildFinder();
- symlink($this->toAbsolute('foo'), $this->toAbsolute('baz'));
- $expected = $this->toAbsolute(['baz/bar.tmp']);
- $in = self::$tmpDir.'/baz/';
- try {
- $this->assertIterator($expected, $finder->in($in)->files()->getIterator());
- unlink($this->toAbsolute('baz'));
- } catch (\Exception $e) {
- unlink($this->toAbsolute('baz'));
- throw $e;
- }
- }
- public function testBackPathNotNormalized()
- {
- $finder = $this->buildFinder();
- $expected = $this->toAbsolute(['foo/../foo/bar.tmp']);
- $in = self::$tmpDir.'/foo/../foo/';
- $this->assertIterator($expected, $finder->in($in)->files()->getIterator());
- }
- public function testDepth()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->depth('< 1'));
- $this->assertIterator($this->toAbsolute(['foo', 'test.php', 'test.py', 'toto', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->depth('<= 0'));
- $this->assertIterator($this->toAbsolute(['foo', 'test.php', 'test.py', 'toto', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->depth('>= 1'));
- $this->assertIterator($this->toAbsolute(['foo/bar.tmp']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->depth('< 1')->depth('>= 1');
- $this->assertIterator([], $finder->in(self::$tmpDir)->getIterator());
- }
- public function testName()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->name('*.php'));
- $this->assertIterator($this->toAbsolute(['test.php']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->name('test.ph*');
- $finder->name('test.py');
- $this->assertIterator($this->toAbsolute(['test.php', 'test.py']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->name('~^test~i');
- $this->assertIterator($this->toAbsolute(['test.php', 'test.py']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->name('~\\.php$~i');
- $this->assertIterator($this->toAbsolute(['test.php']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->name('test.p{hp,y}');
- $this->assertIterator($this->toAbsolute(['test.php', 'test.py']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testNotName()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->notName('*.php'));
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'test.py', 'toto', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->notName('*.php');
- $finder->notName('*.py');
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'toto', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->name('test.ph*');
- $finder->name('test.py');
- $finder->notName('*.php');
- $finder->notName('*.py');
- $this->assertIterator([], $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->name('test.ph*');
- $finder->name('test.py');
- $finder->notName('*.p{hp,y}');
- $this->assertIterator([], $finder->in(self::$tmpDir)->getIterator());
- }
- /**
- * @dataProvider getRegexNameTestData
- */
- public function testRegexName($regex)
- {
- $finder = $this->buildFinder();
- $finder->name($regex);
- $this->assertIterator($this->toAbsolute(['test.py', 'test.php']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testSize()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->files()->size('< 1K')->size('> 500'));
- $this->assertIterator($this->toAbsolute(['test.php']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testDate()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->files()->date('until last month'));
- $this->assertIterator($this->toAbsolute(['foo/bar.tmp', 'test.php']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testExclude()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->exclude('foo'));
- $this->assertIterator($this->toAbsolute(['test.php', 'test.py', 'toto', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testIgnoreVCS()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->ignoreVCS(false)->ignoreDotFiles(false));
- $this->assertIterator($this->toAbsolute(['.git', 'foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', 'toto/.git', '.bar', '.foo', '.foo/.bar', '.foo/bar', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->ignoreVCS(false)->ignoreVCS(false)->ignoreDotFiles(false);
- $this->assertIterator($this->toAbsolute(['.git', 'foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', 'toto/.git', '.bar', '.foo', '.foo/.bar', '.foo/bar', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->ignoreVCS(true)->ignoreDotFiles(false));
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', '.bar', '.foo', '.foo/.bar', '.foo/bar', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testIgnoreVCSCanBeDisabledAfterFirstIteration()
- {
- $finder = $this->buildFinder();
- $finder->in(self::$tmpDir);
- $finder->ignoreDotFiles(false);
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', '.bar', '.foo', '.foo/.bar', '.foo/bar', 'foo bar']), $finder->getIterator());
- $finder->ignoreVCS(false);
- $this->assertIterator($this->toAbsolute(['.git', 'foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', 'toto/.git', '.bar', '.foo', '.foo/.bar', '.foo/bar', 'foo bar']), $finder->getIterator());
- }
- public function testIgnoreDotFiles()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->ignoreDotFiles(false)->ignoreVCS(false));
- $this->assertIterator($this->toAbsolute(['.git', '.bar', '.foo', '.foo/.bar', '.foo/bar', 'foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', 'toto/.git', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $finder->ignoreDotFiles(false)->ignoreDotFiles(false)->ignoreVCS(false);
- $this->assertIterator($this->toAbsolute(['.git', '.bar', '.foo', '.foo/.bar', '.foo/bar', 'foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', 'toto/.git', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->ignoreDotFiles(true)->ignoreVCS(false));
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testIgnoreDotFilesCanBeDisabledAfterFirstIteration()
- {
- $finder = $this->buildFinder();
- $finder->in(self::$tmpDir);
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', 'foo bar']), $finder->getIterator());
- $finder->ignoreDotFiles(false);
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', '.bar', '.foo', '.foo/.bar', '.foo/bar', 'foo bar']), $finder->getIterator());
- }
- public function testSortByName()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->sortByName());
- $this->assertIterator($this->toAbsolute(['foo', 'foo bar', 'foo/bar.tmp', 'test.php', 'test.py', 'toto']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testSortByType()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->sortByType());
- $this->assertIterator($this->toAbsolute(['foo', 'foo bar', 'toto', 'foo/bar.tmp', 'test.php', 'test.py']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testSortByAccessedTime()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->sortByAccessedTime());
- $this->assertIterator($this->toAbsolute(['foo/bar.tmp', 'test.php', 'toto', 'test.py', 'foo', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testSortByChangedTime()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->sortByChangedTime());
- $this->assertIterator($this->toAbsolute(['toto', 'test.py', 'test.php', 'foo/bar.tmp', 'foo', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testSortByModifiedTime()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->sortByModifiedTime());
- $this->assertIterator($this->toAbsolute(['foo/bar.tmp', 'test.php', 'toto', 'test.py', 'foo', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testSort()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->sort(function (\SplFileInfo $a, \SplFileInfo $b) { return strcmp($a->getRealPath(), $b->getRealPath()); }));
- $this->assertIterator($this->toAbsolute(['foo', 'foo bar', 'foo/bar.tmp', 'test.php', 'test.py', 'toto']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testFilter()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->filter(function (\SplFileInfo $f) { return false !== strpos($f, 'test'); }));
- $this->assertIterator($this->toAbsolute(['test.php', 'test.py']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testFollowLinks()
- {
- if ('\\' == \DIRECTORY_SEPARATOR) {
- $this->markTestSkipped('symlinks are not supported on Windows');
- }
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->followLinks());
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'test.php', 'test.py', 'toto', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
- }
- public function testIn()
- {
- $finder = $this->buildFinder();
- $iterator = $finder->files()->name('*.php')->depth('< 1')->in([self::$tmpDir, __DIR__])->getIterator();
- $expected = [
- self::$tmpDir.\DIRECTORY_SEPARATOR.'test.php',
- __DIR__.\DIRECTORY_SEPARATOR.'FinderTest.php',
- __DIR__.\DIRECTORY_SEPARATOR.'GlobTest.php',
- ];
- $this->assertIterator($expected, $iterator);
- }
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testInWithNonExistentDirectory()
- {
- $finder = new Finder();
- $finder->in('foobar');
- }
- public function testInWithGlob()
- {
- $finder = $this->buildFinder();
- $finder->in([__DIR__.'/Fixtures/*/B/C/', __DIR__.'/Fixtures/*/*/B/C/'])->getIterator();
- $this->assertIterator($this->toAbsoluteFixtures(['A/B/C/abc.dat', 'copy/A/B/C/abc.dat.copy']), $finder);
- }
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testInWithNonDirectoryGlob()
- {
- $finder = new Finder();
- $finder->in(__DIR__.'/Fixtures/A/a*');
- }
- public function testInWithGlobBrace()
- {
- if (!\defined('GLOB_BRACE')) {
- $this->markTestSkipped('Glob brace is not supported on this system.');
- }
- $finder = $this->buildFinder();
- $finder->in([__DIR__.'/Fixtures/{A,copy/A}/B/C'])->getIterator();
- $this->assertIterator($this->toAbsoluteFixtures(['A/B/C/abc.dat', 'copy/A/B/C/abc.dat.copy']), $finder);
- }
- /**
- * @expectedException \LogicException
- */
- public function testGetIteratorWithoutIn()
- {
- $finder = Finder::create();
- $finder->getIterator();
- }
- public function testGetIterator()
- {
- $finder = $this->buildFinder();
- $dirs = [];
- foreach ($finder->directories()->in(self::$tmpDir) as $dir) {
- $dirs[] = (string) $dir;
- }
- $expected = $this->toAbsolute(['foo', 'toto']);
- sort($dirs);
- sort($expected);
- $this->assertEquals($expected, $dirs, 'implements the \IteratorAggregate interface');
- $finder = $this->buildFinder();
- $this->assertEquals(2, iterator_count($finder->directories()->in(self::$tmpDir)), 'implements the \IteratorAggregate interface');
- $finder = $this->buildFinder();
- $a = iterator_to_array($finder->directories()->in(self::$tmpDir));
- $a = array_values(array_map('strval', $a));
- sort($a);
- $this->assertEquals($expected, $a, 'implements the \IteratorAggregate interface');
- }
- public function testRelativePath()
- {
- $finder = $this->buildFinder()->in(self::$tmpDir);
- $paths = [];
- foreach ($finder as $file) {
- $paths[] = $file->getRelativePath();
- }
- $ref = ['', '', '', '', 'foo', ''];
- sort($ref);
- sort($paths);
- $this->assertEquals($ref, $paths);
- }
- public function testRelativePathname()
- {
- $finder = $this->buildFinder()->in(self::$tmpDir)->sortByName();
- $paths = [];
- foreach ($finder as $file) {
- $paths[] = $file->getRelativePathname();
- }
- $ref = ['test.php', 'toto', 'test.py', 'foo', 'foo'.\DIRECTORY_SEPARATOR.'bar.tmp', 'foo bar'];
- sort($paths);
- sort($ref);
- $this->assertEquals($ref, $paths);
- }
- public function testAppendWithAFinder()
- {
- $finder = $this->buildFinder();
- $finder->files()->in(self::$tmpDir.\DIRECTORY_SEPARATOR.'foo');
- $finder1 = $this->buildFinder();
- $finder1->directories()->in(self::$tmpDir);
- $finder = $finder->append($finder1);
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'toto']), $finder->getIterator());
- }
- public function testAppendWithAnArray()
- {
- $finder = $this->buildFinder();
- $finder->files()->in(self::$tmpDir.\DIRECTORY_SEPARATOR.'foo');
- $finder->append($this->toAbsolute(['foo', 'toto']));
- $this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'toto']), $finder->getIterator());
- }
- public function testAppendReturnsAFinder()
- {
- $this->assertInstanceOf('Symfony\\Component\\Finder\\Finder', Finder::create()->append([]));
- }
- public function testAppendDoesNotRequireIn()
- {
- $finder = $this->buildFinder();
- $finder->in(self::$tmpDir.\DIRECTORY_SEPARATOR.'foo');
- $finder1 = Finder::create()->append($finder);
- $this->assertIterator(iterator_to_array($finder->getIterator()), $finder1->getIterator());
- }
- public function testCountDirectories()
- {
- $directory = Finder::create()->directories()->in(self::$tmpDir);
- $i = 0;
- foreach ($directory as $dir) {
- ++$i;
- }
- $this->assertCount($i, $directory);
- }
- public function testCountFiles()
- {
- $files = Finder::create()->files()->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures');
- $i = 0;
- foreach ($files as $file) {
- ++$i;
- }
- $this->assertCount($i, $files);
- }
- /**
- * @expectedException \LogicException
- */
- public function testCountWithoutIn()
- {
- $finder = Finder::create()->files();
- \count($finder);
- }
- public function testHasResults()
- {
- $finder = $this->buildFinder();
- $finder->in(__DIR__);
- $this->assertTrue($finder->hasResults());
- }
- public function testNoResults()
- {
- $finder = $this->buildFinder();
- $finder->in(__DIR__)->name('DoesNotExist');
- $this->assertFalse($finder->hasResults());
- }
- /**
- * @dataProvider getContainsTestData
- */
- public function testContains($matchPatterns, $noMatchPatterns, $expected)
- {
- $finder = $this->buildFinder();
- $finder->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures')
- ->name('*.txt')->sortByName()
- ->contains($matchPatterns)
- ->notContains($noMatchPatterns);
- $this->assertIterator($this->toAbsoluteFixtures($expected), $finder);
- }
- public function testContainsOnDirectory()
- {
- $finder = $this->buildFinder();
- $finder->in(__DIR__)
- ->directories()
- ->name('Fixtures')
- ->contains('abc');
- $this->assertIterator([], $finder);
- }
- public function testNotContainsOnDirectory()
- {
- $finder = $this->buildFinder();
- $finder->in(__DIR__)
- ->directories()
- ->name('Fixtures')
- ->notContains('abc');
- $this->assertIterator([], $finder);
- }
- /**
- * Searching in multiple locations involves AppendIterator which does an unnecessary rewind which leaves FilterIterator
- * with inner FilesystemIterator in an invalid state.
- *
- * @see https://bugs.php.net/68557
- */
- public function testMultipleLocations()
- {
- $locations = [
- self::$tmpDir.'/',
- self::$tmpDir.'/toto/',
- ];
- // it is expected that there are test.py test.php in the tmpDir
- $finder = new Finder();
- $finder->in($locations)
- // the default flag IGNORE_DOT_FILES fixes the problem indirectly
- // so we set it to false for better isolation
- ->ignoreDotFiles(false)
- ->depth('< 1')->name('test.php');
- $this->assertCount(1, $finder);
- }
- /**
- * Searching in multiple locations with sub directories involves
- * AppendIterator which does an unnecessary rewind which leaves
- * FilterIterator with inner FilesystemIterator in an invalid state.
- *
- * @see https://bugs.php.net/68557
- */
- public function testMultipleLocationsWithSubDirectories()
- {
- $locations = [
- __DIR__.'/Fixtures/one',
- self::$tmpDir.\DIRECTORY_SEPARATOR.'toto',
- ];
- $finder = $this->buildFinder();
- $finder->in($locations)->depth('< 10')->name('*.neon');
- $expected = [
- __DIR__.'/Fixtures/one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'c.neon',
- __DIR__.'/Fixtures/one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'d.neon',
- ];
- $this->assertIterator($expected, $finder);
- $this->assertIteratorInForeach($expected, $finder);
- }
- /**
- * Iterator keys must be the file pathname.
- */
- public function testIteratorKeys()
- {
- $finder = $this->buildFinder()->in(self::$tmpDir);
- foreach ($finder as $key => $file) {
- $this->assertEquals($file->getPathname(), $key);
- }
- }
- public function testRegexSpecialCharsLocationWithPathRestrictionContainingStartFlag()
- {
- $finder = $this->buildFinder();
- $finder->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures'.\DIRECTORY_SEPARATOR.'r+e.gex[c]a(r)s')
- ->path('/^dir/');
- $expected = ['r+e.gex[c]a(r)s'.\DIRECTORY_SEPARATOR.'dir', 'r+e.gex[c]a(r)s'.\DIRECTORY_SEPARATOR.'dir'.\DIRECTORY_SEPARATOR.'bar.dat'];
- $this->assertIterator($this->toAbsoluteFixtures($expected), $finder);
- }
- public function getContainsTestData()
- {
- return [
- ['', '', []],
- ['foo', 'bar', []],
- ['', 'foobar', ['dolor.txt', 'ipsum.txt', 'lorem.txt']],
- ['lorem ipsum dolor sit amet', 'foobar', ['lorem.txt']],
- ['sit', 'bar', ['dolor.txt', 'ipsum.txt', 'lorem.txt']],
- ['dolor sit amet', '@^L@m', ['dolor.txt', 'ipsum.txt']],
- ['/^lorem ipsum dolor sit amet$/m', 'foobar', ['lorem.txt']],
- ['lorem', 'foobar', ['lorem.txt']],
- ['', 'lorem', ['dolor.txt', 'ipsum.txt']],
- ['ipsum dolor sit amet', '/^IPSUM/m', ['lorem.txt']],
- ];
- }
- public function getRegexNameTestData()
- {
- return [
- ['~.+\\.p.+~i'],
- ['~t.*s~i'],
- ];
- }
- /**
- * @dataProvider getTestPathData
- */
- public function testPath($matchPatterns, $noMatchPatterns, array $expected)
- {
- $finder = $this->buildFinder();
- $finder->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures')
- ->path($matchPatterns)
- ->notPath($noMatchPatterns);
- $this->assertIterator($this->toAbsoluteFixtures($expected), $finder);
- }
- public function getTestPathData()
- {
- return [
- ['', '', []],
- ['/^A\/B\/C/', '/C$/',
- ['A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat'],
- ],
- ['/^A\/B/', 'foobar',
- [
- 'A'.\DIRECTORY_SEPARATOR.'B',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat',
- ],
- ],
- ['A/B/C', 'foobar',
- [
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat',
- 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
- 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat.copy',
- ],
- ],
- ['A/B', 'foobar',
- [
- //dirs
- 'A'.\DIRECTORY_SEPARATOR.'B',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
- 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B',
- 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
- //files
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat',
- 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat.copy',
- 'copy'.\DIRECTORY_SEPARATOR.'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat.copy',
- ],
- ],
- ['/^with space\//', 'foobar',
- [
- 'with space'.\DIRECTORY_SEPARATOR.'foo.txt',
- ],
- ],
- ];
- }
- public function testAccessDeniedException()
- {
- if ('\\' === \DIRECTORY_SEPARATOR) {
- $this->markTestSkipped('chmod is not supported on Windows');
- }
- $finder = $this->buildFinder();
- $finder->files()->in(self::$tmpDir);
- // make 'foo' directory non-readable
- $testDir = self::$tmpDir.\DIRECTORY_SEPARATOR.'foo';
- chmod($testDir, 0333);
- if (false === $couldRead = is_readable($testDir)) {
- try {
- $this->assertIterator($this->toAbsolute(['foo bar', 'test.php', 'test.py']), $finder->getIterator());
- $this->fail('Finder should throw an exception when opening a non-readable directory.');
- } catch (\Exception $e) {
- $expectedExceptionClass = 'Symfony\\Component\\Finder\\Exception\\AccessDeniedException';
- if ($e instanceof \PHPUnit_Framework_ExpectationFailedException) {
- $this->fail(sprintf("Expected exception:\n%s\nGot:\n%s\nWith comparison failure:\n%s", $expectedExceptionClass, 'PHPUnit_Framework_ExpectationFailedException', $e->getComparisonFailure()->getExpectedAsString()));
- }
- if ($e instanceof \PHPUnit\Framework\ExpectationFailedException) {
- $this->fail(sprintf("Expected exception:\n%s\nGot:\n%s\nWith comparison failure:\n%s", $expectedExceptionClass, '\PHPUnit\Framework\ExpectationFailedException', $e->getComparisonFailure()->getExpectedAsString()));
- }
- $this->assertInstanceOf($expectedExceptionClass, $e);
- }
- }
- // restore original permissions
- chmod($testDir, 0777);
- clearstatcache(true, $testDir);
- if ($couldRead) {
- $this->markTestSkipped('could read test files while test requires unreadable');
- }
- }
- public function testIgnoredAccessDeniedException()
- {
- if ('\\' === \DIRECTORY_SEPARATOR) {
- $this->markTestSkipped('chmod is not supported on Windows');
- }
- $finder = $this->buildFinder();
- $finder->files()->ignoreUnreadableDirs()->in(self::$tmpDir);
- // make 'foo' directory non-readable
- $testDir = self::$tmpDir.\DIRECTORY_SEPARATOR.'foo';
- chmod($testDir, 0333);
- if (false === ($couldRead = is_readable($testDir))) {
- $this->assertIterator($this->toAbsolute(['foo bar', 'test.php', 'test.py']), $finder->getIterator());
- }
- // restore original permissions
- chmod($testDir, 0777);
- clearstatcache(true, $testDir);
- if ($couldRead) {
- $this->markTestSkipped('could read test files while test requires unreadable');
- }
- }
- protected function buildFinder()
- {
- return Finder::create();
- }
- }
|