1
0
Fork 0
composer/tests/Composer/Test
Nils Adermann 6b2edeae56 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 451bab1c2c 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 16:33:55 +01:00
..
Autoload Add a test for autoloading if a package is only required via replacing name 2019-01-28 17:08:51 +01:00
Command Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
Config Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
Console Use PHPUnit\Framework\TestCase instead of PHPUnit_Framework_TestCase 2017-11-30 13:44:43 -02:00
DependencyResolver Fix solver problem exceptions with unexpected contradictory "Conclusions" 2019-02-03 16:33:55 +01:00
Downloader Add output for metapackage installs/updates/.. fixes #7586 2019-01-29 11:38:18 +01:00
EventDispatcher Call a script recursively with extra parameters (#7720) 2018-11-26 12:35:41 +01:00
Fixtures Fix solver problem exceptions with unexpected contradictory "Conclusions" 2019-02-03 16:33:55 +01:00
IO Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
Installer Add output for metapackage installs/updates/.. fixes #7586 2019-01-29 11:38:18 +01:00
Json Make JSON formatter test clearer 2018-08-10 08:54:34 +02:00
Mock Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
Package Merge remote-tracking branch 'dmanners/add-chat-option-for-support' 2018-11-26 19:47:13 +01:00
Plugin Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
Question Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
Repository Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
Util Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
AllFunctionalTest.php Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
ApplicationTest.php Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
CacheTest.php Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
ComposerTest.php Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
ConfigTest.php Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
DefaultConfigTest.php Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
FactoryTest.php Fix TestCase import 2018-11-12 15:24:28 +01:00
InstallerTest.php Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00
TestCase.php Fixes from PHPStan (#7687) 2018-11-12 15:23:32 +01:00