2012-02-19 14:54:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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-07 10:03:51 +00:00
|
|
|
use Composer\Pcre\Preg;
|
2015-09-24 14:32:36 +00:00
|
|
|
use Composer\Semver\VersionParser;
|
2020-04-19 14:00:21 +00:00
|
|
|
use Composer\Package\RootPackageInterface;
|
|
|
|
use Composer\Package\PackageInterface;
|
2015-09-24 14:32:36 +00:00
|
|
|
use Composer\Semver\Constraint\Constraint;
|
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;
|
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\CompletePackageInterface;
|
|
|
|
use Composer\Package\Package;
|
2012-02-19 14:54:48 +00:00
|
|
|
|
2020-09-10 15:21:11 +00:00
|
|
|
abstract class TestCase extends PolyfillTestCase
|
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>
|
|
|
|
*/
|
2016-12-23 14:01:05 +00:00
|
|
|
private static $executableCache = array();
|
2012-04-29 15:28:35 +00:00
|
|
|
|
2021-08-30 12:14:19 +00:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2016-04-01 11:07:42 +00:00
|
|
|
public static function getUniqueTmpDirectory()
|
|
|
|
{
|
|
|
|
$attempts = 5;
|
|
|
|
$root = sys_get_temp_dir();
|
|
|
|
|
|
|
|
do {
|
|
|
|
$unique = $root . DIRECTORY_SEPARATOR . uniqid('composer-test-' . rand(1000, 9000));
|
|
|
|
|
|
|
|
if (!file_exists($unique) && Silencer::call('mkdir', $unique, 0777)) {
|
|
|
|
return realpath($unique);
|
|
|
|
}
|
|
|
|
} while (--$attempts);
|
|
|
|
|
|
|
|
throw new \RuntimeException('Failed to create a unique temporary directory.');
|
|
|
|
}
|
|
|
|
|
2021-10-27 14:37:20 +00:00
|
|
|
/**
|
|
|
|
* @return VersionParser
|
|
|
|
*/
|
2012-04-29 15:28:35 +00:00
|
|
|
protected static function getVersionParser()
|
|
|
|
{
|
|
|
|
if (!self::$parser) {
|
|
|
|
self::$parser = new VersionParser();
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$parser;
|
|
|
|
}
|
|
|
|
|
2021-10-27 14:37:20 +00:00
|
|
|
/**
|
|
|
|
* @param Constraint::STR_OP_* $operator
|
|
|
|
* @param string $version
|
|
|
|
* @return Constraint
|
|
|
|
*/
|
2012-02-19 14:55:44 +00:00
|
|
|
protected function getVersionConstraint($operator, $version)
|
|
|
|
{
|
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
|
|
|
/**
|
|
|
|
* @template PackageClass of PackageInterface
|
|
|
|
*
|
|
|
|
* @param string $class FQCN to be instantiated
|
2021-10-27 14:37:20 +00:00
|
|
|
* @param string $name
|
|
|
|
* @param string $version
|
2021-10-17 12:43:34 +00:00
|
|
|
*
|
|
|
|
* @return CompletePackage|CompleteAliasPackage|RootPackage|RootAliasPackage
|
|
|
|
*
|
|
|
|
* @phpstan-param class-string<PackageClass> $class
|
|
|
|
*/
|
|
|
|
protected function getPackage($name, $version, $class = 'Composer\Package\CompletePackage')
|
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
|
|
|
|
2021-10-27 14:37:20 +00:00
|
|
|
/**
|
|
|
|
* @param string $version
|
|
|
|
* @return AliasPackage|RootAliasPackage|CompleteAliasPackage
|
|
|
|
*/
|
|
|
|
protected function getAliasPackage(Package $package, $version)
|
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
|
|
|
|
* @return void
|
|
|
|
*/
|
2020-04-19 14:00:21 +00:00
|
|
|
protected function configureLinks(PackageInterface $package, array $config)
|
|
|
|
{
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
2021-10-27 14:37:20 +00:00
|
|
|
/**
|
|
|
|
* @param string $directory
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-01-21 12:01:55 +00:00
|
|
|
protected static function ensureDirectoryExistsAndClear($directory)
|
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-10-27 14:37:20 +00:00
|
|
|
* @return void
|
|
|
|
*
|
2021-03-09 14:49:40 +00:00
|
|
|
* @throws \PHPUnit\Framework\SkippedTestError
|
2016-12-22 17:14:57 +00:00
|
|
|
*/
|
|
|
|
protected function skipIfNotExecutable($executableName)
|
|
|
|
{
|
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
|
|
|
}
|
2016-12-22 17:14:57 +00:00
|
|
|
}
|
2020-02-07 03:18:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $exception
|
|
|
|
* @param string|null $message
|
|
|
|
* @param int|null $code
|
2021-10-27 14:37:20 +00:00
|
|
|
* @return void
|
2020-02-07 03:18:45 +00:00
|
|
|
*/
|
|
|
|
public function setExpectedException($exception, $message = null, $code = null)
|
|
|
|
{
|
|
|
|
if (!class_exists('PHPUnit\Framework\Error\Notice')) {
|
|
|
|
$exception = str_replace('PHPUnit\\Framework\\Error\\', 'PHPUnit_Framework_Error_', $exception);
|
|
|
|
}
|
|
|
|
if (method_exists($this, 'expectException')) {
|
|
|
|
$this->expectException($exception);
|
|
|
|
if (null !== $message) {
|
|
|
|
$this->expectExceptionMessage($message);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
parent::setExpectedException($exception, $message, $code);
|
|
|
|
}
|
|
|
|
}
|
2021-10-08 20:46:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Transforms an escaped non-Windows command to match Windows escaping.
|
|
|
|
*
|
|
|
|
* @param string $cmd
|
|
|
|
*
|
|
|
|
* @return string The transformed command
|
|
|
|
*/
|
|
|
|
protected function getCmd($cmd)
|
|
|
|
{
|
|
|
|
if (Platform::isWindows()) {
|
2021-12-07 10:03:51 +00:00
|
|
|
$cmd = Preg::replaceCallback("/('[^']*')/", function ($m) {
|
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;
|
|
|
|
}
|
2012-02-19 14:54:48 +00:00
|
|
|
}
|