Navigation Menu

Skip to content

Commit

Permalink
[Finder] Added support for GLOB patterns in the directories passed to…
Browse files Browse the repository at this point in the history
… the in() method.

Pattern has to resolve to at least one directory, otherwise exception is thrown (just like when path to an invalid directory is passed).
  • Loading branch information
jakzal committed Jan 2, 2013
1 parent ef04974 commit 29b9611
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/Symfony/Component/Finder/CHANGELOG.md
Expand Up @@ -6,6 +6,8 @@ CHANGELOG

* added Finder::path() and Finder::notPath() methods
* added finder adapters to improve performance on specific platforms
* added support for wildcard characters (glob patterns) in the paths passed
to Finder::in()

2.1.0
-----
Expand Down
14 changes: 9 additions & 5 deletions src/Symfony/Component/Finder/Finder.php
Expand Up @@ -598,21 +598,25 @@ public function followLinks()
*
* @return Finder The current Finder instance
*
* @throws \InvalidArgumentException if one of the directory does not exist
* @throws \InvalidArgumentException if one of the directories does not exist
*
* @api
*/
public function in($dirs)
{
$dirs = (array) $dirs;
$resolvedDirs = array();

foreach ($dirs as $dir) {
if (!is_dir($dir)) {
foreach ((array) $dirs as $dir) {
if (is_dir($dir)) {
$resolvedDirs[] = $dir;
} elseif ($glob = glob($dir, GLOB_ONLYDIR)) {
$resolvedDirs = array_merge($resolvedDirs, $glob);
} else {
throw new \InvalidArgumentException(sprintf('The "%s" directory does not exist.', $dir));
}
}

$this->dirs = array_merge($this->dirs, $dirs);
$this->dirs = array_merge($this->dirs, $resolvedDirs);

return $this;
}
Expand Down
21 changes: 21 additions & 0 deletions src/Symfony/Component/Finder/Tests/FinderTest.php
Expand Up @@ -311,6 +311,27 @@ public function testIn($adapter)
$this->assertIterator(array(self::$tmpDir.DIRECTORY_SEPARATOR.'test.php', __DIR__.DIRECTORY_SEPARATOR.'FinderTest.php'), $iterator);
}

/**
* @dataProvider getAdaptersTestData
*/
public function testInWithGlob($adapter)
{
$finder = $this->buildFinder($adapter);
$finder->in(array(__DIR__.'/Fixtures/*/B/C', __DIR__.'/Fixtures/*/*/B/C'))->getIterator();

$this->assertIterator($this->toAbsoluteFixtures(array('A/B/C/abc.dat', 'copy/A/B/C/abc.dat.copy')), $finder);
}

/**
* @dataProvider getAdaptersTestData
* @expectedException \InvalidArgumentException
*/
public function testInWithNonDirectoryGlob($adapter)
{
$finder = $this->buildFinder($adapter);
$finder->in(__DIR__.'/Fixtures/A/a*');
}

/**
* @dataProvider getAdaptersTestData
*/
Expand Down

0 comments on commit 29b9611

Please sign in to comment.