2011-10-21 12:44:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Composer.
|
|
|
|
*
|
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\DependencyResolver;
|
|
|
|
|
|
|
|
use Composer\Repository\ArrayRepository;
|
2011-11-18 23:27:35 +00:00
|
|
|
use Composer\Repository\RepositoryInterface;
|
2011-10-21 12:44:24 +00:00
|
|
|
use Composer\DependencyResolver\DefaultPolicy;
|
|
|
|
use Composer\DependencyResolver\Pool;
|
|
|
|
use Composer\Package\Link;
|
2012-04-20 20:10:58 +00:00
|
|
|
use Composer\Package\AliasPackage;
|
2011-10-21 12:44:24 +00:00
|
|
|
use Composer\Package\LinkConstraint\VersionConstraint;
|
2013-09-25 08:14:42 +00:00
|
|
|
use Composer\TestCase;
|
2011-10-21 12:44:24 +00:00
|
|
|
|
2011-11-20 14:06:12 +00:00
|
|
|
class DefaultPolicyTest extends TestCase
|
2011-10-21 12:44:24 +00:00
|
|
|
{
|
|
|
|
protected $pool;
|
|
|
|
protected $repo;
|
|
|
|
protected $repoInstalled;
|
|
|
|
protected $request;
|
|
|
|
protected $policy;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
2012-07-04 12:22:09 +00:00
|
|
|
$this->pool = new Pool('dev');
|
2011-10-21 12:44:24 +00:00
|
|
|
$this->repo = new ArrayRepository;
|
|
|
|
$this->repoInstalled = new ArrayRepository;
|
|
|
|
|
|
|
|
$this->policy = new DefaultPolicy;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSelectSingle()
|
|
|
|
{
|
2011-11-20 14:06:12 +00:00
|
|
|
$this->repo->addPackage($packageA = $this->getPackage('A', '1.0'));
|
2011-10-21 12:44:24 +00:00
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
2012-05-19 18:38:56 +00:00
|
|
|
$literals = array($packageA->getId());
|
|
|
|
$expected = array($packageA->getId());
|
2011-10-21 12:44:24 +00:00
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals);
|
2011-10-21 12:44:24 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSelectNewest()
|
|
|
|
{
|
2011-11-20 14:06:12 +00:00
|
|
|
$this->repo->addPackage($packageA1 = $this->getPackage('A', '1.0'));
|
|
|
|
$this->repo->addPackage($packageA2 = $this->getPackage('A', '2.0'));
|
2011-10-21 12:44:24 +00:00
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
2012-05-19 18:38:56 +00:00
|
|
|
$literals = array($packageA1->getId(), $packageA2->getId());
|
|
|
|
$expected = array($packageA2->getId());
|
2011-10-21 12:44:24 +00:00
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals);
|
2011-10-21 12:44:24 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
|
|
|
|
2013-03-28 20:02:55 +00:00
|
|
|
public function testSelectNewestPicksLatest()
|
|
|
|
{
|
|
|
|
$this->repo->addPackage($packageA1 = $this->getPackage('A', '1.0.0'));
|
|
|
|
$this->repo->addPackage($packageA2 = $this->getPackage('A', '1.0.1-alpha'));
|
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
|
|
|
$literals = array($packageA1->getId(), $packageA2->getId());
|
|
|
|
$expected = array($packageA2->getId());
|
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals);
|
2013-03-28 20:02:55 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSelectNewestPicksLatestStableWithPreferStable()
|
|
|
|
{
|
|
|
|
$this->repo->addPackage($packageA1 = $this->getPackage('A', '1.0.0'));
|
|
|
|
$this->repo->addPackage($packageA2 = $this->getPackage('A', '1.0.1-alpha'));
|
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
|
|
|
$literals = array($packageA1->getId(), $packageA2->getId());
|
|
|
|
$expected = array($packageA1->getId());
|
|
|
|
|
|
|
|
$policy = new DefaultPolicy(true);
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $policy->selectPreferredPackages($this->pool, array(), $literals);
|
2013-03-28 20:02:55 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
|
|
|
|
2013-05-23 16:12:54 +00:00
|
|
|
public function testSelectNewestWithDevPicksNonDev()
|
|
|
|
{
|
|
|
|
$this->repo->addPackage($packageA1 = $this->getPackage('A', 'dev-foo'));
|
|
|
|
$this->repo->addPackage($packageA2 = $this->getPackage('A', '1.0.0'));
|
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
|
|
|
$literals = array($packageA1->getId(), $packageA2->getId());
|
|
|
|
$expected = array($packageA2->getId());
|
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals);
|
2013-05-23 16:12:54 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
|
|
|
|
2011-10-22 14:44:10 +00:00
|
|
|
public function testSelectNewestOverInstalled()
|
2011-10-21 12:44:24 +00:00
|
|
|
{
|
2011-11-20 14:06:12 +00:00
|
|
|
$this->repo->addPackage($packageA = $this->getPackage('A', '2.0'));
|
|
|
|
$this->repoInstalled->addPackage($packageAInstalled = $this->getPackage('A', '1.0'));
|
2011-10-21 12:44:24 +00:00
|
|
|
$this->pool->addRepository($this->repoInstalled);
|
2011-11-18 23:27:35 +00:00
|
|
|
$this->pool->addRepository($this->repo);
|
2011-10-21 12:44:24 +00:00
|
|
|
|
2012-05-19 18:38:56 +00:00
|
|
|
$literals = array($packageA->getId(), $packageAInstalled->getId());
|
|
|
|
$expected = array($packageA->getId());
|
2011-10-21 12:44:24 +00:00
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, $this->mapFromRepo($this->repoInstalled), $literals);
|
2011-10-21 12:44:24 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
|
|
|
|
2012-03-06 09:11:45 +00:00
|
|
|
public function testSelectFirstRepo()
|
2011-10-21 12:44:24 +00:00
|
|
|
{
|
|
|
|
$this->repoImportant = new ArrayRepository;
|
|
|
|
|
2011-11-20 14:06:12 +00:00
|
|
|
$this->repo->addPackage($packageA = $this->getPackage('A', '1.0'));
|
|
|
|
$this->repoImportant->addPackage($packageAImportant = $this->getPackage('A', '1.0'));
|
2011-10-21 12:44:24 +00:00
|
|
|
|
2011-11-18 23:27:35 +00:00
|
|
|
$this->pool->addRepository($this->repoInstalled);
|
2011-10-21 12:44:24 +00:00
|
|
|
$this->pool->addRepository($this->repoImportant);
|
2012-03-06 09:11:45 +00:00
|
|
|
$this->pool->addRepository($this->repo);
|
2011-10-21 12:44:24 +00:00
|
|
|
|
2012-05-19 18:38:56 +00:00
|
|
|
$literals = array($packageA->getId(), $packageAImportant->getId());
|
|
|
|
$expected = array($packageAImportant->getId());
|
2011-10-21 12:44:24 +00:00
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals);
|
2011-10-21 12:44:24 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
2011-10-21 12:58:31 +00:00
|
|
|
|
2012-04-20 20:10:58 +00:00
|
|
|
public function testSelectLocalReposFirst()
|
|
|
|
{
|
|
|
|
$this->repoImportant = new ArrayRepository;
|
|
|
|
|
|
|
|
$this->repo->addPackage($packageA = $this->getPackage('A', 'dev-master'));
|
|
|
|
$this->repo->addPackage($packageAAlias = new AliasPackage($packageA, '2.1.9999999.9999999-dev', '2.1.x-dev'));
|
|
|
|
$this->repoImportant->addPackage($packageAImportant = $this->getPackage('A', 'dev-feature-a'));
|
|
|
|
$this->repoImportant->addPackage($packageAAliasImportant = new AliasPackage($packageAImportant, '2.1.9999999.9999999-dev', '2.1.x-dev'));
|
|
|
|
$this->repoImportant->addPackage($packageA2Important = $this->getPackage('A', 'dev-master'));
|
|
|
|
$this->repoImportant->addPackage($packageA2AliasImportant = new AliasPackage($packageA2Important, '2.1.9999999.9999999-dev', '2.1.x-dev'));
|
|
|
|
$packageAAliasImportant->setRootPackageAlias(true);
|
|
|
|
|
|
|
|
$this->pool->addRepository($this->repoInstalled);
|
|
|
|
$this->pool->addRepository($this->repoImportant);
|
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
|
|
|
$packages = $this->pool->whatProvides('a', new VersionConstraint('=', '2.1.9999999.9999999-dev'));
|
|
|
|
$literals = array();
|
|
|
|
foreach ($packages as $package) {
|
2012-05-19 18:38:56 +00:00
|
|
|
$literals[] = $package->getId();
|
2012-04-20 20:10:58 +00:00
|
|
|
}
|
|
|
|
|
2012-05-19 18:38:56 +00:00
|
|
|
$expected = array($packageAAliasImportant->getId());
|
2012-04-20 20:10:58 +00:00
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals);
|
2012-04-20 20:10:58 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
|
|
|
|
2011-10-21 12:58:31 +00:00
|
|
|
public function testSelectAllProviders()
|
|
|
|
{
|
2011-11-20 14:06:12 +00:00
|
|
|
$this->repo->addPackage($packageA = $this->getPackage('A', '1.0'));
|
|
|
|
$this->repo->addPackage($packageB = $this->getPackage('B', '2.0'));
|
2011-10-21 12:58:31 +00:00
|
|
|
|
|
|
|
$packageA->setProvides(array(new Link('A', 'X', new VersionConstraint('==', '1.0'), 'provides')));
|
|
|
|
$packageB->setProvides(array(new Link('B', 'X', new VersionConstraint('==', '1.0'), 'provides')));
|
|
|
|
|
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
2012-05-19 18:38:56 +00:00
|
|
|
$literals = array($packageA->getId(), $packageB->getId());
|
2011-10-21 12:58:31 +00:00
|
|
|
$expected = $literals;
|
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals);
|
2011-10-21 12:58:31 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
|
|
|
|
2011-10-22 15:20:45 +00:00
|
|
|
public function testPreferNonReplacingFromSameRepo()
|
2011-10-21 12:58:31 +00:00
|
|
|
{
|
2011-11-20 14:06:12 +00:00
|
|
|
$this->repo->addPackage($packageA = $this->getPackage('A', '1.0'));
|
|
|
|
$this->repo->addPackage($packageB = $this->getPackage('B', '2.0'));
|
2011-10-21 12:58:31 +00:00
|
|
|
|
|
|
|
$packageB->setReplaces(array(new Link('B', 'A', new VersionConstraint('==', '1.0'), 'replaces')));
|
|
|
|
|
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
2012-05-19 18:38:56 +00:00
|
|
|
$literals = array($packageA->getId(), $packageB->getId());
|
|
|
|
$expected = $literals;
|
2011-10-21 12:58:31 +00:00
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals);
|
2011-10-21 12:58:31 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
2011-11-18 23:27:35 +00:00
|
|
|
|
2013-04-17 13:39:42 +00:00
|
|
|
public function testPreferReplacingPackageFromSameVendor()
|
|
|
|
{
|
2013-04-17 15:37:22 +00:00
|
|
|
// test with default order
|
2013-04-17 13:39:42 +00:00
|
|
|
$this->repo->addPackage($packageB = $this->getPackage('vendor-b/replacer', '1.0'));
|
|
|
|
$this->repo->addPackage($packageA = $this->getPackage('vendor-a/replacer', '1.0'));
|
|
|
|
|
|
|
|
$packageA->setReplaces(array(new Link('vendor-a/replacer', 'vendor-a/package', new VersionConstraint('==', '1.0'), 'replaces')));
|
|
|
|
$packageB->setReplaces(array(new Link('vendor-b/replacer', 'vendor-a/package', new VersionConstraint('==', '1.0'), 'replaces')));
|
|
|
|
|
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
|
|
|
$literals = array($packageA->getId(), $packageB->getId());
|
|
|
|
$expected = $literals;
|
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals, 'vendor-a/package');
|
2013-04-17 13:39:42 +00:00
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
|
2013-04-17 15:37:22 +00:00
|
|
|
// test with reversed order in repo
|
|
|
|
$repo = new ArrayRepository;
|
|
|
|
$repo->addPackage($packageA = clone $packageA);
|
|
|
|
$repo->addPackage($packageB = clone $packageB);
|
|
|
|
|
|
|
|
$pool = new Pool('dev');
|
|
|
|
$pool->addRepository($this->repo);
|
|
|
|
|
|
|
|
$literals = array($packageA->getId(), $packageB->getId());
|
|
|
|
$expected = $literals;
|
2013-04-17 13:39:42 +00:00
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $this->policy->selectPreferredPackages($this->pool, array(), $literals, 'vendor-a/package');
|
2013-04-17 13:39:42 +00:00
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
|
|
|
|
2011-11-18 23:27:35 +00:00
|
|
|
protected function mapFromRepo(RepositoryInterface $repo)
|
|
|
|
{
|
|
|
|
$map = array();
|
|
|
|
foreach ($repo->getPackages() as $package) {
|
|
|
|
$map[$package->getId()] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $map;
|
|
|
|
}
|
2014-11-21 13:01:01 +00:00
|
|
|
|
|
|
|
public function testSelectLowest()
|
|
|
|
{
|
|
|
|
$policy = new DefaultPolicy(false, true);
|
|
|
|
|
|
|
|
$this->repo->addPackage($packageA1 = $this->getPackage('A', '1.0'));
|
|
|
|
$this->repo->addPackage($packageA2 = $this->getPackage('A', '2.0'));
|
|
|
|
$this->pool->addRepository($this->repo);
|
|
|
|
|
|
|
|
$literals = array($packageA1->getId(), $packageA2->getId());
|
|
|
|
$expected = array($packageA1->getId());
|
|
|
|
|
2015-03-20 14:23:24 +00:00
|
|
|
$selected = $policy->selectPreferredPackages($this->pool, array(), $literals);
|
2014-11-21 13:01:01 +00:00
|
|
|
|
|
|
|
$this->assertEquals($expected, $selected);
|
|
|
|
}
|
2011-10-21 12:44:24 +00:00
|
|
|
}
|