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

69 lines
1.9 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 = $this->getPackage('foo', '1');
$pool = $this->createPool(array($package));
$this->assertEquals(array($package), $pool->whatProvides('foo'));
$this->assertEquals(array($package), $pool->whatProvides('foo'));
}
2012-01-22 21:06:09 +00:00
public function testWhatProvidesPackageWithConstraint(): void
{
$firstPackage = $this->getPackage('foo', '1');
$secondPackage = $this->getPackage('foo', '2');
$pool = $this->createPool(array(
$firstPackage,
$secondPackage,
));
$this->assertEquals(array($firstPackage, $secondPackage), $pool->whatProvides('foo'));
$this->assertEquals(array($secondPackage), $pool->whatProvides('foo', $this->getVersionConstraint('==', '2')));
2012-01-22 21:06:09 +00:00
}
public function testPackageById(): void
2012-01-22 21:06:09 +00:00
{
$package = $this->getPackage('foo', '1');
$pool = $this->createPool(array($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
$this->assertEquals(array(), $pool->whatProvides('foo'));
}
/**
* @param array<\Composer\Package\BasePackage>|null $packages
* @return \Composer\DependencyResolver\Pool
*/
2022-02-22 15:47:09 +00:00
protected function createPool(?array $packages = array()): Pool
{
return new Pool($packages);
}
}