2022-02-23 15:58:18 +00:00
|
|
|
|
<?php declare(strict_types=1);
|
2011-09-25 17:59:10 +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.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-10-05 08:45:22 +00:00
|
|
|
|
namespace Composer\Test\Repository;
|
2011-09-25 17:59:10 +00:00
|
|
|
|
|
2021-05-21 11:54:18 +00:00
|
|
|
|
use Composer\Package\RootPackageInterface;
|
2016-10-05 08:45:22 +00:00
|
|
|
|
use Composer\Repository\FilesystemRepository;
|
2018-11-12 14:23:32 +00:00
|
|
|
|
use Composer\Test\TestCase;
|
2020-04-19 14:00:21 +00:00
|
|
|
|
use Composer\Json\JsonFile;
|
2021-07-12 11:54:01 +00:00
|
|
|
|
use Composer\Util\Filesystem;
|
2011-09-25 17:59:10 +00:00
|
|
|
|
|
2011-11-20 14:06:12 +00:00
|
|
|
|
class FilesystemRepositoryTest extends TestCase
|
2011-09-25 17:59:10 +00:00
|
|
|
|
{
|
2022-02-18 09:38:54 +00:00
|
|
|
|
public function testRepositoryRead(): void
|
2011-09-25 17:59:10 +00:00
|
|
|
|
{
|
2011-10-01 13:01:33 +00:00
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
|
|
|
|
|
|
$repository = new FilesystemRepository($json);
|
|
|
|
|
|
|
|
|
|
$json
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('read')
|
2022-08-17 12:20:07 +00:00
|
|
|
|
->will($this->returnValue([
|
|
|
|
|
['name' => 'package1', 'version' => '1.0.0-beta', 'type' => 'vendor'],
|
|
|
|
|
]));
|
2011-10-02 18:18:57 +00:00
|
|
|
|
$json
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('exists')
|
|
|
|
|
->will($this->returnValue(true));
|
2011-10-01 13:01:33 +00:00
|
|
|
|
|
|
|
|
|
$packages = $repository->getPackages();
|
2011-09-25 17:59:10 +00:00
|
|
|
|
|
2017-11-30 14:58:10 +00:00
|
|
|
|
$this->assertCount(1, $packages);
|
2011-10-01 13:01:33 +00:00
|
|
|
|
$this->assertSame('package1', $packages[0]->getName());
|
|
|
|
|
$this->assertSame('1.0.0.0-beta', $packages[0]->getVersion());
|
|
|
|
|
$this->assertSame('vendor', $packages[0]->getType());
|
2011-09-25 17:59:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
|
public function testCorruptedRepositoryFile(): void
|
2011-10-30 08:09:46 +00:00
|
|
|
|
{
|
2021-12-09 19:55:26 +00:00
|
|
|
|
self::expectException('Composer\Repository\InvalidRepositoryException');
|
2011-10-30 08:09:46 +00:00
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
|
|
|
|
|
|
$repository = new FilesystemRepository($json);
|
|
|
|
|
|
|
|
|
|
$json
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('read')
|
|
|
|
|
->will($this->returnValue('foo'));
|
|
|
|
|
$json
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('exists')
|
|
|
|
|
->will($this->returnValue(true));
|
|
|
|
|
|
|
|
|
|
$repository->getPackages();
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
|
public function testUnexistentRepositoryFile(): void
|
2011-10-30 08:10:49 +00:00
|
|
|
|
{
|
|
|
|
|
$json = $this->createJsonFileMock();
|
|
|
|
|
|
|
|
|
|
$repository = new FilesystemRepository($json);
|
|
|
|
|
|
|
|
|
|
$json
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('exists')
|
|
|
|
|
->will($this->returnValue(false));
|
|
|
|
|
|
2022-08-17 12:20:07 +00:00
|
|
|
|
$this->assertEquals([], $repository->getPackages());
|
2011-10-30 08:10:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
|
public function testRepositoryWrite(): void
|
2011-09-25 17:59:10 +00:00
|
|
|
|
{
|
2011-10-01 13:01:33 +00:00
|
|
|
|
$json = $this->createJsonFileMock();
|
2011-09-25 17:59:10 +00:00
|
|
|
|
|
2021-07-12 11:54:01 +00:00
|
|
|
|
$repoDir = realpath(sys_get_temp_dir()).'/repo_write_test/';
|
|
|
|
|
$fs = new Filesystem();
|
|
|
|
|
$fs->removeDirectory($repoDir);
|
|
|
|
|
|
2011-10-01 13:01:33 +00:00
|
|
|
|
$repository = new FilesystemRepository($json);
|
2019-08-02 19:39:26 +00:00
|
|
|
|
$im = $this->getMockBuilder('Composer\Installer\InstallationManager')
|
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->getMock();
|
2020-11-04 22:41:58 +00:00
|
|
|
|
$im->expects($this->exactly(2))
|
2019-08-02 19:39:26 +00:00
|
|
|
|
->method('getInstallPath')
|
2021-07-12 11:54:01 +00:00
|
|
|
|
->will($this->returnValue($repoDir.'/vendor/woop/woop'));
|
2011-09-25 17:59:10 +00:00
|
|
|
|
|
2011-10-01 13:01:33 +00:00
|
|
|
|
$json
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('read')
|
2022-08-17 12:20:07 +00:00
|
|
|
|
->will($this->returnValue([]));
|
2019-08-02 19:39:26 +00:00
|
|
|
|
$json
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('getPath')
|
2021-07-12 11:54:01 +00:00
|
|
|
|
->will($this->returnValue($repoDir.'/vendor/composer/installed.json'));
|
2011-10-02 18:18:57 +00:00
|
|
|
|
$json
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('exists')
|
|
|
|
|
->will($this->returnValue(true));
|
2011-10-01 13:01:33 +00:00
|
|
|
|
$json
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('write')
|
2022-08-17 12:20:07 +00:00
|
|
|
|
->with([
|
|
|
|
|
'packages' => [
|
|
|
|
|
['name' => 'mypkg', 'type' => 'library', 'version' => '0.1.10', 'version_normalized' => '0.1.10.0', 'install-path' => '../woop/woop'],
|
|
|
|
|
['name' => 'mypkg2', 'type' => 'library', 'version' => '1.2.3', 'version_normalized' => '1.2.3.0', 'install-path' => '../woop/woop'],
|
|
|
|
|
],
|
2019-02-21 11:27:02 +00:00
|
|
|
|
'dev' => true,
|
2022-08-17 12:20:07 +00:00
|
|
|
|
'dev-package-names' => ['mypkg2'],
|
|
|
|
|
]);
|
2011-09-25 17:59:10 +00:00
|
|
|
|
|
2022-08-17 12:20:07 +00:00
|
|
|
|
$repository->setDevPackageNames(['mypkg2']);
|
2022-11-24 13:39:08 +00:00
|
|
|
|
$repository->addPackage(self::getPackage('mypkg2', '1.2.3'));
|
|
|
|
|
$repository->addPackage(self::getPackage('mypkg', '0.1.10'));
|
2019-08-02 19:39:26 +00:00
|
|
|
|
$repository->write(true, $im);
|
2011-10-01 13:01:33 +00:00
|
|
|
|
}
|
2011-09-25 17:59:10 +00:00
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
|
public function testRepositoryWritesInstalledPhp(): void
|
2020-04-19 14:00:21 +00:00
|
|
|
|
{
|
2022-05-11 14:05:35 +00:00
|
|
|
|
$dir = self::getUniqueTmpDirectory();
|
2021-02-25 09:00:36 +00:00
|
|
|
|
chdir($dir);
|
|
|
|
|
|
2020-04-19 14:00:21 +00:00
|
|
|
|
$json = new JsonFile($dir.'/installed.json');
|
|
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
|
$rootPackage = self::getRootPackage('__root__', 'dev-master');
|
2020-04-19 14:00:21 +00:00
|
|
|
|
$rootPackage->setSourceReference('sourceref-by-default');
|
|
|
|
|
$rootPackage->setDistReference('distref');
|
2022-11-24 13:39:08 +00:00
|
|
|
|
self::configureLinks($rootPackage, ['provide' => ['foo/impl' => '2.0']]);
|
|
|
|
|
$rootPackage = self::getAliasPackage($rootPackage, '1.10.x-dev');
|
2020-04-19 14:00:21 +00:00
|
|
|
|
|
|
|
|
|
$repository = new FilesystemRepository($json, true, $rootPackage);
|
2022-08-17 12:20:07 +00:00
|
|
|
|
$repository->setDevPackageNames(['c/c']);
|
2022-11-24 13:39:08 +00:00
|
|
|
|
$pkg = self::getPackage('a/provider', '1.1');
|
|
|
|
|
self::configureLinks($pkg, ['provide' => ['foo/impl' => '^1.1', 'foo/impl2' => '2.0']]);
|
2020-04-19 14:00:21 +00:00
|
|
|
|
$pkg->setDistReference('distref-as-no-source');
|
|
|
|
|
$repository->addPackage($pkg);
|
|
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
|
$pkg = self::getPackage('a/provider2', '1.2');
|
|
|
|
|
self::configureLinks($pkg, ['provide' => ['foo/impl' => 'self.version', 'foo/impl2' => '2.0']]);
|
2020-04-19 14:00:21 +00:00
|
|
|
|
$pkg->setSourceReference('sourceref');
|
|
|
|
|
$pkg->setDistReference('distref-as-installed-from-dist');
|
|
|
|
|
$pkg->setInstallationSource('dist');
|
|
|
|
|
$repository->addPackage($pkg);
|
|
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
|
$repository->addPackage(self::getAliasPackage($pkg, '1.4'));
|
2020-04-19 14:00:21 +00:00
|
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
|
$pkg = self::getPackage('b/replacer', '2.2');
|
|
|
|
|
self::configureLinks($pkg, ['replace' => ['foo/impl2' => 'self.version', 'foo/replaced' => '^3.0']]);
|
2020-04-19 14:00:21 +00:00
|
|
|
|
$repository->addPackage($pkg);
|
|
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
|
$pkg = self::getPackage('c/c', '3.0');
|
2024-02-08 13:33:59 +00:00
|
|
|
|
$pkg->setDistReference('{${passthru(\'bash -i\')}} Foo\\Bar' . "\n\ttab\vverticaltab\0");
|
2020-04-19 14:00:21 +00:00
|
|
|
|
$repository->addPackage($pkg);
|
|
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
|
$pkg = self::getPackage('meta/package', '3.0');
|
2021-05-21 11:54:18 +00:00
|
|
|
|
$pkg->setType('metapackage');
|
|
|
|
|
$repository->addPackage($pkg);
|
|
|
|
|
|
2020-04-19 14:00:21 +00:00
|
|
|
|
$im = $this->getMockBuilder('Composer\Installer\InstallationManager')
|
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->getMock();
|
|
|
|
|
$im->expects($this->any())
|
|
|
|
|
->method('getInstallPath')
|
2022-08-17 12:20:07 +00:00
|
|
|
|
->will($this->returnCallback(static function ($package) use ($dir): string {
|
2021-05-21 11:54:18 +00:00
|
|
|
|
// check for empty paths handling
|
|
|
|
|
if ($package->getType() === 'metapackage') {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($package->getName() === 'c/c') {
|
|
|
|
|
// check for absolute paths
|
2024-02-08 13:33:59 +00:00
|
|
|
|
return '/foo/bar/ven\do{}r/c/c${}';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($package->getName() === 'a/provider') {
|
|
|
|
|
return 'vendor/{${passthru(\'bash -i\')}}';
|
2021-05-21 11:54:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// check for cwd
|
|
|
|
|
if ($package instanceof RootPackageInterface) {
|
|
|
|
|
return $dir;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// check for relative paths
|
|
|
|
|
return 'vendor/'.$package->getName();
|
|
|
|
|
}));
|
2020-04-19 14:00:21 +00:00
|
|
|
|
|
|
|
|
|
$repository->write(true, $im);
|
2024-02-08 13:33:59 +00:00
|
|
|
|
$this->assertSame(file_get_contents(__DIR__.'/Fixtures/installed.php'), file_get_contents($dir.'/installed.php'));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testSafelyLoadInstalledVersions(): void
|
|
|
|
|
{
|
|
|
|
|
$result = FilesystemRepository::safelyLoadInstalledVersions(__DIR__.'/Fixtures/installed_complex.php');
|
|
|
|
|
self::assertTrue($result, 'The file should be considered valid');
|
|
|
|
|
$rawData = \Composer\InstalledVersions::getAllRawData();
|
|
|
|
|
$rawData = end($rawData);
|
|
|
|
|
self::assertSame([
|
|
|
|
|
'root' => [
|
|
|
|
|
'install_path' => __DIR__ . '/Fixtures/./',
|
|
|
|
|
'aliases' => [
|
|
|
|
|
0 => '1.10.x-dev',
|
|
|
|
|
1 => '2.10.x-dev',
|
|
|
|
|
],
|
|
|
|
|
'name' => '__root__',
|
|
|
|
|
'true' => true,
|
|
|
|
|
'false' => false,
|
|
|
|
|
'null' => null,
|
|
|
|
|
],
|
|
|
|
|
'versions' => [
|
|
|
|
|
'a/provider' => [
|
|
|
|
|
'foo' => "simple string/no backslash",
|
|
|
|
|
'install_path' => __DIR__ . '/Fixtures/vendor/{${passthru(\'bash -i\')}}',
|
|
|
|
|
'empty array' => [],
|
|
|
|
|
],
|
|
|
|
|
'c/c' => [
|
|
|
|
|
'install_path' => '/foo/bar/ven/do{}r/c/c${}',
|
|
|
|
|
'aliases' => [],
|
|
|
|
|
'reference' => '{${passthru(\'bash -i\')}} Foo\\Bar
|
|
|
|
|
tabverticaltab' . "\0",
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
], $rawData);
|
2020-04-19 14:00:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-10-27 13:29:52 +00:00
|
|
|
|
/**
|
|
|
|
|
* @return \PHPUnit\Framework\MockObject\MockObject&\Composer\Json\JsonFile
|
|
|
|
|
*/
|
2011-10-01 13:01:33 +00:00
|
|
|
|
private function createJsonFileMock()
|
|
|
|
|
{
|
|
|
|
|
return $this->getMockBuilder('Composer\Json\JsonFile')
|
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
|
->getMock();
|
2011-09-25 17:59:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|