mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Continued refactoring of install() method, mainly by way of adding Composite Repository
* Rewritten `install()` method now takes a repository instead of a list of packages (per @nadermen) * Added Composite Repository * Added tests for Composite Repository * Removed "local repository" concept from Platform Repository * Removed some `use` statements for Platform Repository where it was not actually being used
This commit is contained in:
parent
473f127ff1
commit
e1370be7a0
7 changed files with 257 additions and 22 deletions
128
tests/Composer/Test/Repository/CompositeRepositoryTest.php
Normal file
128
tests/Composer/Test/Repository/CompositeRepositoryTest.php
Normal file
|
@ -0,0 +1,128 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* 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\Repository;
|
||||
|
||||
use Composer\Repository\CompositeRepository;
|
||||
use Composer\Repository\ArrayRepository;
|
||||
use Composer\Test\TestCase;
|
||||
|
||||
class CompositeRepositoryTest extends TestCase
|
||||
{
|
||||
public function testHasPackage()
|
||||
{
|
||||
$arrayRepoOne = new ArrayRepository;
|
||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||
|
||||
$arrayRepoTwo = new ArrayRepository;
|
||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||
|
||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||
|
||||
$this->assertTrue($repo->hasPackage($this->getPackage('foo', '1')), "Should have package 'foo/1'");
|
||||
$this->assertTrue($repo->hasPackage($this->getPackage('bar', '1')), "Should have package 'bar/1'");
|
||||
|
||||
$this->assertFalse($repo->hasPackage($this->getPackage('foo', '2')), "Should not have package 'foo/2'");
|
||||
$this->assertFalse($repo->hasPackage($this->getPackage('bar', '2')), "Should not have package 'bar/2'");
|
||||
}
|
||||
|
||||
public function testFindPackage()
|
||||
{
|
||||
$arrayRepoOne = new ArrayRepository;
|
||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||
|
||||
$arrayRepoTwo = new ArrayRepository;
|
||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||
|
||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||
|
||||
$this->assertEquals('foo', $repo->findPackage('foo', '1')->getName(), "Should find package 'foo/1' and get name of 'foo'");
|
||||
$this->assertEquals('1', $repo->findPackage('foo', '1')->getPrettyVersion(), "Should find package 'foo/1' and get pretty version of '1'");
|
||||
$this->assertEquals('bar', $repo->findPackage('bar', '1')->getName(), "Should find package 'bar/1' and get name of 'bar'");
|
||||
$this->assertEquals('1', $repo->findPackage('bar', '1')->getPrettyVersion(), "Should find package 'bar/1' and get pretty version of '1'");
|
||||
$this->assertNull($repo->findPackage('foo', '2'), "Should not find package 'foo/2'");
|
||||
}
|
||||
|
||||
public function testFindPackagesByName()
|
||||
{
|
||||
$arrayRepoOne = new ArrayRepository;
|
||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||
$arrayRepoOne->addPackage($this->getPackage('foo', '2'));
|
||||
$arrayRepoOne->addPackage($this->getPackage('bat', '1'));
|
||||
|
||||
$arrayRepoTwo = new ArrayRepository;
|
||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '2'));
|
||||
$arrayRepoTwo->addPackage($this->getPackage('foo', '3'));
|
||||
|
||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||
|
||||
$bats = $repo->findPackagesByName('bat');
|
||||
$this->assertCount(1, $bats, "Should find one instance of 'bats' (defined in just one repository)");
|
||||
$this->assertEquals('bat', $bats[0]->getName(), "Should find packages named 'bat'");
|
||||
|
||||
$bars = $repo->findPackagesByName('bar');
|
||||
$this->assertCount(2, $bars, "Should find two instances of 'bar' (both defined in the same repository)");
|
||||
$this->assertEquals('bar', $bars[0]->getName(), "Should find packages named 'bar'");
|
||||
|
||||
$foos = $repo->findPackagesByName('foo');
|
||||
$this->assertCount(3, $foos, "Should find three instances of 'foo' (two defined in one repository, the third in the other)");
|
||||
$this->assertEquals('foo', $foos[0]->getName(), "Should find packages named 'foo'");
|
||||
}
|
||||
|
||||
public function testGetPackages()
|
||||
{
|
||||
$arrayRepoOne = new ArrayRepository;
|
||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||
|
||||
$arrayRepoTwo = new ArrayRepository;
|
||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||
|
||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||
|
||||
$packages = $repo->getPackages();
|
||||
$this->assertCount(2, $packages, "Should get two packages");
|
||||
$this->assertEquals("foo", $packages[0]->getName(), "First package should have name of 'foo'");
|
||||
$this->assertEquals("1", $packages[0]->getPrettyVersion(), "First package should have pretty version of '1'");
|
||||
$this->assertEquals("bar", $packages[1]->getName(), "Second package should have name of 'bar'");
|
||||
$this->assertEquals("1", $packages[1]->getPrettyVersion(), "Second package should have pretty version of '1'");
|
||||
}
|
||||
|
||||
public function testAddRepository()
|
||||
{
|
||||
$arrayRepoOne = new ArrayRepository;
|
||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||
|
||||
$arrayRepoTwo = new ArrayRepository;
|
||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '2'));
|
||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '3'));
|
||||
|
||||
$repo = new CompositeRepository(array($arrayRepoOne));
|
||||
$this->assertCount(1, $repo, "Composite repository should have just one package before addRepository() is called");
|
||||
$repo->addRepository($arrayRepoTwo);
|
||||
$this->assertCount(4, $repo, "Composite repository should have four packages after addRepository() is called");
|
||||
}
|
||||
|
||||
public function testCount()
|
||||
{
|
||||
$arrayRepoOne = new ArrayRepository;
|
||||
$arrayRepoOne->addPackage($this->getPackage('foo', '1'));
|
||||
|
||||
$arrayRepoTwo = new ArrayRepository;
|
||||
$arrayRepoTwo->addPackage($this->getPackage('bar', '1'));
|
||||
|
||||
$repo = new CompositeRepository(array($arrayRepoOne, $arrayRepoTwo));
|
||||
|
||||
$this->assertEquals(2, count($repo), "Should return '2' for count(\$repo)");
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue