2011-04-05 15:37:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
2011-04-16 12:42:35 +00:00
|
|
|
* This file is part of Composer.
|
2011-04-05 15:37:19 +00:00
|
|
|
*
|
2011-04-16 12:42:35 +00:00
|
|
|
* (c) Nils Adermann <naderman@naderman.de>
|
|
|
|
* Jordi Boggiano <j.boggiano@seld.be>
|
2011-04-05 15:37:19 +00:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2011-04-17 21:45:37 +00:00
|
|
|
namespace Composer\Test\Repository;
|
2011-04-05 15:37:19 +00:00
|
|
|
|
2011-04-17 21:45:37 +00:00
|
|
|
use Composer\Repository\ArrayRepository;
|
2011-11-20 14:06:12 +00:00
|
|
|
use Composer\Test\TestCase;
|
2011-04-05 15:37:19 +00:00
|
|
|
|
2011-11-20 14:06:12 +00:00
|
|
|
class ArrayRepositoryTest extends TestCase
|
2011-04-05 15:37:19 +00:00
|
|
|
{
|
2011-09-25 17:57:58 +00:00
|
|
|
public function testAddPackage()
|
2011-04-05 15:37:19 +00:00
|
|
|
{
|
|
|
|
$repo = new ArrayRepository;
|
2011-11-20 14:06:12 +00:00
|
|
|
$repo->addPackage($this->getPackage('foo', '1'));
|
2011-04-05 15:37:19 +00:00
|
|
|
|
|
|
|
$this->assertEquals(1, count($repo));
|
|
|
|
}
|
2011-09-25 17:57:58 +00:00
|
|
|
|
|
|
|
public function testRemovePackage()
|
|
|
|
{
|
2011-11-20 14:06:12 +00:00
|
|
|
$package = $this->getPackage('bar', '2');
|
2011-09-25 17:57:58 +00:00
|
|
|
|
|
|
|
$repo = new ArrayRepository;
|
2011-11-20 14:06:12 +00:00
|
|
|
$repo->addPackage($this->getPackage('foo', '1'));
|
2011-09-25 17:57:58 +00:00
|
|
|
$repo->addPackage($package);
|
|
|
|
|
|
|
|
$this->assertEquals(2, count($repo));
|
|
|
|
|
2011-11-20 14:06:12 +00:00
|
|
|
$repo->removePackage($this->getPackage('foo', '1'));
|
2011-09-25 17:57:58 +00:00
|
|
|
|
|
|
|
$this->assertEquals(1, count($repo));
|
|
|
|
$this->assertEquals(array($package), $repo->getPackages());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testHasPackage()
|
|
|
|
{
|
|
|
|
$repo = new ArrayRepository;
|
2011-11-20 14:06:12 +00:00
|
|
|
$repo->addPackage($this->getPackage('foo', '1'));
|
|
|
|
$repo->addPackage($this->getPackage('bar', '2'));
|
2011-09-25 17:57:58 +00:00
|
|
|
|
2011-11-20 14:06:12 +00:00
|
|
|
$this->assertTrue($repo->hasPackage($this->getPackage('foo', '1')));
|
|
|
|
$this->assertFalse($repo->hasPackage($this->getPackage('bar', '1')));
|
2011-09-25 17:57:58 +00:00
|
|
|
}
|
2012-01-16 21:29:22 +00:00
|
|
|
|
2012-02-21 13:02:08 +00:00
|
|
|
public function testFindPackages()
|
2012-01-16 21:29:22 +00:00
|
|
|
{
|
|
|
|
$repo = new ArrayRepository();
|
|
|
|
$repo->addPackage($this->getPackage('foo', '1'));
|
|
|
|
$repo->addPackage($this->getPackage('bar', '2'));
|
|
|
|
$repo->addPackage($this->getPackage('bar', '3'));
|
|
|
|
|
2012-02-21 13:02:08 +00:00
|
|
|
$foo = $repo->findPackages('foo');
|
2012-01-16 21:29:22 +00:00
|
|
|
$this->assertCount(1, $foo);
|
|
|
|
$this->assertEquals('foo', $foo[0]->getName());
|
|
|
|
|
2012-02-21 13:02:08 +00:00
|
|
|
$bar = $repo->findPackages('bar');
|
2012-01-16 21:29:22 +00:00
|
|
|
$this->assertCount(2, $bar);
|
|
|
|
$this->assertEquals('bar', $bar[0]->getName());
|
|
|
|
}
|
2011-04-05 15:37:19 +00:00
|
|
|
}
|