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

68 lines
1.8 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
/*
2011-04-16 12:42:35 +00:00
* This file is part of Composer.
*
2011-04-16 12:42:35 +00:00
* (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\DependencyResolver\Pool;
use Composer\Test\TestCase;
class PoolTest extends TestCase
{
public function testPool(): void
{
$package = self::getPackage('foo', '1');
2022-08-17 12:20:07 +00:00
$pool = $this->createPool([$package]);
2022-08-17 12:20:07 +00:00
$this->assertEquals([$package], $pool->whatProvides('foo'));
$this->assertEquals([$package], $pool->whatProvides('foo'));
}
2012-01-22 21:06:09 +00:00
public function testWhatProvidesPackageWithConstraint(): void
{
$firstPackage = self::getPackage('foo', '1');
$secondPackage = self::getPackage('foo', '2');
2022-08-17 12:20:07 +00:00
$pool = $this->createPool([
$firstPackage,
$secondPackage,
2022-08-17 12:20:07 +00:00
]);
2022-08-17 12:20:07 +00:00
$this->assertEquals([$firstPackage, $secondPackage], $pool->whatProvides('foo'));
$this->assertEquals([$secondPackage], $pool->whatProvides('foo', self::getVersionConstraint('==', '2')));
2012-01-22 21:06:09 +00:00
}
public function testPackageById(): void
2012-01-22 21:06:09 +00:00
{
$package = self::getPackage('foo', '1');
2012-01-22 21:06:09 +00:00
2022-08-17 12:20:07 +00:00
$pool = $this->createPool([$package]);
2012-01-22 21:06:09 +00:00
$this->assertSame($package, $pool->packageById(1));
}
public function testWhatProvidesWhenPackageCannotBeFound(): void
2012-01-22 21:06:09 +00:00
{
$pool = $this->createPool();
2012-01-22 21:06:09 +00:00
2022-08-17 12:20:07 +00:00
$this->assertEquals([], $pool->whatProvides('foo'));
2012-01-22 21:06:09 +00:00
}
/**
* @param array<\Composer\Package\BasePackage>|null $packages
*/
2022-08-17 12:20:07 +00:00
protected function createPool(?array $packages = []): Pool
{
return new Pool($packages);
}
}