1
0
Fork 0

Make sure circular dependencies do not break the autoload dumper, refs #7316, refs #7348

pull/7387/merge
Jordi Boggiano 2018-05-31 17:02:04 +02:00
parent ccb4acaf3f
commit 0a27ca7b65
2 changed files with 42 additions and 6 deletions

View File

@ -907,7 +907,8 @@ INITIALIZER;
* @param PackageInterface $mainPackage * @param PackageInterface $mainPackage
* @return array * @return array
*/ */
protected function filterPackageMap(array $packageMap, PackageInterface $mainPackage) { protected function filterPackageMap(array $packageMap, PackageInterface $mainPackage)
{
if ($this->devMode === true) { if ($this->devMode === true) {
return $packageMap; return $packageMap;
} }
@ -924,11 +925,13 @@ INITIALIZER;
$add = function (PackageInterface $package) use (&$add, $mainPackage, $packages, &$include) { $add = function (PackageInterface $package) use (&$add, $mainPackage, $packages, &$include) {
foreach ($package->getRequires() as $link) { foreach ($package->getRequires() as $link) {
$target = $link->getTarget(); $target = $link->getTarget();
if (!isset($include[$target])) {
$include[$target] = true; $include[$target] = true;
if (isset($packages[$target])) { if (isset($packages[$target])) {
$add($packages[$target]); $add($packages[$target]);
} }
} }
}
}; };
$add($mainPackage); $add($mainPackage);

View File

@ -386,6 +386,39 @@ class AutoloadGeneratorTest extends TestCase
$this->assertFileExists($this->vendorDir.'/composer/autoload_classmap.php', "ClassMap file needs to be generated, even if empty."); $this->assertFileExists($this->vendorDir.'/composer/autoload_classmap.php', "ClassMap file needs to be generated, even if empty.");
} }
public function testNonDevAutoloadExclusionWithRecursion()
{
$package = new Package('a', '1.0', '1.0');
$package->setRequires(array(
new Link('a', 'a/a'),
));
$packages = array();
$packages[] = $a = new Package('a/a', '1.0', '1.0');
$packages[] = $b = new Package('b/b', '1.0', '1.0');
$a->setAutoload(array('psr-0' => array('A' => 'src/', 'A\\B' => 'lib/')));
$a->setRequires(array(
new Link('a/a', 'b/b'),
));
$b->setAutoload(array('psr-0' => array('B\\Sub\\Name' => 'src/')));
$b->setRequires(array(
new Link('b/b', 'a/a'),
));
$this->repository->expects($this->once())
->method('getCanonicalPackages')
->will($this->returnValue($packages));
$this->fs->ensureDirectoryExists($this->vendorDir.'/composer');
$this->fs->ensureDirectoryExists($this->vendorDir.'/a/a/src');
$this->fs->ensureDirectoryExists($this->vendorDir.'/a/a/lib');
$this->fs->ensureDirectoryExists($this->vendorDir.'/b/b/src');
$this->generator->dump($this->config, $this->repository, $package, $this->im, 'composer', false, '_5');
$this->assertAutoloadFiles('vendors', $this->vendorDir.'/composer');
$this->assertFileExists($this->vendorDir.'/composer/autoload_classmap.php', "ClassMap file needs to be generated, even if empty.");
}
public function testPSRToClassMapIgnoresNonExistingDir() public function testPSRToClassMapIgnoresNonExistingDir()
{ {
$package = new Package('a', '1.0', '1.0'); $package = new Package('a', '1.0', '1.0');