2022-02-23 15:58:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2012-02-19 14:54: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.
|
|
|
|
*/
|
|
|
|
|
2018-11-12 14:23:32 +00:00
|
|
|
namespace Composer\Test;
|
2012-02-19 14:54:48 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
use Composer\Config;
|
2022-05-11 14:05:35 +00:00
|
|
|
use Composer\Console\Application;
|
2021-12-09 16:09:07 +00:00
|
|
|
use Composer\IO\IOInterface;
|
2022-05-11 14:05:35 +00:00
|
|
|
use Composer\Json\JsonFile;
|
2022-06-09 09:43:59 +00:00
|
|
|
use Composer\Package\Locker;
|
2021-12-07 10:03:51 +00:00
|
|
|
use Composer\Pcre\Preg;
|
2022-06-09 09:43:59 +00:00
|
|
|
use Composer\Repository\InstalledFilesystemRepository;
|
2015-09-24 14:32:36 +00:00
|
|
|
use Composer\Semver\VersionParser;
|
2020-04-19 14:00:21 +00:00
|
|
|
use Composer\Package\PackageInterface;
|
2015-09-24 14:32:36 +00:00
|
|
|
use Composer\Semver\Constraint\Constraint;
|
2022-06-09 09:43:59 +00:00
|
|
|
use Composer\Test\Mock\FactoryMock;
|
2021-12-09 16:09:07 +00:00
|
|
|
use Composer\Test\Mock\HttpDownloaderMock;
|
2023-06-07 12:35:16 +00:00
|
|
|
use Composer\Test\Mock\IOMock;
|
2021-12-09 16:09:07 +00:00
|
|
|
use Composer\Test\Mock\ProcessExecutorMock;
|
2012-02-24 11:28:41 +00:00
|
|
|
use Composer\Util\Filesystem;
|
2021-10-08 20:46:07 +00:00
|
|
|
use Composer\Util\Platform;
|
2016-01-26 13:03:08 +00:00
|
|
|
use Composer\Util\Silencer;
|
2022-05-11 14:05:35 +00:00
|
|
|
use Symfony\Component\Console\Tester\ApplicationTester;
|
2016-12-22 17:14:57 +00:00
|
|
|
use Symfony\Component\Process\ExecutableFinder;
|
2020-04-19 14:00:21 +00:00
|
|
|
use Composer\Package\Loader\ArrayLoader;
|
|
|
|
use Composer\Package\BasePackage;
|
2021-10-17 12:43:34 +00:00
|
|
|
use Composer\Package\RootPackage;
|
2021-10-27 14:37:20 +00:00
|
|
|
use Composer\Package\AliasPackage;
|
2021-10-17 12:43:34 +00:00
|
|
|
use Composer\Package\RootAliasPackage;
|
|
|
|
use Composer\Package\CompletePackage;
|
|
|
|
use Composer\Package\CompleteAliasPackage;
|
2021-10-27 14:37:20 +00:00
|
|
|
use Composer\Package\Package;
|
2022-03-17 13:52:14 +00:00
|
|
|
use Symfony\Component\Process\Process;
|
2012-02-19 14:54:48 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
abstract class TestCase extends \PHPUnit\Framework\TestCase
|
2012-02-19 14:54:48 +00:00
|
|
|
{
|
2021-10-16 08:16:06 +00:00
|
|
|
/**
|
|
|
|
* @var ?VersionParser
|
|
|
|
*/
|
2012-04-29 15:28:35 +00:00
|
|
|
private static $parser;
|
2021-10-16 08:16:06 +00:00
|
|
|
/**
|
|
|
|
* @var array<string, bool>
|
|
|
|
*/
|
2022-08-17 12:20:07 +00:00
|
|
|
private static $executableCache = [];
|
2012-04-29 15:28:35 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
/**
|
|
|
|
* @var list<HttpDownloaderMock>
|
|
|
|
*/
|
|
|
|
private $httpDownloaderMocks = [];
|
|
|
|
/**
|
|
|
|
* @var list<ProcessExecutorMock>
|
|
|
|
*/
|
|
|
|
private $processExecutorMocks = [];
|
2023-06-07 12:35:16 +00:00
|
|
|
/**
|
|
|
|
* @var list<IOMock>
|
|
|
|
*/
|
|
|
|
private $ioMocks = [];
|
2022-05-11 14:05:35 +00:00
|
|
|
/**
|
|
|
|
* @var list<string>
|
|
|
|
*/
|
|
|
|
private $tempComposerDirs = [];
|
|
|
|
/** @var string|null */
|
|
|
|
private $prevCwd = null;
|
2021-12-09 16:09:07 +00:00
|
|
|
|
|
|
|
protected function tearDown(): void
|
|
|
|
{
|
|
|
|
parent::tearDown();
|
|
|
|
foreach ($this->httpDownloaderMocks as $mock) {
|
|
|
|
$mock->assertComplete();
|
|
|
|
}
|
|
|
|
foreach ($this->processExecutorMocks as $mock) {
|
|
|
|
$mock->assertComplete();
|
|
|
|
}
|
2023-06-07 12:35:16 +00:00
|
|
|
foreach ($this->ioMocks as $mock) {
|
|
|
|
$mock->assertComplete();
|
|
|
|
}
|
2022-05-11 14:05:35 +00:00
|
|
|
|
|
|
|
if (null !== $this->prevCwd) {
|
|
|
|
chdir($this->prevCwd);
|
|
|
|
$this->prevCwd = null;
|
|
|
|
Platform::clearEnv('COMPOSER_HOME');
|
|
|
|
Platform::clearEnv('COMPOSER_DISABLE_XDEBUG_WARN');
|
|
|
|
}
|
|
|
|
$fs = new Filesystem();
|
|
|
|
foreach ($this->tempComposerDirs as $dir) {
|
|
|
|
$fs->removeDirectory($dir);
|
|
|
|
}
|
2021-12-09 16:09:07 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 10:22:01 +00:00
|
|
|
public static function getUniqueTmpDirectory(): string
|
2016-04-01 11:07:42 +00:00
|
|
|
{
|
|
|
|
$attempts = 5;
|
|
|
|
$root = sys_get_temp_dir();
|
|
|
|
|
|
|
|
do {
|
2022-02-18 08:09:58 +00:00
|
|
|
$unique = $root . DIRECTORY_SEPARATOR . uniqid('composer-test-' . random_int(1000, 9000));
|
2016-04-01 11:07:42 +00:00
|
|
|
|
|
|
|
if (!file_exists($unique) && Silencer::call('mkdir', $unique, 0777)) {
|
|
|
|
return realpath($unique);
|
|
|
|
}
|
|
|
|
} while (--$attempts);
|
|
|
|
|
|
|
|
throw new \RuntimeException('Failed to create a unique temporary directory.');
|
|
|
|
}
|
|
|
|
|
2022-05-11 14:05:35 +00:00
|
|
|
/**
|
|
|
|
* Creates a composer.json / auth.json inside a temp dir and chdir() into it
|
|
|
|
*
|
|
|
|
* The directory will be cleaned up on tearDown automatically.
|
|
|
|
*
|
2022-06-09 09:43:59 +00:00
|
|
|
* @see createInstalledJson
|
|
|
|
* @see createComposerLock
|
|
|
|
* @see getApplicationTester
|
2022-05-11 14:05:35 +00:00
|
|
|
* @param mixed[] $composerJson
|
|
|
|
* @param mixed[] $authJson
|
|
|
|
* @return string the newly created temp dir
|
|
|
|
*/
|
|
|
|
public function initTempComposer(array $composerJson = [], array $authJson = []): string
|
|
|
|
{
|
|
|
|
$dir = self::getUniqueTmpDirectory();
|
|
|
|
|
|
|
|
$this->tempComposerDirs[] = $dir;
|
|
|
|
|
|
|
|
$this->prevCwd = Platform::getCwd();
|
|
|
|
|
|
|
|
Platform::putEnv('COMPOSER_HOME', $dir.'/composer-home');
|
|
|
|
Platform::putEnv('COMPOSER_DISABLE_XDEBUG_WARN', '1');
|
|
|
|
|
2022-05-27 12:51:46 +00:00
|
|
|
if ($composerJson === []) {
|
|
|
|
$composerJson = new \stdClass;
|
|
|
|
}
|
|
|
|
if ($authJson === []) {
|
|
|
|
$authJson = new \stdClass;
|
|
|
|
}
|
|
|
|
|
2022-08-16 08:41:58 +00:00
|
|
|
if (is_array($composerJson) && isset($composerJson['repositories']) && !isset($composerJson['repositories']['packagist.org'])) {
|
|
|
|
$composerJson['repositories']['packagist.org'] = false;
|
|
|
|
}
|
|
|
|
|
2022-05-11 14:05:35 +00:00
|
|
|
chdir($dir);
|
2022-05-27 12:51:46 +00:00
|
|
|
file_put_contents($dir.'/composer.json', JsonFile::encode($composerJson, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE));
|
|
|
|
file_put_contents($dir.'/auth.json', JsonFile::encode($authJson, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE));
|
2022-05-11 14:05:35 +00:00
|
|
|
|
|
|
|
return $dir;
|
|
|
|
}
|
|
|
|
|
2022-06-09 09:43:59 +00:00
|
|
|
/**
|
|
|
|
* Creates a vendor/composer/installed.json in CWD with the given packages
|
|
|
|
*
|
|
|
|
* @param PackageInterface[] $packages
|
|
|
|
* @param PackageInterface[] $devPackages
|
|
|
|
*/
|
|
|
|
protected function createInstalledJson(array $packages = [], array $devPackages = [], bool $devMode = true): void
|
|
|
|
{
|
|
|
|
mkdir('vendor/composer', 0777, true);
|
|
|
|
$repo = new InstalledFilesystemRepository(new JsonFile('vendor/composer/installed.json'));
|
2022-08-17 12:20:07 +00:00
|
|
|
$repo->setDevPackageNames(array_map(static function (PackageInterface $pkg) {
|
|
|
|
return $pkg->getPrettyName();
|
|
|
|
}, $devPackages));
|
2022-06-09 09:43:59 +00:00
|
|
|
foreach ($packages as $pkg) {
|
|
|
|
$repo->addPackage($pkg);
|
|
|
|
mkdir('vendor/'.$pkg->getName(), 0777, true);
|
|
|
|
}
|
|
|
|
foreach ($devPackages as $pkg) {
|
|
|
|
$repo->addPackage($pkg);
|
|
|
|
mkdir('vendor/'.$pkg->getName(), 0777, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
$factory = new FactoryMock();
|
|
|
|
$repo->write($devMode, $factory->createInstallationManager());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a composer.lock in CWD with the given packages
|
|
|
|
*
|
|
|
|
* @param PackageInterface[] $packages
|
|
|
|
* @param PackageInterface[] $devPackages
|
|
|
|
*/
|
|
|
|
protected function createComposerLock(array $packages = [], array $devPackages = []): void
|
|
|
|
{
|
|
|
|
$factory = new FactoryMock();
|
|
|
|
|
2023-06-07 12:35:16 +00:00
|
|
|
$locker = new Locker($this->getIOMock(), new JsonFile('./composer.lock'), $factory->createInstallationManager(), (string) file_get_contents('./composer.json'));
|
2022-06-09 09:43:59 +00:00
|
|
|
$locker->setLockData($packages, $devPackages, [], [], [], 'dev', [], false, false, []);
|
|
|
|
}
|
|
|
|
|
2022-05-11 14:05:35 +00:00
|
|
|
public function getApplicationTester(): ApplicationTester
|
|
|
|
{
|
|
|
|
$application = new Application();
|
|
|
|
$application->setAutoExit(false);
|
|
|
|
$application->setCatchExceptions(false);
|
2023-07-28 17:32:46 +00:00
|
|
|
if (method_exists($application, 'setCatchErrors')) {
|
|
|
|
$application->setCatchErrors(false);
|
|
|
|
}
|
2022-05-11 14:05:35 +00:00
|
|
|
|
|
|
|
return new ApplicationTester($application);
|
|
|
|
}
|
|
|
|
|
2022-02-18 10:22:01 +00:00
|
|
|
protected static function getVersionParser(): VersionParser
|
2012-04-29 15:28:35 +00:00
|
|
|
{
|
|
|
|
if (!self::$parser) {
|
|
|
|
self::$parser = new VersionParser();
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$parser;
|
|
|
|
}
|
|
|
|
|
2021-10-27 14:37:20 +00:00
|
|
|
/**
|
|
|
|
* @param Constraint::STR_OP_* $operator
|
|
|
|
*/
|
2022-11-24 13:39:08 +00:00
|
|
|
protected static function getVersionConstraint($operator, string $version): Constraint
|
2012-02-19 14:55:44 +00:00
|
|
|
{
|
2015-09-24 14:32:36 +00:00
|
|
|
$constraint = new Constraint(
|
2012-02-19 14:55:44 +00:00
|
|
|
$operator,
|
2012-04-29 15:28:35 +00:00
|
|
|
self::getVersionParser()->normalize($version)
|
2012-02-19 14:55:44 +00:00
|
|
|
);
|
2012-06-20 17:04:21 +00:00
|
|
|
|
|
|
|
$constraint->setPrettyString($operator.' '.$version);
|
|
|
|
|
|
|
|
return $constraint;
|
2012-02-19 14:55:44 +00:00
|
|
|
}
|
|
|
|
|
2021-10-17 12:43:34 +00:00
|
|
|
/**
|
2022-02-23 11:54:07 +00:00
|
|
|
* @template PackageClass of CompletePackage|CompleteAliasPackage
|
2021-10-17 12:43:34 +00:00
|
|
|
*
|
|
|
|
* @param string $class FQCN to be instantiated
|
|
|
|
*
|
|
|
|
* @return CompletePackage|CompleteAliasPackage|RootPackage|RootAliasPackage
|
|
|
|
*
|
|
|
|
* @phpstan-param class-string<PackageClass> $class
|
2022-02-18 13:32:38 +00:00
|
|
|
* @phpstan-return PackageClass
|
2021-10-17 12:43:34 +00:00
|
|
|
*/
|
2022-11-24 13:39:08 +00:00
|
|
|
protected static function getPackage(string $name = 'dummy/pkg', string $version = '1.0.0', string $class = 'Composer\Package\CompletePackage'): BasePackage
|
2012-02-19 14:54:48 +00:00
|
|
|
{
|
2012-04-29 15:28:35 +00:00
|
|
|
$normVersion = self::getVersionParser()->normalize($version);
|
|
|
|
|
2012-08-23 13:52:40 +00:00
|
|
|
return new $class($name, $normVersion, $version);
|
2012-02-19 14:54:48 +00:00
|
|
|
}
|
2012-02-24 11:28:41 +00:00
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
protected static function getRootPackage(string $name = '__root__', string $version = '1.0.0'): RootPackage
|
2022-02-22 15:47:09 +00:00
|
|
|
{
|
|
|
|
$normVersion = self::getVersionParser()->normalize($version);
|
|
|
|
|
|
|
|
return new RootPackage($name, $normVersion, $version);
|
|
|
|
}
|
|
|
|
|
2021-10-27 14:37:20 +00:00
|
|
|
/**
|
2022-04-29 08:30:00 +00:00
|
|
|
* @return ($package is RootPackage ? RootAliasPackage : ($package is CompletePackage ? CompleteAliasPackage : AliasPackage))
|
2021-10-27 14:37:20 +00:00
|
|
|
*/
|
2022-11-24 13:39:08 +00:00
|
|
|
protected static function getAliasPackage(Package $package, string $version): AliasPackage
|
2012-04-27 17:41:53 +00:00
|
|
|
{
|
|
|
|
$normVersion = self::getVersionParser()->normalize($version);
|
2012-06-14 10:10:01 +00:00
|
|
|
|
2021-10-27 14:37:20 +00:00
|
|
|
if ($package instanceof RootPackage) {
|
|
|
|
return new RootAliasPackage($package, $normVersion, $version);
|
|
|
|
}
|
|
|
|
if ($package instanceof CompletePackage) {
|
|
|
|
return new CompleteAliasPackage($package, $normVersion, $version);
|
2020-04-19 14:00:21 +00:00
|
|
|
}
|
|
|
|
|
2021-10-27 14:37:20 +00:00
|
|
|
return new AliasPackage($package, $normVersion, $version);
|
2020-04-19 14:00:21 +00:00
|
|
|
}
|
|
|
|
|
2021-10-27 14:37:20 +00:00
|
|
|
/**
|
|
|
|
* @param array<string, array<string, string>> $config
|
|
|
|
*/
|
2022-11-24 13:39:08 +00:00
|
|
|
protected static function configureLinks(PackageInterface $package, array $config): void
|
2020-04-19 14:00:21 +00:00
|
|
|
{
|
|
|
|
$arrayLoader = new ArrayLoader();
|
|
|
|
|
|
|
|
foreach (BasePackage::$supportedLinkTypes as $type => $opts) {
|
|
|
|
if (isset($config[$type])) {
|
|
|
|
$method = 'set'.ucfirst($opts['method']);
|
|
|
|
$package->{$method}(
|
|
|
|
$arrayLoader->parseLinks(
|
|
|
|
$package->getName(),
|
|
|
|
$package->getPrettyVersion(),
|
2021-08-21 15:41:52 +00:00
|
|
|
$opts['method'],
|
2020-04-19 14:00:21 +00:00
|
|
|
$config[$type]
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2012-04-27 17:41:53 +00:00
|
|
|
}
|
|
|
|
|
2022-02-22 15:47:09 +00:00
|
|
|
/**
|
|
|
|
* @param array<mixed> $configOptions
|
|
|
|
*/
|
|
|
|
protected function getConfig(array $configOptions = [], bool $useEnvironment = false): Config
|
|
|
|
{
|
|
|
|
$config = new Config($useEnvironment);
|
|
|
|
$config->merge(['config' => $configOptions], 'test');
|
|
|
|
|
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static function ensureDirectoryExistsAndClear(string $directory): void
|
2012-02-24 11:28:41 +00:00
|
|
|
{
|
|
|
|
$fs = new Filesystem();
|
2016-01-21 12:01:55 +00:00
|
|
|
|
2012-02-24 11:28:41 +00:00
|
|
|
if (is_dir($directory)) {
|
|
|
|
$fs->removeDirectory($directory);
|
|
|
|
}
|
2016-01-21 12:01:55 +00:00
|
|
|
|
2012-02-24 11:28:41 +00:00
|
|
|
mkdir($directory, 0777, true);
|
|
|
|
}
|
2016-12-22 17:14:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check whether or not the given name is an available executable.
|
|
|
|
*
|
|
|
|
* @param string $executableName The name of the binary to test.
|
|
|
|
*
|
2021-03-09 14:49:40 +00:00
|
|
|
* @throws \PHPUnit\Framework\SkippedTestError
|
2016-12-22 17:14:57 +00:00
|
|
|
*/
|
2022-02-22 15:47:09 +00:00
|
|
|
protected function skipIfNotExecutable(string $executableName): void
|
2016-12-22 17:14:57 +00:00
|
|
|
{
|
2016-12-23 14:01:05 +00:00
|
|
|
if (!isset(self::$executableCache[$executableName])) {
|
|
|
|
$finder = new ExecutableFinder();
|
|
|
|
self::$executableCache[$executableName] = (bool) $finder->find($executableName);
|
|
|
|
}
|
2016-12-22 17:14:57 +00:00
|
|
|
|
2016-12-23 14:01:05 +00:00
|
|
|
if (false === self::$executableCache[$executableName]) {
|
2016-12-22 17:14:57 +00:00
|
|
|
$this->markTestSkipped($executableName . ' is not found or not executable.');
|
2016-12-23 14:01:05 +00:00
|
|
|
}
|
2020-02-07 03:18:45 +00:00
|
|
|
}
|
2021-10-08 20:46:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Transforms an escaped non-Windows command to match Windows escaping.
|
|
|
|
*
|
|
|
|
* @return string The transformed command
|
|
|
|
*/
|
2022-11-24 13:39:08 +00:00
|
|
|
protected static function getCmd(string $cmd): string
|
2021-10-08 20:46:07 +00:00
|
|
|
{
|
|
|
|
if (Platform::isWindows()) {
|
2022-08-17 12:20:07 +00:00
|
|
|
$cmd = Preg::replaceCallback("/('[^']*')/", static function ($m) {
|
2022-11-03 20:47:26 +00:00
|
|
|
assert(is_string($m[1]));
|
2021-10-08 20:46:07 +00:00
|
|
|
// Double-quotes are used only when needed
|
|
|
|
$char = (strpbrk($m[1], " \t^&|<>()") !== false || $m[1] === "''") ? '"' : '';
|
2021-10-27 14:18:24 +00:00
|
|
|
|
2021-10-08 20:46:07 +00:00
|
|
|
return str_replace("'", $char, $m[1]);
|
|
|
|
}, $cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $cmd;
|
|
|
|
}
|
2021-12-09 16:09:07 +00:00
|
|
|
|
2022-08-17 12:20:07 +00:00
|
|
|
protected function getHttpDownloaderMock(?IOInterface $io = null, ?Config $config = null): HttpDownloaderMock
|
2021-12-09 16:09:07 +00:00
|
|
|
{
|
|
|
|
$this->httpDownloaderMocks[] = $mock = new HttpDownloaderMock($io, $config);
|
|
|
|
|
|
|
|
return $mock;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getProcessExecutorMock(): ProcessExecutorMock
|
|
|
|
{
|
2022-03-17 13:52:14 +00:00
|
|
|
$this->processExecutorMocks[] = $mock = new ProcessExecutorMock($this->getMockBuilder(Process::class));
|
2021-12-09 16:09:07 +00:00
|
|
|
|
|
|
|
return $mock;
|
|
|
|
}
|
2021-12-10 12:14:04 +00:00
|
|
|
|
2023-06-07 12:35:16 +00:00
|
|
|
/**
|
|
|
|
* @param IOInterface::* $verbosity
|
|
|
|
*/
|
|
|
|
protected function getIOMock(int $verbosity = IOInterface::DEBUG): IOMock
|
|
|
|
{
|
|
|
|
$this->ioMocks[] = $mock = new IOMock($verbosity);
|
|
|
|
|
|
|
|
return $mock;
|
|
|
|
}
|
|
|
|
|
2021-12-10 12:14:04 +00:00
|
|
|
protected function createTempFile(?string $dir = null): string
|
|
|
|
{
|
|
|
|
$dir = $dir ?? sys_get_temp_dir();
|
|
|
|
$name = tempnam($dir, 'c');
|
|
|
|
if ($name === false) {
|
|
|
|
throw new \UnexpectedValueException('tempnam failed to create a temporary file in '.$dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $name;
|
|
|
|
}
|
2012-02-19 14:54:48 +00:00
|
|
|
}
|