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;
|
2013-03-31 19:44:48 +00:00
|
|
|
use Composer\Package\BasePackage;
|
2013-03-24 19:27:50 +00:00
|
|
|
|
|
|
|
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 20:01:55 +00:00
|
|
|
'vendor0/package0-0.0.1',
|
2013-03-31 19:53:34 +00:00
|
|
|
'composer/composer-1.0.0-alpha6',
|
2013-03-24 19:27:50 +00:00
|
|
|
'vendor1/package2-4.3.2',
|
2013-06-13 14:20:52 +00:00
|
|
|
'vendor3/package1-5.4.3',
|
2014-02-20 17:30:51 +00:00
|
|
|
'test/jsonInRoot-1.0.0',
|
2014-02-21 09:44:04 +00:00
|
|
|
'test/jsonInFirstLevel-1.0.0',
|
|
|
|
//The files not-an-artifact.zip and jsonSecondLevel are not valid
|
|
|
|
//artifacts and do not get detected.
|
2013-03-24 19:27:50 +00:00
|
|
|
);
|
|
|
|
|
2014-02-21 09:44:04 +00:00
|
|
|
$coordinates = array('type' => 'artifact', 'url' => __DIR__ . '/Fixtures/artifacts');
|
2013-03-24 19:27:50 +00:00
|
|
|
$repo = new ArtifactRepository($coordinates, new NullIO(), new Config());
|
|
|
|
|
2013-03-31 19:44:48 +00:00
|
|
|
$foundPackages = array_map(function(BasePackage $package) {
|
2013-03-24 19:27:50 +00:00
|
|
|
return "{$package->getPrettyName()}-{$package->getPrettyVersion()}";
|
|
|
|
}, $repo->getPackages());
|
|
|
|
|
2013-03-31 20:01:55 +00:00
|
|
|
sort($expectedPackages);
|
|
|
|
sort($foundPackages);
|
|
|
|
|
|
|
|
$this->assertSame($expectedPackages, $foundPackages);
|
2013-03-24 19:27:50 +00:00
|
|
|
}
|
|
|
|
}
|
2014-02-20 17:30:51 +00:00
|
|
|
|
|
|
|
//$archivesToCreate = array(
|
|
|
|
// 'jsonInRoot' => array(
|
|
|
|
// "extra.txt" => "Testing testing testing",
|
|
|
|
// "composer.json" => '{ "name": "test/jsonInRoot", "version": "1.0.0" }',
|
|
|
|
// "subdir/extra.txt" => "Testing testing testing",
|
|
|
|
// "subdir/extra2.txt" => "Testing testing testing",
|
|
|
|
// ),
|
|
|
|
//
|
|
|
|
// 'jsonInFirstLevel' => array(
|
|
|
|
// "extra.txt" => "Testing testing testing",
|
|
|
|
// "subdir/composer.json" => '{ "name": "test/jsonInFirstLevel", "version": "1.0.0" }',
|
|
|
|
// "subdir/extra.txt" => "Testing testing testing",
|
|
|
|
// "subdir/extra2.txt" => "Testing testing testing",
|
|
|
|
// ),
|
|
|
|
//
|
|
|
|
// 'jsonInSecondLevel' => array(
|
|
|
|
// "extra.txt" => "Testing testing testing",
|
|
|
|
// "subdir/extra1.txt" => "Testing testing testing",
|
|
|
|
// "subdir/foo/composer.json" => '{ "name": "test/jsonInSecondLevel", "version": "1.0.0" }',
|
|
|
|
// "subdir/foo/extra1.txt" => "Testing testing testing",
|
|
|
|
// "subdir/extra2.txt" => "Testing testing testing",
|
|
|
|
// "subdir/extra3.txt" => "Testing testing testing",
|
|
|
|
// ),
|
|
|
|
//);
|
|
|
|
//
|
|
|
|
//foreach($archivesToCreate as $archiveName => $fileDetails) {
|
|
|
|
// $zipFile = new ZipArchive();
|
|
|
|
// $zipFile->open("$archiveName.zip", ZIPARCHIVE::CREATE);
|
|
|
|
//
|
|
|
|
// foreach ($fileDetails as $filename => $fileContents) {
|
|
|
|
// $zipFile->addFromString($filename, $fileContents);
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// $zipFile->close();
|
|
|
|
//}
|
|
|
|
|