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;
|
2016-06-21 14:38:52 +00:00
|
|
|
use Composer\Repository\RepositoryInterface;
|
2018-11-12 14:23:32 +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
|
|
|
|
2017-11-30 14:58:10 +00:00
|
|
|
$this->assertCount(1, $repo);
|
2011-04-05 15:37:19 +00:00
|
|
|
}
|
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);
|
|
|
|
|
2017-11-30 14:58:10 +00:00
|
|
|
$this->assertCount(2, $repo);
|
2011-09-25 17:57:58 +00:00
|
|
|
|
2011-11-20 14:06:12 +00:00
|
|
|
$repo->removePackage($this->getPackage('foo', '1'));
|
2011-09-25 17:57:58 +00:00
|
|
|
|
2017-11-30 14:58:10 +00:00
|
|
|
$this->assertCount(1, $repo);
|
2011-09-25 17:57:58 +00:00
|
|
|
$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());
|
|
|
|
}
|
2013-04-01 06:10:15 +00:00
|
|
|
|
2018-05-03 15:30:19 +00:00
|
|
|
public function testAutomaticallyAddAliasedPackageButNotRemove()
|
2013-04-01 06:10:15 +00:00
|
|
|
{
|
|
|
|
$repo = new ArrayRepository();
|
|
|
|
|
|
|
|
$package = $this->getPackage('foo', '1');
|
|
|
|
$alias = $this->getAliasPackage($package, '2');
|
|
|
|
|
|
|
|
$repo->addPackage($alias);
|
|
|
|
|
2017-11-30 14:58:10 +00:00
|
|
|
$this->assertCount(2, $repo);
|
2013-04-01 06:10:15 +00:00
|
|
|
$this->assertTrue($repo->hasPackage($this->getPackage('foo', '1')));
|
|
|
|
$this->assertTrue($repo->hasPackage($this->getPackage('foo', '2')));
|
2018-04-12 07:51:01 +00:00
|
|
|
|
|
|
|
$repo->removePackage($alias);
|
|
|
|
|
2018-05-03 15:30:19 +00:00
|
|
|
$this->assertCount(1, $repo);
|
2013-04-01 06:10:15 +00:00
|
|
|
}
|
2016-06-21 14:38:52 +00:00
|
|
|
|
|
|
|
public function testSearch()
|
|
|
|
{
|
|
|
|
$repo = new ArrayRepository();
|
|
|
|
|
|
|
|
$repo->addPackage($this->getPackage('foo', '1'));
|
|
|
|
$repo->addPackage($this->getPackage('bar', '1'));
|
|
|
|
|
|
|
|
$this->assertSame(
|
|
|
|
array(array('name' => 'foo', 'description' => null)),
|
|
|
|
$repo->search('foo', RepositoryInterface::SEARCH_FULLTEXT)
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertSame(
|
|
|
|
array(array('name' => 'bar', 'description' => null)),
|
|
|
|
$repo->search('bar')
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEmpty(
|
|
|
|
$repo->search('foobar')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSearchWithPackageType()
|
|
|
|
{
|
|
|
|
$repo = new ArrayRepository();
|
|
|
|
|
|
|
|
$repo->addPackage($this->getPackage('foo', '1', 'Composer\Package\CompletePackage'));
|
|
|
|
$repo->addPackage($this->getPackage('bar', '1', 'Composer\Package\CompletePackage'));
|
|
|
|
|
|
|
|
$package = $this->getPackage('foobar', '1', 'Composer\Package\CompletePackage');
|
|
|
|
$package->setType('composer-plugin');
|
|
|
|
$repo->addPackage($package);
|
|
|
|
|
|
|
|
$this->assertSame(
|
|
|
|
array(array('name' => 'foo', 'description' => null)),
|
|
|
|
$repo->search('foo', RepositoryInterface::SEARCH_FULLTEXT, 'library')
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEmpty($repo->search('bar', RepositoryInterface::SEARCH_FULLTEXT, 'package'));
|
|
|
|
|
|
|
|
$this->assertSame(
|
|
|
|
array(array('name' => 'foobar', 'description' => null)),
|
|
|
|
$repo->search('foo', 0, 'composer-plugin')
|
|
|
|
);
|
|
|
|
}
|
2011-04-05 15:37:19 +00:00
|
|
|
}
|