2011-04-05 15:37:19 +00:00
< ? php
/*
2011-04-16 12:42:35 +00:00
* This file is part of Composer .
2011-04-05 15:37:19 +00:00
*
2011-04-16 12:42:35 +00:00
* ( c ) Nils Adermann < naderman @ naderman . de >
* Jordi Boggiano < j . boggiano @ seld . be >
2011-04-05 15:37:19 +00:00
*
* For the full copyright and license information , please view the LICENSE
* file that was distributed with this source code .
*/
2015-10-13 09:34:02 +00:00
2011-04-05 15:37:19 +00:00
namespace Composer\Test\DependencyResolver ;
2016-03-24 22:19:40 +00:00
use Composer\IO\NullIO ;
2011-05-23 00:18:11 +00:00
use Composer\Repository\ArrayRepository ;
2011-04-05 15:37:19 +00:00
use Composer\DependencyResolver\DefaultPolicy ;
use Composer\DependencyResolver\Pool ;
use Composer\DependencyResolver\Request ;
use Composer\DependencyResolver\Solver ;
2012-02-18 23:15:23 +00:00
use Composer\DependencyResolver\SolverProblemsException ;
2011-05-23 00:18:11 +00:00
use Composer\Package\Link ;
2018-09-12 09:49:09 +00:00
use Composer\Repository\InstalledArrayRepository ;
2018-09-10 13:23:40 +00:00
use Composer\Repository\RepositorySet ;
2018-11-12 14:23:32 +00:00
use Composer\Test\TestCase ;
2015-09-24 14:32:36 +00:00
use Composer\Semver\Constraint\MultiConstraint ;
2011-04-05 15:37:19 +00:00
2011-11-20 14:06:12 +00:00
class SolverTest extends TestCase
2011-04-05 15:37:19 +00:00
{
2018-09-10 13:23:40 +00:00
protected $repoSet ;
2011-08-05 08:08:21 +00:00
protected $repo ;
2018-09-13 13:23:05 +00:00
protected $repoLocked ;
2011-08-05 08:08:21 +00:00
protected $request ;
protected $policy ;
2018-09-12 09:49:09 +00:00
protected $solver ;
2011-08-05 08:08:21 +00:00
public function setUp ()
2011-04-05 15:37:19 +00:00
{
2018-09-11 11:33:29 +00:00
$this -> repoSet = new RepositorySet ( array ());
2011-08-05 08:08:21 +00:00
$this -> repo = new ArrayRepository ;
2018-09-13 13:23:05 +00:00
$this -> repoLocked = new ArrayRepository ;
2011-08-05 08:08:21 +00:00
2019-11-07 20:51:53 +00:00
$this -> request = new Request ( $this -> repoLocked );
2011-08-05 08:08:21 +00:00
$this -> policy = new DefaultPolicy ;
}
public function testSolverInstallSingle ()
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2011-08-05 08:08:21 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> checkSolverResult ( array (
array ( 'job' => 'install' , 'package' => $packageA ),
));
}
2019-11-07 20:51:53 +00:00
public function testSolverRemoveIfNotRequested ()
2012-04-27 16:13:37 +00:00
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2012-04-27 16:13:37 +00:00
$this -> reposComplete ();
$this -> checkSolverResult ( array (
array ( 'job' => 'remove' , 'package' => $packageA ),
));
}
2012-02-19 13:55:14 +00:00
public function testInstallNonExistingPackageFails ()
{
$this -> repo -> addPackage ( $this -> getPackage ( 'A' , '1.0' ));
$this -> reposComplete ();
2012-06-20 17:04:21 +00:00
$this -> request -> install ( 'B' , $this -> getVersionConstraint ( '==' , '1' ));
2012-02-19 13:55:14 +00:00
2018-09-12 09:49:09 +00:00
$this -> createSolver ();
2012-02-19 13:55:14 +00:00
try {
$transaction = $this -> solver -> solve ( $this -> request );
2012-03-18 19:41:10 +00:00
$this -> fail ( 'Unsolvable conflict did not result in exception.' );
2012-02-19 13:55:14 +00:00
} catch ( SolverProblemsException $e ) {
2012-03-18 19:41:10 +00:00
$problems = $e -> getProblems ();
2017-11-30 14:58:10 +00:00
$this -> assertCount ( 1 , $problems );
2013-04-25 09:26:34 +00:00
$this -> assertEquals ( 2 , $e -> getCode ());
2012-10-31 17:34:27 +00:00
$this -> assertEquals ( " \n - The requested package b could not be found in any version, there may be a typo in the package name. " , $problems [ 0 ] -> getPrettyString ());
2012-02-19 13:55:14 +00:00
}
}
2012-03-06 09:11:45 +00:00
public function testSolverInstallSamePackageFromDifferentRepositories ()
{
$repo1 = new ArrayRepository ;
$repo2 = new ArrayRepository ;
$repo1 -> addPackage ( $foo1 = $this -> getPackage ( 'foo' , '1' ));
$repo2 -> addPackage ( $foo2 = $this -> getPackage ( 'foo' , '1' ));
2018-09-10 13:23:40 +00:00
$this -> repoSet -> addRepository ( $repo1 );
$this -> repoSet -> addRepository ( $repo2 );
2012-03-06 09:11:45 +00:00
$this -> request -> install ( 'foo' );
$this -> checkSolverResult ( array (
array ( 'job' => 'install' , 'package' => $foo1 ),
));
}
2011-08-05 08:08:21 +00:00
public function testSolverInstallWithDeps ()
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
$this -> repo -> addPackage ( $newPackageB = $this -> getPackage ( 'B' , '1.1' ));
2011-04-05 15:37:19 +00:00
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '<' , '1.1' ), 'requires' )));
2011-04-05 15:37:19 +00:00
2011-08-05 08:08:21 +00:00
$this -> reposComplete ();
2011-04-05 15:37:19 +00:00
2011-08-05 08:08:21 +00:00
$this -> request -> install ( 'A' );
2011-04-05 15:37:19 +00:00
2011-08-05 08:08:21 +00:00
$this -> checkSolverResult ( array (
array ( 'job' => 'install' , 'package' => $packageB ),
array ( 'job' => 'install' , 'package' => $packageA ),
));
}
2011-04-05 15:37:19 +00:00
2012-06-19 01:08:36 +00:00
public function testSolverInstallHonoursNotEqualOperator ()
{
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
$this -> repo -> addPackage ( $newPackageB11 = $this -> getPackage ( 'B' , '1.1' ));
$this -> repo -> addPackage ( $newPackageB12 = $this -> getPackage ( 'B' , '1.2' ));
$this -> repo -> addPackage ( $newPackageB13 = $this -> getPackage ( 'B' , '1.3' ));
$packageA -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'b' => new Link ( 'A' , 'B' , new MultiConstraint ( array (
$this -> getVersionConstraint ( '<=' , '1.3' ),
$this -> getVersionConstraint ( '<>' , '1.3' ),
$this -> getVersionConstraint ( '!=' , '1.2' ),
)), 'requires' ),
2012-06-19 01:08:36 +00:00
));
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> checkSolverResult ( array (
array ( 'job' => 'install' , 'package' => $newPackageB11 ),
array ( 'job' => 'install' , 'package' => $packageA ),
));
}
2012-06-04 21:30:55 +00:00
public function testSolverInstallWithDepsInOrder ()
{
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
$this -> repo -> addPackage ( $packageC = $this -> getPackage ( 'C' , '1.0' ));
$packageB -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'a' => new Link ( 'B' , 'A' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
'c' => new Link ( 'B' , 'C' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
2012-06-04 21:30:55 +00:00
));
$packageC -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'a' => new Link ( 'C' , 'A' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
2012-06-04 21:30:55 +00:00
));
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> request -> install ( 'B' );
$this -> request -> install ( 'C' );
$this -> checkSolverResult ( array (
2019-11-08 14:56:46 +00:00
array ( 'job' => 'install' , 'package' => $packageA ),
2012-06-04 21:30:55 +00:00
array ( 'job' => 'install' , 'package' => $packageC ),
array ( 'job' => 'install' , 'package' => $packageB ),
));
}
2019-11-07 20:51:53 +00:00
public function testSolverFixLocked ()
2011-08-20 22:19:47 +00:00
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2011-08-20 22:19:47 +00:00
$this -> reposComplete ();
2019-11-07 20:51:53 +00:00
$this -> request -> fixPackage ( $packageA );
2011-08-20 22:19:47 +00:00
$this -> checkSolverResult ( array ());
}
2019-11-07 20:51:53 +00:00
public function testSolverFixLockedWithAlternative ()
2011-08-05 08:08:21 +00:00
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $this -> getPackage ( 'A' , '1.0' ));
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2011-08-05 08:08:21 +00:00
$this -> reposComplete ();
2019-11-07 20:51:53 +00:00
$this -> request -> fixPackage ( $packageA );
2011-08-05 08:08:21 +00:00
$this -> checkSolverResult ( array ());
}
public function testSolverRemoveSingle ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2011-08-05 08:08:21 +00:00
$this -> reposComplete ();
$this -> request -> remove ( 'A' );
$this -> checkSolverResult ( array (
array ( 'job' => 'remove' , 'package' => $packageA ),
));
}
public function testSolverRemoveUninstalled ()
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $this -> getPackage ( 'A' , '1.0' ));
2011-08-05 08:08:21 +00:00
$this -> reposComplete ();
$this -> request -> remove ( 'A' );
$this -> checkSolverResult ( array ());
}
2012-01-15 13:15:53 +00:00
public function testSolverUpdateDoesOnlyUpdate ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repoLocked -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
2012-01-15 13:15:53 +00:00
$this -> repo -> addPackage ( $newPackageB = $this -> getPackage ( 'B' , '1.1' ));
$this -> reposComplete ();
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0.0.0' ), 'requires' )));
2012-01-15 13:15:53 +00:00
2019-11-07 20:51:53 +00:00
$this -> request -> fixPackage ( $packageA );
2012-02-19 14:55:44 +00:00
$this -> request -> install ( 'B' , $this -> getVersionConstraint ( '=' , '1.1.0.0' ));
2012-01-15 13:15:53 +00:00
$this -> checkSolverResult ( array (
array ( 'job' => 'update' , 'from' => $packageB , 'to' => $newPackageB ),
));
}
2011-08-05 08:08:21 +00:00
public function testSolverUpdateSingle ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $newPackageA = $this -> getPackage ( 'A' , '1.1' ));
2011-08-05 08:08:21 +00:00
$this -> reposComplete ();
2012-04-27 16:13:37 +00:00
$this -> request -> install ( 'A' );
2011-08-05 08:08:21 +00:00
$this -> checkSolverResult ( array (
2011-08-20 22:38:31 +00:00
array ( 'job' => 'update' , 'from' => $packageA , 'to' => $newPackageA ),
2011-08-05 08:08:21 +00:00
));
}
2012-02-19 15:59:04 +00:00
public function testSolverUpdateAll ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repoLocked -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
2012-02-19 15:59:04 +00:00
$this -> repo -> addPackage ( $newPackageA = $this -> getPackage ( 'A' , '1.1' ));
$this -> repo -> addPackage ( $newPackageB = $this -> getPackage ( 'B' , '1.1' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , null , 'requires' )));
$newPackageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , null , 'requires' )));
2012-02-19 15:59:04 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> checkSolverResult ( array (
array ( 'job' => 'update' , 'from' => $packageB , 'to' => $newPackageB ),
array ( 'job' => 'update' , 'from' => $packageA , 'to' => $newPackageA ),
));
}
2011-08-05 08:08:21 +00:00
public function testSolverUpdateCurrent ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $this -> getPackage ( 'A' , '1.0' ));
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $this -> getPackage ( 'A' , '1.0' ));
2011-08-05 08:08:21 +00:00
$this -> reposComplete ();
2012-04-27 16:13:37 +00:00
$this -> request -> install ( 'A' );
2011-08-05 08:08:21 +00:00
$this -> checkSolverResult ( array ());
}
2012-02-18 15:55:45 +00:00
public function testSolverUpdateOnlyUpdatesSelectedPackage ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repoLocked -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
2012-02-18 15:55:45 +00:00
$this -> repo -> addPackage ( $packageAnewer = $this -> getPackage ( 'A' , '1.1' ));
$this -> repo -> addPackage ( $packageBnewer = $this -> getPackage ( 'B' , '1.1' ));
$this -> reposComplete ();
2012-04-27 16:13:37 +00:00
$this -> request -> install ( 'A' );
2019-11-07 20:51:53 +00:00
$this -> request -> fixPackage ( $packageB );
2012-02-18 15:55:45 +00:00
$this -> checkSolverResult ( array (
array ( 'job' => 'update' , 'from' => $packageA , 'to' => $packageAnewer ),
));
}
2011-12-24 13:15:10 +00:00
public function testSolverUpdateConstrained ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2011-12-24 13:15:10 +00:00
$this -> repo -> addPackage ( $newPackageA = $this -> getPackage ( 'A' , '1.2' ));
$this -> repo -> addPackage ( $this -> getPackage ( 'A' , '2.0' ));
$this -> reposComplete ();
2012-02-19 14:55:44 +00:00
$this -> request -> install ( 'A' , $this -> getVersionConstraint ( '<' , '2.0.0.0' ));
2011-12-24 13:15:10 +00:00
$this -> checkSolverResult ( array ( array (
'job' => 'update' ,
'from' => $packageA ,
'to' => $newPackageA ,
)));
}
public function testSolverUpdateFullyConstrained ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2011-12-24 13:15:10 +00:00
$this -> repo -> addPackage ( $newPackageA = $this -> getPackage ( 'A' , '1.2' ));
$this -> repo -> addPackage ( $this -> getPackage ( 'A' , '2.0' ));
$this -> reposComplete ();
2012-02-19 14:55:44 +00:00
$this -> request -> install ( 'A' , $this -> getVersionConstraint ( '<' , '2.0.0.0' ));
2012-02-18 15:55:45 +00:00
$this -> checkSolverResult ( array ( array (
'job' => 'update' ,
'from' => $packageA ,
'to' => $newPackageA ,
)));
}
public function testSolverUpdateFullyConstrainedPrunesInstalledPackages ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repoLocked -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
2012-02-18 15:55:45 +00:00
$this -> repo -> addPackage ( $newPackageA = $this -> getPackage ( 'A' , '1.2' ));
$this -> repo -> addPackage ( $this -> getPackage ( 'A' , '2.0' ));
$this -> reposComplete ();
2012-02-19 14:55:44 +00:00
$this -> request -> install ( 'A' , $this -> getVersionConstraint ( '<' , '2.0.0.0' ));
2011-12-24 13:15:10 +00:00
2012-04-27 16:13:37 +00:00
$this -> checkSolverResult ( array (
2019-11-08 14:56:46 +00:00
array (
'job' => 'remove' ,
'package' => $packageB ,
),
2012-04-27 16:13:37 +00:00
array (
'job' => 'update' ,
'from' => $packageA ,
'to' => $newPackageA ,
2012-06-04 21:19:32 +00:00
),
));
2011-12-24 13:15:10 +00:00
}
2011-08-21 10:30:06 +00:00
public function testSolverAllJobs ()
2011-08-05 08:08:21 +00:00
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageD = $this -> getPackage ( 'D' , '1.0' ));
$this -> repoLocked -> addPackage ( $oldPackageC = $this -> getPackage ( 'C' , '1.0' ));
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '2.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
$this -> repo -> addPackage ( $newPackageB = $this -> getPackage ( 'B' , '1.1' ));
$this -> repo -> addPackage ( $packageC = $this -> getPackage ( 'C' , '1.1' ));
$this -> repo -> addPackage ( $this -> getPackage ( 'D' , '1.0' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '<' , '1.1' ), 'requires' )));
2011-08-05 08:08:21 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
2012-04-27 16:13:37 +00:00
$this -> request -> install ( 'C' );
2011-08-05 08:08:21 +00:00
$this -> request -> remove ( 'D' );
$this -> checkSolverResult ( array (
2019-11-08 14:56:46 +00:00
array ( 'job' => 'remove' , 'package' => $packageD ),
2011-08-05 08:08:21 +00:00
array ( 'job' => 'install' , 'package' => $packageB ),
2011-08-20 22:38:31 +00:00
array ( 'job' => 'install' , 'package' => $packageA ),
2019-11-08 14:56:46 +00:00
array ( 'job' => 'update' , 'from' => $oldPackageC , 'to' => $packageC ),
2011-08-05 08:08:21 +00:00
));
}
2011-08-21 10:30:06 +00:00
public function testSolverThreeAlternativeRequireAndConflict ()
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '2.0' ));
$this -> repo -> addPackage ( $middlePackageB = $this -> getPackage ( 'B' , '1.0' ));
$this -> repo -> addPackage ( $newPackageB = $this -> getPackage ( 'B' , '1.1' ));
$this -> repo -> addPackage ( $oldPackageB = $this -> getPackage ( 'B' , '0.9' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '<' , '1.1' ), 'requires' )));
$packageA -> setConflicts ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '<' , '1.0' ), 'conflicts' )));
2011-08-21 10:30:06 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> checkSolverResult ( array (
array ( 'job' => 'install' , 'package' => $middlePackageB ),
array ( 'job' => 'install' , 'package' => $packageA ),
));
}
2011-08-21 11:08:34 +00:00
public function testSolverObsolete ()
{
2019-11-07 20:51:53 +00:00
$this -> repoLocked -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
2013-08-12 16:37:34 +00:00
$packageB -> setReplaces ( array ( 'a' => new Link ( 'B' , 'A' , new MultiConstraint ( array ()))));
2011-08-21 11:08:34 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'B' );
$this -> checkSolverResult ( array (
2019-11-08 14:56:46 +00:00
array ( 'job' => 'remove' , 'package' => $packageA ),
array ( 'job' => 'install' , 'package' => $packageB ),
2011-08-21 11:08:34 +00:00
));
}
2011-08-21 03:05:11 +00:00
public function testInstallOneOfTwoAlternatives ()
2011-08-05 08:17:07 +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 ( 'A' , '1.0' ));
2011-08-21 03:05:11 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> checkSolverResult ( array (
2011-10-22 15:20:45 +00:00
array ( 'job' => 'install' , 'package' => $packageA ),
2011-08-21 03:05:11 +00:00
));
}
2011-08-05 08:17:07 +00:00
2011-09-09 08:28:50 +00:00
public function testInstallProvider ()
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageQ = $this -> getPackage ( 'Q' , '1.0' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' )));
$packageQ -> setProvides ( array ( 'b' => new Link ( 'Q' , 'B' , $this -> getVersionConstraint ( '=' , '1.0' ), 'provides' )));
2011-09-09 08:28:50 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
2014-02-21 11:25:15 +00:00
// must explicitly pick the provider, so error in this case
$this -> setExpectedException ( 'Composer\DependencyResolver\SolverProblemsException' );
2018-09-12 09:49:09 +00:00
$this -> createSolver ();
2014-02-21 11:25:15 +00:00
$this -> solver -> solve ( $this -> request );
2011-10-15 18:03:55 +00:00
}
public function testSkipReplacerOfExistingPackage ()
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageQ = $this -> getPackage ( 'Q' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' )));
$packageQ -> setReplaces ( array ( 'b' => new Link ( 'Q' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'replaces' )));
2011-10-15 18:03:55 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> checkSolverResult ( array (
array ( 'job' => 'install' , 'package' => $packageB ),
array ( 'job' => 'install' , 'package' => $packageA ),
));
}
2014-02-21 12:41:21 +00:00
public function testNoInstallReplacerOfMissingPackage ()
2011-10-15 18:03:55 +00:00
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageQ = $this -> getPackage ( 'Q' , '1.0' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' )));
$packageQ -> setReplaces ( array ( 'b' => new Link ( 'Q' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'replaces' )));
2011-10-15 18:03:55 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
2014-02-21 12:41:21 +00:00
$this -> setExpectedException ( 'Composer\DependencyResolver\SolverProblemsException' );
2018-09-12 09:49:09 +00:00
$this -> createSolver ();
2014-02-21 12:41:21 +00:00
$this -> solver -> solve ( $this -> request );
2011-10-15 18:03:55 +00:00
}
public function testSkipReplacedPackageIfReplacerIsSelected ()
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageQ = $this -> getPackage ( 'Q' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' )));
$packageQ -> setReplaces ( array ( 'b' => new Link ( 'Q' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'replaces' )));
2011-10-15 18:03:55 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> request -> install ( 'Q' );
$this -> checkSolverResult ( array (
2011-09-09 08:28:50 +00:00
array ( 'job' => 'install' , 'package' => $packageQ ),
array ( 'job' => 'install' , 'package' => $packageA ),
));
}
2011-11-25 22:32:24 +00:00
public function testPickOlderIfNewerConflicts ()
{
$this -> repo -> addPackage ( $packageX = $this -> getPackage ( 'X' , '1.0' ));
$packageX -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'a' => new Link ( 'X' , 'A' , $this -> getVersionConstraint ( '>=' , '2.0.0.0' ), 'requires' ),
2015-09-28 09:51:14 +00:00
'b' => new Link ( 'X' , 'B' , $this -> getVersionConstraint ( '>=' , '2.0.0.0' ), 'requires' ),
2012-10-14 14:35:32 +00:00
));
2011-11-25 22:32:24 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '2.0.0' ));
$this -> repo -> addPackage ( $newPackageA = $this -> getPackage ( 'A' , '2.1.0' ));
$this -> repo -> addPackage ( $newPackageB = $this -> getPackage ( 'B' , '2.1.0' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '2.0.0.0' ), 'requires' )));
2011-11-25 22:32:24 +00:00
// new package A depends on version of package B that does not exist
// => new package A is not installable
2012-10-14 14:35:32 +00:00
$newPackageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '2.2.0.0' ), 'requires' )));
2011-11-25 22:32:24 +00:00
// add a package S replacing both A and B, so that S and B or S and A cannot be simultaneously installed
// but an alternative option for A and B both exists
// this creates a more difficult so solve conflict
$this -> repo -> addPackage ( $packageS = $this -> getPackage ( 'S' , '2.0.0' ));
2012-10-14 14:35:32 +00:00
$packageS -> setReplaces ( array (
'a' => new Link ( 'S' , 'A' , $this -> getVersionConstraint ( '>=' , '2.0.0.0' ), 'replaces' ),
2015-09-28 09:51:14 +00:00
'b' => new Link ( 'S' , 'B' , $this -> getVersionConstraint ( '>=' , '2.0.0.0' ), 'replaces' ),
2012-10-14 14:35:32 +00:00
));
2011-11-25 22:32:24 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'X' );
$this -> checkSolverResult ( array (
2019-11-07 20:51:53 +00:00
array ( 'job' => 'install' , 'package' => $newPackageB ),
2019-11-08 14:56:46 +00:00
array ( 'job' => 'install' , 'package' => $packageA ),
2011-11-25 22:32:24 +00:00
array ( 'job' => 'install' , 'package' => $packageX ),
));
}
2011-09-09 08:28:50 +00:00
public function testInstallCircularRequire ()
{
2011-11-20 14:06:12 +00:00
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageB1 = $this -> getPackage ( 'B' , '0.9' ));
$this -> repo -> addPackage ( $packageB2 = $this -> getPackage ( 'B' , '1.1' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' )));
$packageB2 -> setRequires ( array ( 'a' => new Link ( 'B' , 'A' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' )));
2011-09-09 08:28:50 +00:00
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> checkSolverResult ( array (
array ( 'job' => 'install' , 'package' => $packageB2 ),
array ( 'job' => 'install' , 'package' => $packageA ),
));
}
2011-09-25 21:50:54 +00:00
public function testInstallAlternativeWithCircularRequire ()
2011-09-09 08:28:50 +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' , '1.0' ));
$this -> repo -> addPackage ( $packageC = $this -> getPackage ( 'C' , '1.0' ));
$this -> repo -> addPackage ( $packageD = $this -> getPackage ( 'D' , '1.0' ));
2012-10-14 14:35:32 +00:00
$packageA -> setRequires ( array ( 'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' )));
$packageB -> setRequires ( array ( 'virtual' => new Link ( 'B' , 'Virtual' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' )));
$packageC -> setProvides ( array ( 'virtual' => new Link ( 'C' , 'Virtual' , $this -> getVersionConstraint ( '==' , '1.0' ), 'provides' )));
$packageD -> setProvides ( array ( 'virtual' => new Link ( 'D' , 'Virtual' , $this -> getVersionConstraint ( '==' , '1.0' ), 'provides' )));
2012-02-19 19:08:15 +00:00
2012-10-14 14:35:32 +00:00
$packageC -> setRequires ( array ( 'a' => new Link ( 'C' , 'A' , $this -> getVersionConstraint ( '==' , '1.0' ), 'requires' )));
$packageD -> setRequires ( array ( 'a' => new Link ( 'D' , 'A' , $this -> getVersionConstraint ( '==' , '1.0' ), 'requires' )));
2011-09-09 08:28:50 +00:00
$this -> reposComplete ();
2011-09-25 21:50:54 +00:00
$this -> request -> install ( 'A' );
2014-02-21 11:25:15 +00:00
$this -> request -> install ( 'C' );
2011-09-09 08:28:50 +00:00
$this -> checkSolverResult ( array (
2014-02-21 11:25:15 +00:00
array ( 'job' => 'install' , 'package' => $packageB ),
2019-11-07 20:51:53 +00:00
array ( 'job' => 'install' , 'package' => $packageA ),
2019-11-08 14:56:46 +00:00
array ( 'job' => 'install' , 'package' => $packageC ),
2012-02-18 11:33:55 +00:00
));
}
/**
2012-02-18 11:37:45 +00:00
* If a replacer D replaces B and C with C not otherwise available ,
* D must be installed instead of the original B .
*/
2012-02-18 11:33:55 +00:00
public function testUseReplacerIfNecessary ()
{
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
$this -> repo -> addPackage ( $packageD = $this -> getPackage ( 'D' , '1.0' ));
$this -> repo -> addPackage ( $packageD2 = $this -> getPackage ( 'D' , '1.1' ));
$packageA -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
'c' => new Link ( 'A' , 'C' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
2012-02-18 11:33:55 +00:00
));
$packageD -> setReplaces ( array (
2012-10-14 14:35:32 +00:00
'b' => new Link ( 'D' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'replaces' ),
'c' => new Link ( 'D' , 'C' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'replaces' ),
2012-02-18 11:33:55 +00:00
));
$packageD2 -> setReplaces ( array (
2012-10-14 14:35:32 +00:00
'b' => new Link ( 'D' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'replaces' ),
'c' => new Link ( 'D' , 'C' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'replaces' ),
2012-02-18 11:33:55 +00:00
));
$this -> reposComplete ();
$this -> request -> install ( 'A' );
2014-02-21 12:41:21 +00:00
$this -> request -> install ( 'D' );
2012-02-18 11:33:55 +00:00
$this -> checkSolverResult ( array (
array ( 'job' => 'install' , 'package' => $packageD2 ),
array ( 'job' => 'install' , 'package' => $packageA ),
2011-09-09 08:28:50 +00:00
));
2011-09-25 21:50:54 +00:00
}
2011-09-09 08:28:50 +00:00
2012-02-19 14:35:13 +00:00
public function testIssue265 ()
{
$this -> repo -> addPackage ( $packageA1 = $this -> getPackage ( 'A' , '2.0.999999-dev' ));
$this -> repo -> addPackage ( $packageA2 = $this -> getPackage ( 'A' , '2.1-dev' ));
$this -> repo -> addPackage ( $packageA3 = $this -> getPackage ( 'A' , '2.2-dev' ));
$this -> repo -> addPackage ( $packageB1 = $this -> getPackage ( 'B' , '2.0.10' ));
$this -> repo -> addPackage ( $packageB2 = $this -> getPackage ( 'B' , '2.0.9' ));
$this -> repo -> addPackage ( $packageC = $this -> getPackage ( 'C' , '2.0-dev' ));
$this -> repo -> addPackage ( $packageD = $this -> getPackage ( 'D' , '2.0.9' ));
$packageC -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'a' => new Link ( 'C' , 'A' , $this -> getVersionConstraint ( '>=' , '2.0' ), 'requires' ),
'd' => new Link ( 'C' , 'D' , $this -> getVersionConstraint ( '>=' , '2.0' ), 'requires' ),
2012-02-19 14:35:13 +00:00
));
$packageD -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'a' => new Link ( 'D' , 'A' , $this -> getVersionConstraint ( '>=' , '2.1' ), 'requires' ),
'b' => new Link ( 'D' , 'B' , $this -> getVersionConstraint ( '>=' , '2.0-dev' ), 'requires' ),
2012-02-19 14:35:13 +00:00
));
2012-10-14 14:35:32 +00:00
$packageB1 -> setRequires ( array ( 'a' => new Link ( 'B' , 'A' , $this -> getVersionConstraint ( '==' , '2.1.0.0-dev' ), 'requires' )));
$packageB2 -> setRequires ( array ( 'a' => new Link ( 'B' , 'A' , $this -> getVersionConstraint ( '==' , '2.1.0.0-dev' ), 'requires' )));
2012-02-19 14:35:13 +00:00
2012-10-14 14:35:32 +00:00
$packageB2 -> setReplaces ( array ( 'd' => new Link ( 'B' , 'D' , $this -> getVersionConstraint ( '==' , '2.0.9.0' ), 'replaces' )));
2012-02-19 14:35:13 +00:00
$this -> reposComplete ();
2012-02-19 14:55:44 +00:00
$this -> request -> install ( 'C' , $this -> getVersionConstraint ( '==' , '2.0.0.0-dev' ));
2012-02-19 14:35:13 +00:00
$this -> setExpectedException ( 'Composer\DependencyResolver\SolverProblemsException' );
2018-09-12 09:49:09 +00:00
$this -> createSolver ();
2012-02-19 14:35:13 +00:00
$this -> solver -> solve ( $this -> request );
}
2012-02-18 23:15:23 +00:00
public function testConflictResultEmpty ()
{
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
2014-10-17 17:46:01 +00:00
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
2012-02-18 23:15:23 +00:00
$packageA -> setConflicts ( array (
2012-10-14 14:35:32 +00:00
'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'conflicts' ),
2012-02-18 23:15:23 +00:00
));
$this -> reposComplete ();
$this -> request -> install ( 'A' );
$this -> request -> install ( 'B' );
2018-09-12 09:49:09 +00:00
$this -> createSolver ();
2012-02-18 23:15:23 +00:00
try {
$transaction = $this -> solver -> solve ( $this -> request );
2012-03-18 19:41:10 +00:00
$this -> fail ( 'Unsolvable conflict did not result in exception.' );
2012-02-18 23:15:23 +00:00
} catch ( SolverProblemsException $e ) {
2012-03-18 19:41:10 +00:00
$problems = $e -> getProblems ();
2017-11-30 14:58:10 +00:00
$this -> assertCount ( 1 , $problems );
2012-06-20 17:04:21 +00:00
$msg = " \n " ;
$msg .= " Problem 1 \n " ;
2013-04-26 22:31:22 +00:00
$msg .= " - Installation request for a -> satisfiable by A[1.0]. \n " ;
$msg .= " - B 1.0 conflicts with A[1.0]. \n " ;
$msg .= " - Installation request for b -> satisfiable by B[1.0]. \n " ;
2012-06-20 17:04:21 +00:00
$this -> assertEquals ( $msg , $e -> getMessage ());
2012-02-18 23:15:23 +00:00
}
}
public function testUnsatisfiableRequires ()
{
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
$packageA -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '2.0' ), 'requires' ),
2012-02-18 23:15:23 +00:00
));
$this -> reposComplete ();
$this -> request -> install ( 'A' );
2018-09-12 09:49:09 +00:00
$this -> createSolver ();
2012-02-18 23:15:23 +00:00
try {
$transaction = $this -> solver -> solve ( $this -> request );
2012-03-18 19:41:10 +00:00
$this -> fail ( 'Unsolvable conflict did not result in exception.' );
2012-02-18 23:15:23 +00:00
} catch ( SolverProblemsException $e ) {
2012-03-18 19:41:10 +00:00
$problems = $e -> getProblems ();
2017-11-30 14:58:10 +00:00
$this -> assertCount ( 1 , $problems );
2012-02-19 14:30:53 +00:00
// TODO assert problem properties
2012-06-20 17:04:21 +00:00
$msg = " \n " ;
$msg .= " Problem 1 \n " ;
2013-04-26 22:31:22 +00:00
$msg .= " - Installation request for a -> satisfiable by A[1.0]. \n " ;
2012-07-04 13:57:51 +00:00
$msg .= " - A 1.0 requires b >= 2.0 -> no matching package found. \n \n " ;
$msg .= " Potential causes: \n " ;
$msg .= " - A typo in the package name \n " ;
$msg .= " - The package is not available in a stable-enough version according to your minimum-stability setting \n " ;
2017-11-16 11:41:41 +00:00
$msg .= " see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details. \n " ;
$msg .= " - It's a private package and you forgot to add a custom repository to find it \n \n " ;
2015-05-04 17:37:57 +00:00
$msg .= " Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems. " ;
2012-06-20 17:04:21 +00:00
$this -> assertEquals ( $msg , $e -> getMessage ());
}
}
public function testRequireMismatchException ()
{
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
$this -> repo -> addPackage ( $packageB2 = $this -> getPackage ( 'B' , '0.9' ));
$this -> repo -> addPackage ( $packageC = $this -> getPackage ( 'C' , '1.0' ));
$this -> repo -> addPackage ( $packageD = $this -> getPackage ( 'D' , '1.0' ));
$packageA -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
2012-06-20 17:04:21 +00:00
));
$packageB -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'c' => new Link ( 'B' , 'C' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
2012-06-20 17:04:21 +00:00
));
$packageC -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'd' => new Link ( 'C' , 'D' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
2012-06-20 17:04:21 +00:00
));
$packageD -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'b' => new Link ( 'D' , 'B' , $this -> getVersionConstraint ( '<' , '1.0' ), 'requires' ),
2012-06-20 17:04:21 +00:00
));
$this -> reposComplete ();
$this -> request -> install ( 'A' );
2018-09-12 09:49:09 +00:00
$this -> createSolver ();
2012-06-20 17:04:21 +00:00
try {
$transaction = $this -> solver -> solve ( $this -> request );
$this -> fail ( 'Unsolvable conflict did not result in exception.' );
} catch ( SolverProblemsException $e ) {
$problems = $e -> getProblems ();
2017-11-30 14:58:10 +00:00
$this -> assertCount ( 1 , $problems );
2012-06-20 17:04:21 +00:00
$msg = " \n " ;
$msg .= " Problem 1 \n " ;
2013-04-26 22:31:22 +00:00
$msg .= " - C 1.0 requires d >= 1.0 -> satisfiable by D[1.0]. \n " ;
$msg .= " - D 1.0 requires b < 1.0 -> satisfiable by B[0.9]. \n " ;
$msg .= " - B 1.0 requires c >= 1.0 -> satisfiable by C[1.0]. \n " ;
2019-11-07 20:51:53 +00:00
$msg .= " - Same name, can only install one of: B[0.9, 1.0]. \n " ;
2013-04-26 22:31:22 +00:00
$msg .= " - A 1.0 requires b >= 1.0 -> satisfiable by B[1.0]. \n " ;
$msg .= " - Installation request for a -> satisfiable by A[1.0]. \n " ;
2012-06-20 17:04:21 +00:00
$this -> assertEquals ( $msg , $e -> getMessage ());
2012-02-18 23:15:23 +00:00
}
}
2012-04-01 20:26:10 +00:00
public function testLearnLiteralsWithSortedRuleLiterals ()
{
$this -> repo -> addPackage ( $packageTwig2 = $this -> getPackage ( 'twig/twig' , '2.0' ));
$this -> repo -> addPackage ( $packageTwig16 = $this -> getPackage ( 'twig/twig' , '1.6' ));
$this -> repo -> addPackage ( $packageTwig15 = $this -> getPackage ( 'twig/twig' , '1.5' ));
$this -> repo -> addPackage ( $packageSymfony = $this -> getPackage ( 'symfony/symfony' , '2.0' ));
$this -> repo -> addPackage ( $packageTwigBridge = $this -> getPackage ( 'symfony/twig-bridge' , '2.0' ));
$packageTwigBridge -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'twig/twig' => new Link ( 'symfony/twig-bridge' , 'twig/twig' , $this -> getVersionConstraint ( '<' , '2.0' ), 'requires' ),
2012-04-01 20:26:10 +00:00
));
$packageSymfony -> setReplaces ( array (
2012-10-14 14:35:32 +00:00
'symfony/twig-bridge' => new Link ( 'symfony/symfony' , 'symfony/twig-bridge' , $this -> getVersionConstraint ( '==' , '2.0' ), 'replaces' ),
2012-04-01 20:26:10 +00:00
));
$this -> reposComplete ();
$this -> request -> install ( 'symfony/twig-bridge' );
$this -> request -> install ( 'twig/twig' );
$this -> checkSolverResult ( array (
array ( 'job' => 'install' , 'package' => $packageTwig16 ),
array ( 'job' => 'install' , 'package' => $packageTwigBridge ),
));
}
2012-04-27 17:41:53 +00:00
public function testInstallRecursiveAliasDependencies ()
{
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '2.0' ));
$this -> repo -> addPackage ( $packageA2 = $this -> getPackage ( 'A' , '2.0' ));
$packageA2 -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '==' , '2.0' ), 'requires' , '== 2.0' ),
2012-04-27 17:41:53 +00:00
));
$packageB -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'a' => new Link ( 'B' , 'A' , $this -> getVersionConstraint ( '>=' , '2.0' ), 'requires' ),
2012-04-27 17:41:53 +00:00
));
$this -> repo -> addPackage ( $packageA2Alias = $this -> getAliasPackage ( $packageA2 , '1.1' ));
$this -> reposComplete ();
$this -> request -> install ( 'A' , $this -> getVersionConstraint ( '==' , '1.1.0.0' ));
$this -> checkSolverResult ( array (
2012-06-04 23:05:41 +00:00
array ( 'job' => 'install' , 'package' => $packageB ),
2019-11-07 20:51:53 +00:00
array ( 'job' => 'install' , 'package' => $packageA2 ),
2012-04-27 17:41:53 +00:00
array ( 'job' => 'install' , 'package' => $packageA2Alias ),
));
}
public function testInstallDevAlias ()
{
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '2.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
$packageB -> setRequires ( array (
2012-10-14 14:35:32 +00:00
'a' => new Link ( 'B' , 'A' , $this -> getVersionConstraint ( '<' , '2.0' ), 'requires' ),
2012-04-27 17:41:53 +00:00
));
$this -> repo -> addPackage ( $packageAAlias = $this -> getAliasPackage ( $packageA , '1.1' ));
$this -> reposComplete ();
$this -> request -> install ( 'A' , $this -> getVersionConstraint ( '==' , '2.0' ));
$this -> request -> install ( 'B' );
$this -> checkSolverResult ( array (
2019-11-08 14:56:46 +00:00
array ( 'job' => 'install' , 'package' => $packageA ),
2012-04-27 17:41:53 +00:00
array ( 'job' => 'install' , 'package' => $packageAAlias ),
array ( 'job' => 'install' , 'package' => $packageB ),
));
}
Fix solver problem exceptions with unexpected contradictory "Conclusions"
This 5 character fix comes with a solver test as well as a functional
installer test essentially verifying the same thing. The solver test is
more useful when working on the solver. But the functional test is less
likely to be accidentally modified incorrectly during refactoring, as
every single package, version and link in the rather complex test
scenario is essential, and a modified version of the test may very well
still result in a successful installation but no longer verify the bug
described below.
Background:
In commit 451bab1c2cd58e05af6e21639b829408ad023463 from May 19, 2012 I
refactored literals from complex objects into pure integers to reduce
memory consumption. The absolute value of an integer literal is the id
of the package it refers to in the package pool. The sign indicates
whether the package should be installed (positive) or removed (negative),
So a major part of the refactoring was swapping this call:
$literal->getPackageId()
For this:
abs($literal)
Unintentionally in line 554/523 I incorrectly applied this change to the
line:
$this->literalFromId(-$literal->getPackageId());
It was converted to:
-abs($literal);
The function literalFromId used to create a new literal object. By using
the abs() function this change essentially forces the resulting literal
to be negative, while the minus sign previously inverted the literal, so
positive into negative and vice versa.
This particular line is in a function meant to analyze a conflicting
decision during dependency resolution and to draw a conclusion from it,
then revert the state of the solver to an earlier position, and attempt
to solve the rest of the rules again with this new "learned" conclusion.
Because of this bug these conclusions could only ever occur in the
negative, e.g. "don't install package X". This is by far the most likely
scenario when the solver reaches this particular line, but there are
exceptions.
If you experienced a solver problem description that contained a
statement like "Conclusion: don't install vendor/package 1.2.3" which
directly contradicted other statements listed as part of the problem,
this could likely have been the cause.
2019-02-03 00:53:17 +00:00
/**
* Tests for a bug introduced in commit 451 bab1c2cd58e05af6e21639b829408ad023463 Solver . php line 554 / 523
*
* Every package and link in this test matters , only a combination this complex will run into the situation in which
* a negatively decided literal will need to be learned inverted as a positive assertion .
*
* In particular in this case the goal is to first have the solver decide X 2.0 should not be installed to later
* decide to learn that X 2.0 must be installed and revert decisions to retry solving with this new assumption .
*/
public function testLearnPositiveLiteral ()
{
$this -> repo -> addPackage ( $packageA = $this -> getPackage ( 'A' , '1.0' ));
$this -> repo -> addPackage ( $packageB = $this -> getPackage ( 'B' , '1.0' ));
$this -> repo -> addPackage ( $packageC1 = $this -> getPackage ( 'C' , '1.0' ));
$this -> repo -> addPackage ( $packageC2 = $this -> getPackage ( 'C' , '2.0' ));
$this -> repo -> addPackage ( $packageD = $this -> getPackage ( 'D' , '1.0' ));
$this -> repo -> addPackage ( $packageE = $this -> getPackage ( 'E' , '1.0' ));
$this -> repo -> addPackage ( $packageF1 = $this -> getPackage ( 'F' , '1.0' ));
$this -> repo -> addPackage ( $packageF2 = $this -> getPackage ( 'F' , '2.0' ));
$this -> repo -> addPackage ( $packageG1 = $this -> getPackage ( 'G' , '1.0' ));
$this -> repo -> addPackage ( $packageG2 = $this -> getPackage ( 'G' , '2.0' ));
$this -> repo -> addPackage ( $packageG3 = $this -> getPackage ( 'G' , '3.0' ));
$packageA -> setRequires ( array (
'b' => new Link ( 'A' , 'B' , $this -> getVersionConstraint ( '==' , '1.0' ), 'requires' ),
'c' => new Link ( 'A' , 'C' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
'd' => new Link ( 'A' , 'D' , $this -> getVersionConstraint ( '==' , '1.0' ), 'requires' ),
));
$packageB -> setRequires ( array (
'e' => new Link ( 'B' , 'E' , $this -> getVersionConstraint ( '==' , '1.0' ), 'requires' ),
));
$packageC1 -> setRequires ( array (
'f' => new Link ( 'C' , 'F' , $this -> getVersionConstraint ( '==' , '1.0' ), 'requires' ),
));
$packageC2 -> setRequires ( array (
'f' => new Link ( 'C' , 'F' , $this -> getVersionConstraint ( '==' , '1.0' ), 'requires' ),
'g' => new Link ( 'C' , 'G' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
));
$packageD -> setRequires ( array (
'f' => new Link ( 'D' , 'F' , $this -> getVersionConstraint ( '>=' , '1.0' ), 'requires' ),
));
$packageE -> setRequires ( array (
'g' => new Link ( 'E' , 'G' , $this -> getVersionConstraint ( '<=' , '2.0' ), 'requires' ),
));
$this -> reposComplete ();
$this -> request -> install ( 'A' );
2019-02-18 11:35:24 +00:00
$this -> createSolver ();
2019-02-10 19:26:47 +00:00
// check correct setup for assertion later
$this -> assertFalse ( $this -> solver -> testFlagLearnedPositiveLiteral );
Fix solver problem exceptions with unexpected contradictory "Conclusions"
This 5 character fix comes with a solver test as well as a functional
installer test essentially verifying the same thing. The solver test is
more useful when working on the solver. But the functional test is less
likely to be accidentally modified incorrectly during refactoring, as
every single package, version and link in the rather complex test
scenario is essential, and a modified version of the test may very well
still result in a successful installation but no longer verify the bug
described below.
Background:
In commit 451bab1c2cd58e05af6e21639b829408ad023463 from May 19, 2012 I
refactored literals from complex objects into pure integers to reduce
memory consumption. The absolute value of an integer literal is the id
of the package it refers to in the package pool. The sign indicates
whether the package should be installed (positive) or removed (negative),
So a major part of the refactoring was swapping this call:
$literal->getPackageId()
For this:
abs($literal)
Unintentionally in line 554/523 I incorrectly applied this change to the
line:
$this->literalFromId(-$literal->getPackageId());
It was converted to:
-abs($literal);
The function literalFromId used to create a new literal object. By using
the abs() function this change essentially forces the resulting literal
to be negative, while the minus sign previously inverted the literal, so
positive into negative and vice versa.
This particular line is in a function meant to analyze a conflicting
decision during dependency resolution and to draw a conclusion from it,
then revert the state of the solver to an earlier position, and attempt
to solve the rest of the rules again with this new "learned" conclusion.
Because of this bug these conclusions could only ever occur in the
negative, e.g. "don't install package X". This is by far the most likely
scenario when the solver reaches this particular line, but there are
exceptions.
If you experienced a solver problem description that contained a
statement like "Conclusion: don't install vendor/package 1.2.3" which
directly contradicted other statements listed as part of the problem,
this could likely have been the cause.
2019-02-03 00:53:17 +00:00
$this -> checkSolverResult ( array (
2019-11-07 20:51:53 +00:00
array ( 'job' => 'install' , 'package' => $packageF1 ),
2019-11-08 14:56:46 +00:00
array ( 'job' => 'install' , 'package' => $packageD ),
array ( 'job' => 'install' , 'package' => $packageG2 ),
array ( 'job' => 'install' , 'package' => $packageC2 ),
Fix solver problem exceptions with unexpected contradictory "Conclusions"
This 5 character fix comes with a solver test as well as a functional
installer test essentially verifying the same thing. The solver test is
more useful when working on the solver. But the functional test is less
likely to be accidentally modified incorrectly during refactoring, as
every single package, version and link in the rather complex test
scenario is essential, and a modified version of the test may very well
still result in a successful installation but no longer verify the bug
described below.
Background:
In commit 451bab1c2cd58e05af6e21639b829408ad023463 from May 19, 2012 I
refactored literals from complex objects into pure integers to reduce
memory consumption. The absolute value of an integer literal is the id
of the package it refers to in the package pool. The sign indicates
whether the package should be installed (positive) or removed (negative),
So a major part of the refactoring was swapping this call:
$literal->getPackageId()
For this:
abs($literal)
Unintentionally in line 554/523 I incorrectly applied this change to the
line:
$this->literalFromId(-$literal->getPackageId());
It was converted to:
-abs($literal);
The function literalFromId used to create a new literal object. By using
the abs() function this change essentially forces the resulting literal
to be negative, while the minus sign previously inverted the literal, so
positive into negative and vice versa.
This particular line is in a function meant to analyze a conflicting
decision during dependency resolution and to draw a conclusion from it,
then revert the state of the solver to an earlier position, and attempt
to solve the rest of the rules again with this new "learned" conclusion.
Because of this bug these conclusions could only ever occur in the
negative, e.g. "don't install package X". This is by far the most likely
scenario when the solver reaches this particular line, but there are
exceptions.
If you experienced a solver problem description that contained a
statement like "Conclusion: don't install vendor/package 1.2.3" which
directly contradicted other statements listed as part of the problem,
this could likely have been the cause.
2019-02-03 00:53:17 +00:00
array ( 'job' => 'install' , 'package' => $packageE ),
array ( 'job' => 'install' , 'package' => $packageB ),
array ( 'job' => 'install' , 'package' => $packageA ),
));
2019-02-10 19:26:47 +00:00
// verify that the code path leading to a negative literal resulting in a positive learned literal is actually
// executed
$this -> assertTrue ( $this -> solver -> testFlagLearnedPositiveLiteral );
Fix solver problem exceptions with unexpected contradictory "Conclusions"
This 5 character fix comes with a solver test as well as a functional
installer test essentially verifying the same thing. The solver test is
more useful when working on the solver. But the functional test is less
likely to be accidentally modified incorrectly during refactoring, as
every single package, version and link in the rather complex test
scenario is essential, and a modified version of the test may very well
still result in a successful installation but no longer verify the bug
described below.
Background:
In commit 451bab1c2cd58e05af6e21639b829408ad023463 from May 19, 2012 I
refactored literals from complex objects into pure integers to reduce
memory consumption. The absolute value of an integer literal is the id
of the package it refers to in the package pool. The sign indicates
whether the package should be installed (positive) or removed (negative),
So a major part of the refactoring was swapping this call:
$literal->getPackageId()
For this:
abs($literal)
Unintentionally in line 554/523 I incorrectly applied this change to the
line:
$this->literalFromId(-$literal->getPackageId());
It was converted to:
-abs($literal);
The function literalFromId used to create a new literal object. By using
the abs() function this change essentially forces the resulting literal
to be negative, while the minus sign previously inverted the literal, so
positive into negative and vice versa.
This particular line is in a function meant to analyze a conflicting
decision during dependency resolution and to draw a conclusion from it,
then revert the state of the solver to an earlier position, and attempt
to solve the rest of the rules again with this new "learned" conclusion.
Because of this bug these conclusions could only ever occur in the
negative, e.g. "don't install package X". This is by far the most likely
scenario when the solver reaches this particular line, but there are
exceptions.
If you experienced a solver problem description that contained a
statement like "Conclusion: don't install vendor/package 1.2.3" which
directly contradicted other statements listed as part of the problem,
this could likely have been the cause.
2019-02-03 00:53:17 +00:00
}
2011-08-05 08:08:21 +00:00
protected function reposComplete ()
{
2018-09-10 13:23:40 +00:00
$this -> repoSet -> addRepository ( $this -> repo );
2018-09-13 13:23:05 +00:00
$this -> repoSet -> addRepository ( $this -> repoLocked );
2018-09-12 09:49:09 +00:00
}
2018-09-11 13:49:08 +00:00
2018-09-12 09:49:09 +00:00
protected function createSolver ()
{
2019-09-06 23:58:12 +00:00
$this -> solver = new Solver ( $this -> policy , $this -> repoSet -> createPool ( $this -> request ), new NullIO ());
2011-08-05 08:08:21 +00:00
}
protected function checkSolverResult ( array $expected )
{
2018-09-12 09:49:09 +00:00
$this -> createSolver ();
2011-09-23 23:29:22 +00:00
$transaction = $this -> solver -> solve ( $this -> request );
$result = array ();
2019-11-07 20:51:53 +00:00
foreach ( $transaction -> getOperations () as $operation ) {
2011-09-23 23:29:22 +00:00
if ( 'update' === $operation -> getJobType ()) {
2011-09-25 11:40:12 +00:00
$result [] = array (
2017-03-08 14:07:29 +00:00
'job' => 'update' ,
2011-09-25 11:40:12 +00:00
'from' => $operation -> getInitialPackage (),
2017-03-08 14:07:29 +00:00
'to' => $operation -> getTargetPackage (),
2011-09-25 11:40:12 +00:00
);
2011-09-23 23:29:22 +00:00
} else {
2011-09-25 11:40:12 +00:00
$job = ( 'uninstall' === $operation -> getJobType () ? 'remove' : 'install' );
$result [] = array (
2017-03-08 14:07:29 +00:00
'job' => $job ,
2015-09-28 09:51:14 +00:00
'package' => $operation -> getPackage (),
2011-09-25 11:40:12 +00:00
);
2011-09-23 23:29:22 +00:00
}
2011-08-20 22:19:47 +00:00
}
2011-05-23 00:23:21 +00:00
$this -> assertEquals ( $expected , $result );
2011-04-05 15:37:19 +00:00
}
}