1
0
Fork 0
composer/tests/Composer/Test/Repository/PathRepositoryTest.php

178 lines
6.1 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
2015-08-25 21:06:48 +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\Test\Repository;
2015-08-25 21:06:48 +00:00
use Composer\Repository\PathRepository;
use Composer\Test\TestCase;
2022-04-28 19:20:40 +00:00
use Composer\Util\HttpDownloader;
use Composer\Util\Loop;
2022-02-22 15:47:09 +00:00
use Composer\Util\Platform;
2022-04-28 19:20:40 +00:00
use Composer\Util\ProcessExecutor;
2015-08-25 21:06:48 +00:00
class PathRepositoryTest extends TestCase
{
public function testLoadPackageFromFileSystemWithIncorrectPath(): void
{
2021-12-09 19:55:26 +00:00
self::expectException('RuntimeException');
2022-08-17 12:20:07 +00:00
$repositoryUrl = implode(DIRECTORY_SEPARATOR, [__DIR__, 'Fixtures', 'path', 'missing']);
$repository = $this->createPathRepo(['url' => $repositoryUrl]);
$repository->getPackages();
}
public function testLoadPackageFromFileSystemWithVersion(): void
2015-08-25 21:06:48 +00:00
{
2022-08-17 12:20:07 +00:00
$repositoryUrl = implode(DIRECTORY_SEPARATOR, [__DIR__, 'Fixtures', 'path', 'with-version']);
$repository = $this->createPathRepo(['url' => $repositoryUrl]);
2015-08-25 21:06:48 +00:00
$repository->getPackages();
self::assertSame(1, $repository->count());
self::assertTrue($repository->hasPackage(self::getPackage('test/path-versioned', '0.0.2')));
2015-08-25 21:06:48 +00:00
}
public function testLoadPackageFromFileSystemWithoutVersion(): void
2015-08-25 21:06:48 +00:00
{
2022-08-17 12:20:07 +00:00
$repositoryUrl = implode(DIRECTORY_SEPARATOR, [__DIR__, 'Fixtures', 'path', 'without-version']);
$repository = $this->createPathRepo(['url' => $repositoryUrl]);
2015-08-25 21:06:48 +00:00
$packages = $repository->getPackages();
self::assertGreaterThanOrEqual(1, $repository->count());
2015-08-25 21:06:48 +00:00
$package = $packages[0];
self::assertSame('test/path-unversioned', $package->getName());
2015-08-25 21:06:48 +00:00
$packageVersion = $package->getVersion();
self::assertNotEmpty($packageVersion);
2015-08-25 21:06:48 +00:00
}
public function testLoadPackageFromFileSystemWithWildcard(): void
2020-10-08 10:33:16 +00:00
{
2022-08-17 12:20:07 +00:00
$repositoryUrl = implode(DIRECTORY_SEPARATOR, [__DIR__, 'Fixtures', 'path', '*']);
$repository = $this->createPathRepo(['url' => $repositoryUrl]);
2020-10-08 10:33:16 +00:00
$packages = $repository->getPackages();
2022-08-17 12:20:07 +00:00
$names = [];
self::assertGreaterThanOrEqual(2, $repository->count());
$package = $packages[0];
$names[] = $package->getName();
2020-10-08 10:33:16 +00:00
$package = $packages[1];
$names[] = $package->getName();
2020-10-08 10:33:16 +00:00
sort($names);
self::assertEquals(['test/path-unversioned', 'test/path-versioned'], $names);
2020-10-08 10:33:16 +00:00
}
public function testLoadPackageWithExplicitVersions(): void
{
2022-08-17 12:20:07 +00:00
$options = [
'versions' => [
'test/path-unversioned' => '4.3.2.1',
'test/path-versioned' => '3.2.1.0',
2022-08-17 12:20:07 +00:00
],
];
$repositoryUrl = implode(DIRECTORY_SEPARATOR, [__DIR__, 'Fixtures', 'path', '*']);
$repository = $this->createPathRepo(['url' => $repositoryUrl, 'options' => $options]);
$packages = $repository->getPackages();
2022-08-17 12:20:07 +00:00
$versions = [];
self::assertEquals(2, $repository->count());
$package = $packages[0];
$versions[$package->getName()] = $package->getVersion();
$package = $packages[1];
$versions[$package->getName()] = $package->getVersion();
2020-10-08 10:33:16 +00:00
ksort($versions);
self::assertSame(['test/path-unversioned' => '4.3.2.1', 'test/path-versioned' => '3.2.1.0'], $versions);
}
/**
* Verify relative repository URLs remain relative, see #4439
*/
public function testUrlRemainsRelative(): void
{
2016-12-23 18:57:00 +00:00
// realpath() does not fully expand the paths
// PHP Bug https://bugs.php.net/bug.php?id=72642
2022-08-17 12:20:07 +00:00
$repositoryUrl = implode(DIRECTORY_SEPARATOR, [realpath(realpath(__DIR__)), 'Fixtures', 'path', 'with-version']);
2016-12-23 18:57:00 +00:00
// getcwd() not necessarily match __DIR__
// PHP Bug https://bugs.php.net/bug.php?id=73797
2022-02-22 15:47:09 +00:00
$relativeUrl = ltrim(substr($repositoryUrl, strlen(realpath(realpath(Platform::getCwd())))), DIRECTORY_SEPARATOR);
2022-08-17 12:20:07 +00:00
$repository = $this->createPathRepo(['url' => $relativeUrl]);
$packages = $repository->getPackages();
self::assertSame(1, $repository->count());
$package = $packages[0];
self::assertSame('test/path-versioned', $package->getName());
// Convert platform specific separators back to generic URL slashes
$relativeUrl = str_replace(DIRECTORY_SEPARATOR, '/', $relativeUrl);
self::assertSame($relativeUrl, $package->getDistUrl());
}
public function testReferenceNone(): void
{
2022-08-17 12:20:07 +00:00
$options = [
'reference' => 'none',
2022-08-17 12:20:07 +00:00
];
$repositoryUrl = implode(DIRECTORY_SEPARATOR, [__DIR__, 'Fixtures', 'path', '*']);
$repository = $this->createPathRepo(['url' => $repositoryUrl, 'options' => $options]);
$packages = $repository->getPackages();
self::assertGreaterThanOrEqual(2, $repository->count());
foreach ($packages as $package) {
self::assertEquals($package->getDistReference(), null);
}
}
public function testReferenceConfig(): void
{
2022-08-17 12:20:07 +00:00
$options = [
'reference' => 'config',
'relative' => true,
2022-08-17 12:20:07 +00:00
];
$repositoryUrl = implode(DIRECTORY_SEPARATOR, [__DIR__, 'Fixtures', 'path', '*']);
$repository = $this->createPathRepo(['url' => $repositoryUrl, 'options' => $options]);
$packages = $repository->getPackages();
self::assertGreaterThanOrEqual(2, $repository->count());
foreach ($packages as $package) {
self::assertEquals(
$package->getDistReference(),
hash('sha1', file_get_contents($package->getDistUrl() . '/composer.json') . serialize($options))
);
}
}
2022-04-28 19:20:40 +00:00
/**
* @param array<mixed> $options
*/
private function createPathRepo(array $options): PathRepository
{
$io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
$config = new \Composer\Config();
$proc = new ProcessExecutor();
$loop = new Loop(new HttpDownloader($io, $config), $proc);
return new PathRepository($options, $io, $config, null, null, $proc);
}
2015-08-25 21:06:48 +00:00
}