| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459 |
- <?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', 'qux', 'toto']), $finder->in(self::$tmpDir)->getIterator());
-
- $finder = $this->buildFinder();
- $finder->directories();
- $finder->files();
- $finder->directories();
- $this->assertIterator($this->toAbsolute(['foo', 'qux', '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',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $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',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $finder->in(self::$tmpDir)->getIterator());
- }
-
- public function testRemoveTrailingSlash()
- {
- $finder = $this->buildFinder();
-
- $expected = $this->toAbsolute([
- 'foo/bar.tmp',
- 'test.php',
- 'test.py',
- 'foo bar',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]);
- $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',
- 'qux',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $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',
- 'qux',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $finder->in(self::$tmpDir)->getIterator());
-
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->depth('>= 1'));
- $this->assertIterator($this->toAbsolute([
- 'foo/bar.tmp',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- ]), $finder->in(self::$tmpDir)->getIterator());
-
- $finder = $this->buildFinder();
- $finder->depth('< 1')->depth('>= 1');
- $this->assertIterator([], $finder->in(self::$tmpDir)->getIterator());
- }
-
- public function testDepthWithArrayParam()
- {
- $finder = $this->buildFinder();
- $finder->depth(['>= 1', '< 2']);
- $this->assertIterator($this->toAbsolute([
- 'foo/bar.tmp',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- ]), $finder->in(self::$tmpDir)->getIterator());
- }
-
- public function testName()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->name('*.php'));
- $this->assertIterator($this->toAbsolute([
- 'test.php',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.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',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.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 testNameWithArrayParam()
- {
- $finder = $this->buildFinder();
- $finder->name(['test.php', 'test.py']);
- $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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- ]), $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',
- 'qux',
- ]), $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());
- }
-
- public function testNotNameWithArrayParam()
- {
- $finder = $this->buildFinder();
- $finder->notName(['*.php', '*.py']);
- $this->assertIterator($this->toAbsolute([
- 'foo',
- 'foo/bar.tmp',
- 'toto',
- 'foo bar',
- 'qux',
- ]), $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 testSizeWithArrayParam()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->files()->size(['< 1K', '> 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 testDateWithArrayParam()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->files()->date(['>= 2005-10-15', '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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $finder->in(self::$tmpDir)->getIterator());
- }
-
- public function testIgnoreVCS()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->ignoreVCS(false)->ignoreDotFiles(false));
- $this->assertIterator($this->toAbsolute([
- '.gitignore',
- '.git',
- 'foo',
- 'foo/bar.tmp',
- 'test.php',
- 'test.py',
- 'toto',
- 'toto/.git',
- '.bar',
- '.foo',
- '.foo/.bar',
- '.foo/bar',
- 'foo bar',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $finder->in(self::$tmpDir)->getIterator());
-
- $finder = $this->buildFinder();
- $finder->ignoreVCS(false)->ignoreVCS(false)->ignoreDotFiles(false);
- $this->assertIterator($this->toAbsolute([
- '.gitignore',
- '.git',
- 'foo',
- 'foo/bar.tmp',
- 'test.php',
- 'test.py',
- 'toto',
- 'toto/.git',
- '.bar',
- '.foo',
- '.foo/.bar',
- '.foo/bar',
- 'foo bar',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $finder->in(self::$tmpDir)->getIterator());
-
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->ignoreVCS(true)->ignoreDotFiles(false));
- $this->assertIterator($this->toAbsolute([
- '.gitignore',
- 'foo',
- 'foo/bar.tmp',
- 'test.php',
- 'test.py',
- 'toto',
- '.bar',
- '.foo',
- '.foo/.bar',
- '.foo/bar',
- 'foo bar',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $finder->in(self::$tmpDir)->getIterator());
- }
-
- public function testIgnoreVCSIgnored()
- {
- $finder = $this->buildFinder();
- $this->assertSame(
- $finder,
- $finder
- ->ignoreVCS(true)
- ->ignoreDotFiles(true)
- ->ignoreVCSIgnored(true)
- );
- $this->assertIterator($this->toAbsolute([
- 'foo',
- 'foo/bar.tmp',
- 'test.py',
- 'toto',
- 'foo bar',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- ]), $finder->in(self::$tmpDir)->getIterator());
- }
-
- public function testIgnoreVCSCanBeDisabledAfterFirstIteration()
- {
- $finder = $this->buildFinder();
- $finder->in(self::$tmpDir);
- $finder->ignoreDotFiles(false);
-
- $this->assertIterator($this->toAbsolute([
- '.gitignore',
- 'foo',
- 'foo/bar.tmp',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- 'test.php',
- 'test.py',
- 'toto',
- '.bar',
- '.foo',
- '.foo/.bar',
- '.foo/bar',
- 'foo bar',
- ]), $finder->getIterator());
-
- $finder->ignoreVCS(false);
- $this->assertIterator($this->toAbsolute([
- '.gitignore',
- '.git',
- 'foo',
- 'foo/bar.tmp',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- '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([
- '.gitignore',
- '.git',
- '.bar',
- '.foo',
- '.foo/.bar',
- '.foo/bar',
- 'foo',
- 'foo/bar.tmp',
- 'test.php',
- 'test.py',
- 'toto',
- 'toto/.git',
- 'foo bar',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $finder->in(self::$tmpDir)->getIterator());
-
- $finder = $this->buildFinder();
- $finder->ignoreDotFiles(false)->ignoreDotFiles(false)->ignoreVCS(false);
- $this->assertIterator($this->toAbsolute([
- '.gitignore',
- '.git',
- '.bar',
- '.foo',
- '.foo/.bar',
- '.foo/bar',
- 'foo',
- 'foo/bar.tmp',
- 'test.php',
- 'test.py',
- 'toto',
- 'toto/.git',
- 'foo bar',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $finder->in(self::$tmpDir)->getIterator());
- }
-
- public function testIgnoreDotFilesCanBeDisabledAfterFirstIteration()
- {
- $finder = $this->buildFinder();
- $finder->in(self::$tmpDir);
-
- $this->assertIterator($this->toAbsolute([
- 'foo',
- 'foo/bar.tmp',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- 'test.php',
- 'test.py',
- 'toto',
- 'foo bar',
- ]), $finder->getIterator());
-
- $finder->ignoreDotFiles(false);
- $this->assertIterator($this->toAbsolute([
- '.gitignore',
- 'foo',
- 'foo/bar.tmp',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- '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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- '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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $finder->in(self::$tmpDir)->getIterator());
- }
-
- public function testReverseSorting()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->sortByName());
- $this->assertSame($finder, $finder->reverseSorting());
- $this->assertOrderedIteratorInForeach($this->toAbsolute([
- 'toto',
- 'test.py',
- 'test.php',
- 'qux_2_0.php',
- 'qux_12_0.php',
- 'qux_10_2.php',
- 'qux_1002_0.php',
- 'qux_1000_1.php',
- 'qux_0_1.php',
- 'qux/baz_1_2.py',
- 'qux/baz_100_1.py',
- 'qux',
- 'foo/bar.tmp',
- 'foo bar',
- 'foo',
- ]), $finder->in(self::$tmpDir)->getIterator());
- }
-
- public function testSortByNameNatural()
- {
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->sortByName(true));
- $this->assertIterator($this->toAbsolute([
- 'foo',
- 'foo bar',
- 'foo/bar.tmp',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- 'test.php',
- 'test.py',
- 'toto',
- ]), $finder->in(self::$tmpDir)->getIterator());
-
- $finder = $this->buildFinder();
- $this->assertSame($finder, $finder->sortByName(false));
- $this->assertIterator($this->toAbsolute([
- 'foo',
- 'foo bar',
- 'foo/bar.tmp',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- 'test.php',
- 'test.py',
- 'toto',
- ]), $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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $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',
- 'qux',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]), $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.'GitignoreTest.php',
- __DIR__.\DIRECTORY_SEPARATOR.'FinderTest.php',
- __DIR__.\DIRECTORY_SEPARATOR.'GlobTest.php',
- self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_0_1.php',
- self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_1000_1.php',
- self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_1002_0.php',
- self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_10_2.php',
- self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_12_0.php',
- self::$tmpDir.\DIRECTORY_SEPARATOR.'qux_2_0.php',
- ];
-
- $this->assertIterator($expected, $iterator);
- }
-
- /**
- * @expectedException \Symfony\Component\Finder\Exception\DirectoryNotFoundException
- */
- public function testInWithNonExistentDirectory()
- {
- $finder = new Finder();
- $finder->in('foobar');
- }
-
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testInWithNonExistentDirectoryLegacyException()
- {
- $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', 'qux', 'toto']);
-
- sort($dirs);
- sort($expected);
-
- $this->assertEquals($expected, $dirs, 'implements the \IteratorAggregate interface');
-
- $finder = $this->buildFinder();
- $this->assertEquals(3, 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', 'qux', 'qux', ''];
-
- 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',
- 'qux',
- 'qux'.\DIRECTORY_SEPARATOR.'baz_100_1.py',
- 'qux'.\DIRECTORY_SEPARATOR.'baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ];
-
- sort($paths);
- sort($ref);
-
- $this->assertEquals($ref, $paths);
- }
-
- public function testGetFilenameWithoutExtension()
- {
- $finder = $this->buildFinder()->in(self::$tmpDir)->sortByName();
-
- $fileNames = [];
-
- foreach ($finder as $file) {
- $fileNames[] = $file->getFilenameWithoutExtension();
- }
-
- $ref = [
- 'test',
- 'toto',
- 'test',
- 'foo',
- 'bar',
- 'foo bar',
- 'qux',
- 'baz_100_1',
- 'baz_1_2',
- 'qux_0_1',
- 'qux_1000_1',
- 'qux_1002_0',
- 'qux_10_2',
- 'qux_12_0',
- 'qux_2_0',
- ];
-
- sort($fileNames);
- sort($ref);
-
- $this->assertEquals($ref, $fileNames);
- }
-
- 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', 'qux', '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']],
- [['lorem', 'dolor'], [], ['lorem.txt', 'ipsum.txt', 'dolor.txt']],
- ['', ['lorem', 'ipsum'], ['dolor.txt']],
- ];
- }
-
- public function getRegexNameTestData()
- {
- return [
- ['~.*t\\.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',
- ],
- ],
- [
- '/^A/',
- ['a.dat', 'abc.dat'],
- [
- 'A',
- 'A'.\DIRECTORY_SEPARATOR.'B',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat',
- ],
- ],
- [
- ['/^A/', 'one'],
- 'foobar',
- [
- 'A',
- 'A'.\DIRECTORY_SEPARATOR.'B',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C',
- 'A'.\DIRECTORY_SEPARATOR.'a.dat',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'ab.dat',
- 'A'.\DIRECTORY_SEPARATOR.'B'.\DIRECTORY_SEPARATOR.'C'.\DIRECTORY_SEPARATOR.'abc.dat',
- 'one',
- 'one'.\DIRECTORY_SEPARATOR.'a',
- 'one'.\DIRECTORY_SEPARATOR.'b',
- 'one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'c.neon',
- 'one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'d.neon',
- ],
- ],
- ];
- }
-
- 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',
- 'qux/baz_100_1.py',
- 'qux/baz_1_2.py',
- 'qux_0_1.php',
- 'qux_1000_1.php',
- 'qux_1002_0.php',
- 'qux_10_2.php',
- 'qux_12_0.php',
- 'qux_2_0.php',
- ]
- ), $finder->getIterator());
- }
-
- // restore original permissions
- chmod($testDir, 0777);
- clearstatcache(true, $testDir);
-
- if ($couldRead) {
- $this->markTestSkipped('could read test files while test requires unreadable');
- }
- }
-
- /**
- * @group legacy
- * @expectedDeprecation The "Symfony\Component\Finder\Finder::sortByName()" method will have a new "bool $useNaturalSort = false" argument in version 5.0, not defining it is deprecated since Symfony 4.2.
- */
- public function testInheritedClassCallSortByNameWithNoArguments()
- {
- $finderChild = new ClassThatInheritFinder();
- $finderChild->sortByName();
- }
-
- protected function buildFinder()
- {
- return Finder::create();
- }
- }
-
- class ClassThatInheritFinder extends Finder
- {
- public function sortByName()
- {
- parent::sortByName();
- }
- }
|