Allow an install request for a package name which is already fixed

Ensures packages get loaded from locked repo correctly. We may not want
to support this particular use-case at all, but for now it fixes the
existing test, so we may want to revisit this later.
main
Nils Adermann 5 years ago
parent 995b4f923e
commit 4481cc4a88

@ -62,8 +62,12 @@ class PoolBuilder
foreach ($request->getJobs() as $job) { foreach ($request->getJobs() as $job) {
switch ($job['cmd']) { switch ($job['cmd']) {
case 'install': case 'install':
$loadNames[$job['packageName']] = $job['constraint']; // TODO currently lock above is always NULL if we adjust that, this needs to merge constraints
$this->nameConstraints[$job['packageName']] = $job['constraint'] ? new MultiConstraint(array($job['constraint']), false) : null; // TODO does it really make sense that we can have install requests for the same package that is actively locked with non-matching constraints?
// also see the solver-problems.test test case
$constraint = array_key_exists($job['packageName'], $loadNames) ? null : $job['constraint'];
$loadNames[$job['packageName']] = $constraint;
$this->nameConstraints[$job['packageName']] = $constraint ? new MultiConstraint(array($job['constraint']), false) : null;
break; break;
} }
} }
@ -199,6 +203,7 @@ class PoolBuilder
// TODO addConstraint function? // TODO addConstraint function?
$this->nameConstraints[$require] = new MultiConstraint(array_merge(array($linkConstraint), $this->nameConstraints[$require]->getConstraints()), false); $this->nameConstraints[$require] = new MultiConstraint(array_merge(array($linkConstraint), $this->nameConstraints[$require]->getConstraints()), false);
} }
// else it is null and should stay null
} else { } else {
$this->nameConstraints[$require] = null; $this->nameConstraints[$require] = null;
} }

@ -211,10 +211,10 @@ class Problem
case 'fix': case 'fix':
$package = $job['package']; $package = $job['package'];
if ($job['lockable']) { if ($job['lockable']) {
return 'Package '.$package->getPrettyName().' is locked to version '.$package->getPrettyVersion(); return $package->getPrettyName().' is locked to version '.$package->getPrettyVersion().' and an update of this package was not requested.';
} else {
return 'Package '.$package->getPrettyName().' is present at version '.$package->getPrettyVersion() . ' and cannot be modified by Composer';
} }
return $package->getPrettyName().' is present at version '.$package->getPrettyVersion() . ' and cannot be modified by Composer';
case 'install': case 'install':
$packages = $this->pool->whatProvides($packageName, $constraint); $packages = $this->pool->whatProvides($packageName, $constraint);
if (!$packages) { if (!$packages) {

@ -261,6 +261,10 @@ class RuleSetGenerator
$unlockableMap = $request->getUnlockableMap(); $unlockableMap = $request->getUnlockableMap();
foreach ($request->getFixedPackages() as $package) { foreach ($request->getFixedPackages() as $package) {
if ($package->id == -1) {
throw new \RuntimeException("Fixed package ".$package->getName()." was not added to solver pool.");
}
$this->addRulesForPackage($package, $ignorePlatformReqs); $this->addRulesForPackage($package, $ignorePlatformReqs);
$rule = $this->createInstallOneOfRule(array($package), Rule::RULE_JOB_INSTALL, array( $rule = $this->createInstallOneOfRule(array($package), Rule::RULE_JOB_INSTALL, array(

@ -147,7 +147,6 @@ class Solver
if (abs($literal) !== abs($assertRuleLiteral)) { if (abs($literal) !== abs($assertRuleLiteral)) {
continue; continue;
} }
$problem->addRule($assertRule); $problem->addRule($assertRule);
$this->disableProblem($assertRule); $this->disableProblem($assertRule);
} }

@ -523,8 +523,6 @@ class Installer
return array(); return array();
} }
;
$resultRepo = new ArrayRepository(array()); $resultRepo = new ArrayRepository(array());
$loader = new ArrayLoader(null, true); $loader = new ArrayLoader(null, true);
$dumper = new ArrayDumper(); $dumper = new ArrayDumper();

@ -61,12 +61,12 @@ Your requirements could not be resolved to an installable set of packages.
Problem 2 Problem 2
- The requested package bogus/pkg could not be found in any version, there may be a typo in the package name. - The requested package bogus/pkg could not be found in any version, there may be a typo in the package name.
Problem 3 Problem 3
- The requested package stable-requiree-excluded/pkg 1.0.1 exists as stable-requiree-excluded/pkg[1.0.0] but these are rejected by your constraint.
Problem 4
- The requested package stable-requiree-excluded/pkg (installed at 1.0.0, required as 1.0.1) is satisfiable by stable-requiree-excluded/pkg[1.0.0] but these conflict with your requirements or minimum-stability.
Problem 5
- Installation request for requirer/pkg 1.* -> satisfiable by requirer/pkg[1.0.0]. - Installation request for requirer/pkg 1.* -> satisfiable by requirer/pkg[1.0.0].
- requirer/pkg 1.0.0 requires dependency/pkg 1.0.0 -> no matching package found. - requirer/pkg 1.0.0 requires dependency/pkg 1.0.0 -> no matching package found.
Problem 4
- stable-requiree-excluded/pkg is locked to version 1.0.0 and an update of this package was not requested.
- Same name, can only install one of: stable-requiree-excluded/pkg[1.0.0, 1.0.1].
- Installation request for stable-requiree-excluded/pkg 1.0.1 -> satisfiable by stable-requiree-excluded/pkg[1.0.1].
Potential causes: Potential causes:
- A typo in the package name - A typo in the package name

Loading…
Cancel
Save