2013-03-24 19:27:50 +00:00
|
|
|
<?php
|
2013-03-24 23:41:10 +00:00
|
|
|
|
2013-03-24 19:27:50 +00:00
|
|
|
/*
|
|
|
|
* 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\Repository;
|
|
|
|
|
|
|
|
use Composer\Test\TestCase;
|
|
|
|
use Composer\IO\NullIO;
|
|
|
|
use Composer\Config;
|
|
|
|
use Composer\Package\Package;
|
|
|
|
|
|
|
|
class ArtifactRepositoryTest extends TestCase
|
|
|
|
{
|
2013-03-24 23:41:10 +00:00
|
|
|
public function testExtractsConfigsFromZipArchives()
|
|
|
|
{
|
2013-03-24 19:27:50 +00:00
|
|
|
$expectedPackages = array(
|
2013-03-31 18:51:37 +00:00
|
|
|
'composer/composer-1.0.0-alpha6',
|
2013-03-24 19:27:50 +00:00
|
|
|
'vendor0/package0-0.0.1',
|
|
|
|
'vendor1/package2-4.3.2',
|
|
|
|
);
|
|
|
|
|
|
|
|
$coordinates = array('type' => 'artifact', 'url' => __DIR__ . '/Fixtures/artifacts');
|
|
|
|
$repo = new ArtifactRepository($coordinates, new NullIO(), new Config());
|
|
|
|
|
|
|
|
$foundPackages = array_map(function(Package $package) {
|
|
|
|
return "{$package->getPrettyName()}-{$package->getPrettyVersion()}";
|
|
|
|
}, $repo->getPackages());
|
|
|
|
|
|
|
|
$this->assertEquals($expectedPackages, $foundPackages);
|
|
|
|
}
|
|
|
|
}
|