This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Finder/Tests/FinderTest.php

761 lines
28 KiB
PHP
Raw Normal View History

2010-04-21 08:31:18 +01:00
<?php
/*
2010-04-25 16:06:54 +01:00
* This file is part of the Symfony package.
2010-04-21 08:31:18 +01:00
*
* (c) Fabien Potencier <fabien@symfony.com>
2010-04-21 08:31:18 +01:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Finder\Tests;
2010-04-21 08:31:18 +01:00
use Symfony\Component\Finder\Finder;
2010-04-21 08:31:18 +01:00
class FinderTest extends Iterator\RealIteratorTestCase
{
2012-12-12 18:55:22 +00:00
public function testCreate()
{
$this->assertInstanceOf('Symfony\Component\Finder\Finder', Finder::create());
}
public function testDirectories()
2010-04-21 08:31:18 +01:00
{
$finder = $this->buildFinder();
$this->assertSame($finder, $finder->directories());
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['foo', 'toto']), $finder->in(self::$tmpDir)->getIterator());
$finder = $this->buildFinder();
$finder->directories();
$finder->files();
$finder->directories();
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['foo', 'toto']), $finder->in(self::$tmpDir)->getIterator());
2010-04-21 08:31:18 +01:00
}
public function testFiles()
2010-04-21 08:31:18 +01:00
{
$finder = $this->buildFinder();
$this->assertSame($finder, $finder->files());
2019-01-16 09:39:14 +00:00
$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();
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['foo/bar.tmp', 'test.php', 'test.py', 'foo bar']), $finder->in(self::$tmpDir)->getIterator());
2010-04-21 08:31:18 +01:00
}
public function testRemoveTrailingSlash()
{
$finder = $this->buildFinder();
2019-01-16 09:39:14 +00:00
$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'));
2019-01-16 09:39:14 +00:00
$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();
2019-01-16 09:39:14 +00:00
$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'));
2019-01-16 09:39:14 +00:00
$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'));
2019-01-16 09:39:14 +00:00
$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'));
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['foo/bar.tmp']), $finder->in(self::$tmpDir)->getIterator());
2010-04-21 08:31:18 +01:00
$finder = $this->buildFinder();
$finder->depth('< 1')->depth('>= 1');
2019-01-16 09:39:14 +00:00
$this->assertIterator([], $finder->in(self::$tmpDir)->getIterator());
}
2010-04-21 08:31:18 +01:00
public function testName()
{
$finder = $this->buildFinder();
$this->assertSame($finder, $finder->name('*.php'));
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['test.php']), $finder->in(self::$tmpDir)->getIterator());
$finder = $this->buildFinder();
$finder->name('test.ph*');
$finder->name('test.py');
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['test.php', 'test.py']), $finder->in(self::$tmpDir)->getIterator());
$finder = $this->buildFinder();
$finder->name('~^test~i');
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['test.php', 'test.py']), $finder->in(self::$tmpDir)->getIterator());
$finder = $this->buildFinder();
$finder->name('~\\.php$~i');
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['test.php']), $finder->in(self::$tmpDir)->getIterator());
$finder = $this->buildFinder();
$finder->name('test.p{hp,y}');
2019-01-16 09:39:14 +00:00
$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'));
2019-01-16 09:39:14 +00:00
$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');
2019-01-16 09:39:14 +00:00
$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');
2019-01-16 09:39:14 +00:00
$this->assertIterator([], $finder->in(self::$tmpDir)->getIterator());
$finder = $this->buildFinder();
$finder->name('test.ph*');
$finder->name('test.py');
$finder->notName('*.p{hp,y}');
2019-01-16 09:39:14 +00:00
$this->assertIterator([], $finder->in(self::$tmpDir)->getIterator());
}
/**
* @dataProvider getRegexNameTestData
*/
public function testRegexName($regex)
{
$finder = $this->buildFinder();
$finder->name($regex);
2019-01-16 09:39:14 +00:00
$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'));
2019-01-16 09:39:14 +00:00
$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'));
2019-01-16 09:39:14 +00:00
$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'));
2019-01-16 09:39:14 +00:00
$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));
2019-01-16 09:39:14 +00:00
$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);
2019-01-16 09:39:14 +00:00
$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));
2019-01-16 09:39:14 +00:00
$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));
2019-01-16 09:39:14 +00:00
$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());
2012-05-18 18:41:48 +01:00
$finder = $this->buildFinder();
$finder->ignoreDotFiles(false)->ignoreDotFiles(false)->ignoreVCS(false);
2019-01-16 09:39:14 +00:00
$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));
2019-01-16 09:39:14 +00:00
$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()
2010-04-21 08:31:18 +01:00
{
$finder = $this->buildFinder();
$this->assertSame($finder, $finder->sortByName());
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['foo', 'foo bar', 'foo/bar.tmp', 'test.php', 'test.py', 'toto']), $finder->in(self::$tmpDir)->getIterator());
2010-04-21 08:31:18 +01:00
}
public function testSortByType()
{
$finder = $this->buildFinder();
$this->assertSame($finder, $finder->sortByType());
2019-01-16 09:39:14 +00:00
$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());
2019-01-16 09:39:14 +00:00
$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());
2019-01-16 09:39:14 +00:00
$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());
2019-01-16 09:39:14 +00:00
$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()); }));
2019-01-16 09:39:14 +00:00
$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'); }));
2019-01-16 09:39:14 +00:00
$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());
2019-01-16 09:39:14 +00:00
$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();
2019-01-16 09:39:14 +00:00
$iterator = $finder->files()->name('*.php')->depth('< 1')->in([self::$tmpDir, __DIR__])->getIterator();
2019-01-16 09:39:14 +00:00
$expected = [
self::$tmpDir.\DIRECTORY_SEPARATOR.'test.php',
__DIR__.\DIRECTORY_SEPARATOR.'FinderTest.php',
__DIR__.\DIRECTORY_SEPARATOR.'GlobTest.php',
2019-01-16 09:39:14 +00:00
];
$this->assertIterator($expected, $iterator);
}
/**
* @expectedException \InvalidArgumentException
*/
public function testInWithNonExistentDirectory()
{
$finder = new Finder();
$finder->in('foobar');
}
public function testInWithGlob()
{
$finder = $this->buildFinder();
2019-01-16 09:39:14 +00:00
$finder->in([__DIR__.'/Fixtures/*/B/C/', __DIR__.'/Fixtures/*/*/B/C/'])->getIterator();
2019-01-16 09:39:14 +00:00
$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()
{
$finder = $this->buildFinder();
2019-01-16 09:39:14 +00:00
$finder->in([__DIR__.'/Fixtures/{A,copy/A}/B/C'])->getIterator();
2019-01-16 09:39:14 +00:00
$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();
2019-01-16 09:39:14 +00:00
$dirs = [];
foreach ($finder->directories()->in(self::$tmpDir) as $dir) {
$dirs[] = (string) $dir;
}
2019-01-16 09:39:14 +00:00
$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()
2011-02-15 23:18:23 +00:00
{
$finder = $this->buildFinder()->in(self::$tmpDir);
2011-02-15 23:18:23 +00:00
2019-01-16 09:39:14 +00:00
$paths = [];
2011-02-15 23:18:23 +00:00
2012-05-21 21:27:15 +01:00
foreach ($finder as $file) {
2011-02-15 23:18:23 +00:00
$paths[] = $file->getRelativePath();
}
2019-01-16 09:39:14 +00:00
$ref = ['', '', '', '', 'foo', ''];
2011-02-15 23:18:23 +00:00
sort($ref);
sort($paths);
$this->assertEquals($ref, $paths);
2011-02-15 23:18:23 +00:00
}
public function testRelativePathname()
2011-02-15 23:18:23 +00:00
{
$finder = $this->buildFinder()->in(self::$tmpDir)->sortByName();
2011-02-15 23:18:23 +00:00
2019-01-16 09:39:14 +00:00
$paths = [];
2011-02-15 23:18:23 +00:00
2012-05-21 21:27:15 +01:00
foreach ($finder as $file) {
2011-02-15 23:18:23 +00:00
$paths[] = $file->getRelativePathname();
}
2019-01-16 09:39:14 +00:00
$ref = ['test.php', 'toto', 'test.py', 'foo', 'foo'.\DIRECTORY_SEPARATOR.'bar.tmp', 'foo bar'];
2011-02-15 23:18:23 +00:00
sort($paths);
sort($ref);
$this->assertEquals($ref, $paths);
2011-02-15 23:18:23 +00:00
}
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);
2019-01-16 09:39:14 +00:00
$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');
2019-01-16 09:39:14 +00:00
$finder->append($this->toAbsolute(['foo', 'toto']));
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['foo', 'foo/bar.tmp', 'toto']), $finder->getIterator());
}
2012-05-01 13:46:26 +01:00
public function testAppendReturnsAFinder()
{
2019-01-16 09:39:14 +00:00
$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());
}
2012-04-22 15:13:31 +01:00
public function testCountDirectories()
{
2012-12-10 08:50:12 +00:00
$directory = Finder::create()->directories()->in(self::$tmpDir);
2012-04-22 15:13:31 +01:00
$i = 0;
2012-05-01 13:46:26 +01:00
2012-04-22 15:13:31 +01:00
foreach ($directory as $dir) {
++$i;
2012-04-22 15:13:31 +01:00
}
2012-05-01 13:46:26 +01:00
2012-04-22 15:13:31 +01:00
$this->assertCount($i, $directory);
}
2012-05-01 13:46:26 +01:00
2012-04-22 15:13:31 +01:00
public function testCountFiles()
{
$files = Finder::create()->files()->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures');
2012-04-22 15:13:31 +01:00
$i = 0;
2012-05-01 13:46:26 +01:00
2012-04-22 15:13:31 +01:00
foreach ($files as $file) {
++$i;
2012-04-22 15:13:31 +01:00
}
2012-05-01 13:46:26 +01:00
2012-04-22 15:13:31 +01:00
$this->assertCount($i, $files);
}
2012-05-01 13:46:26 +01:00
2012-12-10 08:50:12 +00:00
/**
* @expectedException \LogicException
*/
2012-04-22 15:13:31 +01:00
public function testCountWithoutIn()
{
2012-12-10 08:50:12 +00:00
$finder = Finder::create()->files();
\count($finder);
2012-04-22 15:13:31 +01:00
}
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());
}
/**
2012-04-19 17:19:17 +01:00
* @dataProvider getContainsTestData
*/
public function testContains($matchPatterns, $noMatchPatterns, $expected)
{
$finder = $this->buildFinder();
$finder->in(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures')
->name('*.txt')->sortByName()
2012-04-19 17:19:17 +01:00
->contains($matchPatterns)
->notContains($noMatchPatterns);
$this->assertIterator($this->toAbsoluteFixtures($expected), $finder);
}
public function testContainsOnDirectory()
{
$finder = $this->buildFinder();
$finder->in(__DIR__)
->directories()
->name('Fixtures')
->contains('abc');
2019-01-16 09:39:14 +00:00
$this->assertIterator([], $finder);
}
public function testNotContainsOnDirectory()
{
$finder = $this->buildFinder();
$finder->in(__DIR__)
->directories()
->name('Fixtures')
->notContains('abc');
2019-01-16 09:39:14 +00:00
$this->assertIterator([], $finder);
}
/**
* Searching in multiple locations involves AppendIterator which does an unnecessary rewind which leaves FilterIterator
2012-10-28 23:25:34 +00:00
* with inner FilesystemIterator in an invalid state.
*
* @see https://bugs.php.net/68557
*/
public function testMultipleLocations()
{
2019-01-16 09:39:14 +00:00
$locations = [
self::$tmpDir.'/',
self::$tmpDir.'/toto/',
2019-01-16 09:39:14 +00:00
];
// 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);
}
2013-01-29 18:30:27 +00:00
/**
* Searching in multiple locations with sub directories involves
* AppendIterator which does an unnecessary rewind which leaves
* FilterIterator with inner FilesystemIterator in an invalid state.
2013-01-29 18:30:27 +00:00
*
* @see https://bugs.php.net/68557
2013-01-29 18:30:27 +00:00
*/
public function testMultipleLocationsWithSubDirectories()
2013-01-29 18:30:27 +00:00
{
2019-01-16 09:39:14 +00:00
$locations = [
__DIR__.'/Fixtures/one',
self::$tmpDir.\DIRECTORY_SEPARATOR.'toto',
2019-01-16 09:39:14 +00:00
];
$finder = $this->buildFinder();
$finder->in($locations)->depth('< 10')->name('*.neon');
2019-01-16 09:39:14 +00:00
$expected = [
__DIR__.'/Fixtures/one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'c.neon',
__DIR__.'/Fixtures/one'.\DIRECTORY_SEPARATOR.'b'.\DIRECTORY_SEPARATOR.'d.neon',
2019-01-16 09:39:14 +00:00
];
$this->assertIterator($expected, $finder);
$this->assertIteratorInForeach($expected, $finder);
}
/**
* Iterator keys must be the file pathname.
2013-01-29 18:30:27 +00:00
*/
public function testIteratorKeys()
2013-01-29 18:30:27 +00:00
{
$finder = $this->buildFinder()->in(self::$tmpDir);
2013-01-29 18:30:27 +00:00
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/');
2019-01-16 09:39:14 +00:00
$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()
{
2019-01-16 09:39:14 +00:00
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()
{
2019-01-16 09:39:14 +00:00
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()
{
2019-01-16 09:39:14 +00:00
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',
2019-01-16 09:39:14 +00:00
],
],
['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',
2019-01-16 09:39:14 +00:00
],
],
['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',
2019-01-16 09:39:14 +00:00
],
],
['/^with space\//', 'foobar',
[
'with space'.\DIRECTORY_SEPARATOR.'foo.txt',
2019-01-16 09:39:14 +00:00
],
],
];
2012-10-29 18:55:27 +00:00
}
2012-12-10 08:50:12 +00:00
public function testAccessDeniedException()
{
if ('\\' === \DIRECTORY_SEPARATOR) {
2013-12-27 15:08:19 +00:00
$this->markTestSkipped('chmod is not supported on Windows');
2013-04-25 13:12:10 +01:00
}
$finder = $this->buildFinder();
$finder->files()->in(self::$tmpDir);
// make 'foo' directory non-readable
$testDir = self::$tmpDir.\DIRECTORY_SEPARATOR.'foo';
2014-08-10 17:59:30 +01:00
chmod($testDir, 0333);
if (false === $couldRead = is_readable($testDir)) {
try {
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['foo bar', 'test.php', 'test.py']), $finder->getIterator());
2014-08-10 17:59:30 +01:00
$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()));
}
2014-08-10 17:59:30 +01:00
$this->assertInstanceOf($expectedExceptionClass, $e);
}
}
// restore original permissions
2014-08-10 17:59:30 +01:00
chmod($testDir, 0777);
2018-12-22 13:25:23 +00:00
clearstatcache(true, $testDir);
2014-08-10 17:59:30 +01:00
if ($couldRead) {
$this->markTestSkipped('could read test files while test requires unreadable');
}
}
public function testIgnoredAccessDeniedException()
{
if ('\\' === \DIRECTORY_SEPARATOR) {
2013-12-27 15:08:19 +00:00
$this->markTestSkipped('chmod is not supported on Windows');
2013-04-25 13:12:10 +01:00
}
$finder = $this->buildFinder();
$finder->files()->ignoreUnreadableDirs()->in(self::$tmpDir);
// make 'foo' directory non-readable
$testDir = self::$tmpDir.\DIRECTORY_SEPARATOR.'foo';
2014-08-10 17:59:30 +01:00
chmod($testDir, 0333);
2014-08-10 17:59:30 +01:00
if (false === ($couldRead = is_readable($testDir))) {
2019-01-16 09:39:14 +00:00
$this->assertIterator($this->toAbsolute(['foo bar', 'test.php', 'test.py']), $finder->getIterator());
2014-08-10 17:59:30 +01:00
}
// restore original permissions
2014-08-10 17:59:30 +01:00
chmod($testDir, 0777);
2018-12-22 13:25:23 +00:00
clearstatcache(true, $testDir);
2014-08-10 17:59:30 +01:00
if ($couldRead) {
$this->markTestSkipped('could read test files while test requires unreadable');
}
}
protected function buildFinder()
2012-12-10 08:50:12 +00:00
{
return Finder::create();
}
2010-04-21 08:31:18 +01:00
}