1
0
Fork 0
composer/tests/Composer/Test/DependencyResolver/TransactionTest.php

128 lines
5.9 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
/*
* 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;
2021-09-05 14:02:10 +00:00
use Composer\DependencyResolver\Operation\InstallOperation;
use Composer\DependencyResolver\Operation\MarkAliasInstalledOperation;
use Composer\DependencyResolver\Operation\MarkAliasUninstalledOperation;
use Composer\DependencyResolver\Operation\UninstallOperation;
use Composer\DependencyResolver\Operation\UpdateOperation;
use Composer\DependencyResolver\Transaction;
use Composer\Package\Link;
2022-02-23 15:57:47 +00:00
use Composer\Package\PackageInterface;
use Composer\Test\TestCase;
class TransactionTest extends TestCase
{
2021-12-08 16:03:05 +00:00
public function setUp(): void
{
}
public function testTransactionGenerationAndSorting(): void
{
2022-08-17 12:20:07 +00:00
$presentPackages = [
$packageA = self::getPackage('a/a', 'dev-master'),
$packageAalias = self::getAliasPackage($packageA, '1.0.x-dev'),
$packageB = self::getPackage('b/b', '1.0.0'),
$packageE = self::getPackage('e/e', 'dev-foo'),
$packageEalias = self::getAliasPackage($packageE, '1.0.x-dev'),
$packageC = self::getPackage('c/c', '1.0.0'),
2022-08-17 12:20:07 +00:00
];
$resultPackages = [
$packageA,
$packageAalias,
$packageBnew = self::getPackage('b/b', '2.1.3'),
$packageD = self::getPackage('d/d', '1.2.3'),
$packageF = self::getPackage('f/f', '1.0.0'),
$packageFalias1 = self::getAliasPackage($packageF, 'dev-foo'),
$packageG = self::getPackage('g/g', '1.0.0'),
$packageA0first = self::getPackage('a0/first', '1.2.3'),
$packageFalias2 = self::getAliasPackage($packageF, 'dev-bar'),
$plugin = self::getPackage('x/plugin', '1.0.0'),
$plugin2Dep = self::getPackage('x/plugin2-dep', '1.0.0'),
$plugin2 = self::getPackage('x/plugin2', '1.0.0'),
$dlModifyingPlugin = self::getPackage('x/downloads-modifying', '1.0.0'),
$dlModifyingPlugin2Dep = self::getPackage('x/downloads-modifying2-dep', '1.0.0'),
$dlModifyingPlugin2 = self::getPackage('x/downloads-modifying2', '1.0.0'),
2022-08-17 12:20:07 +00:00
];
$plugin->setType('composer-installer');
2022-08-17 12:20:07 +00:00
foreach ([$plugin2, $dlModifyingPlugin, $dlModifyingPlugin2] as $pluginPackage) {
$pluginPackage->setType('composer-plugin');
}
2022-08-17 12:20:07 +00:00
$plugin2->setRequires([
'x/plugin2-dep' => new Link('x/plugin2', 'x/plugin2-dep', self::getVersionConstraint('=', '1.0.0'), Link::TYPE_REQUIRE),
2022-08-17 12:20:07 +00:00
]);
$dlModifyingPlugin2->setRequires([
'x/downloads-modifying2-dep' => new Link('x/downloads-modifying2', 'x/downloads-modifying2-dep', self::getVersionConstraint('=', '1.0.0'), Link::TYPE_REQUIRE),
2022-08-17 12:20:07 +00:00
]);
$dlModifyingPlugin->setExtra(['plugin-modifies-downloads' => true]);
$dlModifyingPlugin2->setExtra(['plugin-modifies-downloads' => true]);
2022-08-17 12:20:07 +00:00
$packageD->setRequires([
'f/f' => new Link('d/d', 'f/f', self::getVersionConstraint('>', '0.2'), Link::TYPE_REQUIRE),
'g/provider' => new Link('d/d', 'g/provider', self::getVersionConstraint('>', '0.2'), Link::TYPE_REQUIRE),
2022-08-17 12:20:07 +00:00
]);
$packageG->setProvides(['g/provider' => new Link('g/g', 'g/provider', self::getVersionConstraint('==', '1.0.0'), Link::TYPE_PROVIDE)]);
2022-08-17 12:20:07 +00:00
$expectedOperations = [
['job' => 'uninstall', 'package' => $packageC],
['job' => 'uninstall', 'package' => $packageE],
['job' => 'markAliasUninstalled', 'package' => $packageEalias],
['job' => 'install', 'package' => $dlModifyingPlugin],
['job' => 'install', 'package' => $dlModifyingPlugin2Dep],
['job' => 'install', 'package' => $dlModifyingPlugin2],
['job' => 'install', 'package' => $plugin],
['job' => 'install', 'package' => $plugin2Dep],
['job' => 'install', 'package' => $plugin2],
['job' => 'install', 'package' => $packageA0first],
['job' => 'update', 'from' => $packageB, 'to' => $packageBnew],
['job' => 'install', 'package' => $packageG],
['job' => 'install', 'package' => $packageF],
['job' => 'markAliasInstalled', 'package' => $packageFalias2],
['job' => 'markAliasInstalled', 'package' => $packageFalias1],
['job' => 'install', 'package' => $packageD],
];
$transaction = new Transaction($presentPackages, $resultPackages);
$this->checkTransactionOperations($transaction, $expectedOperations);
}
/**
2022-02-23 15:57:47 +00:00
* @param array<array{job: string, package?: PackageInterface, from?: PackageInterface, to?: PackageInterface}> $expected
*/
protected function checkTransactionOperations(Transaction $transaction, array $expected): void
{
2022-08-17 12:20:07 +00:00
$result = [];
foreach ($transaction->getOperations() as $operation) {
2021-09-05 14:02:10 +00:00
if ($operation instanceof UpdateOperation) {
2022-08-17 12:20:07 +00:00
$result[] = [
'job' => 'update',
'from' => $operation->getInitialPackage(),
'to' => $operation->getTargetPackage(),
2022-08-17 12:20:07 +00:00
];
2021-09-05 14:02:10 +00:00
} elseif ($operation instanceof InstallOperation || $operation instanceof UninstallOperation || $operation instanceof MarkAliasInstalledOperation || $operation instanceof MarkAliasUninstalledOperation) {
2022-08-17 12:20:07 +00:00
$result[] = [
'job' => $operation->getOperationType(),
'package' => $operation->getPackage(),
2022-08-17 12:20:07 +00:00
];
2021-09-05 14:02:10 +00:00
} else {
throw new \UnexpectedValueException('Unknown operation type: '.get_class($operation));
}
}
self::assertEquals($expected, $result);
}
}