2022-02-23 15:58:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2012-01-22 21:06:09 +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\Downloader;
|
|
|
|
|
|
|
|
use Composer\Downloader\GitDownloader;
|
2012-09-07 13:02:39 +00:00
|
|
|
use Composer\Config;
|
2021-12-07 10:03:51 +00:00
|
|
|
use Composer\Pcre\Preg;
|
2018-11-12 14:23:32 +00:00
|
|
|
use Composer\Test\TestCase;
|
2013-07-26 13:44:24 +00:00
|
|
|
use Composer\Util\Filesystem;
|
2016-02-03 21:39:16 +00:00
|
|
|
use Composer\Util\Platform;
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2016-01-21 12:01:55 +00:00
|
|
|
class GitDownloaderTest extends TestCase
|
2012-01-22 21:06:09 +00:00
|
|
|
{
|
2015-12-14 14:35:27 +00:00
|
|
|
/** @var Filesystem */
|
|
|
|
private $fs;
|
|
|
|
/** @var string */
|
|
|
|
private $workingDir;
|
|
|
|
|
2021-12-08 16:03:05 +00:00
|
|
|
protected function setUp(): void
|
2015-12-14 14:35:27 +00:00
|
|
|
{
|
2016-12-24 00:19:50 +00:00
|
|
|
$this->skipIfNotExecutable('git');
|
|
|
|
|
2020-06-17 14:59:43 +00:00
|
|
|
$this->initGitVersion('1.0.0');
|
|
|
|
|
2015-12-14 14:35:27 +00:00
|
|
|
$this->fs = new Filesystem;
|
2022-05-11 14:05:35 +00:00
|
|
|
$this->workingDir = self::getUniqueTmpDirectory();
|
2015-12-14 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
2021-12-08 16:03:05 +00:00
|
|
|
protected function tearDown(): void
|
2015-12-14 14:35:27 +00:00
|
|
|
{
|
2021-12-09 16:09:07 +00:00
|
|
|
parent::tearDown();
|
2015-12-14 14:35:27 +00:00
|
|
|
if (is_dir($this->workingDir)) {
|
|
|
|
$this->fs->removeDirectory($this->workingDir);
|
|
|
|
}
|
2016-07-02 16:20:25 +00:00
|
|
|
|
2020-06-17 14:59:43 +00:00
|
|
|
$this->initGitVersion(false);
|
|
|
|
}
|
|
|
|
|
2021-10-30 08:21:50 +00:00
|
|
|
/**
|
|
|
|
* @param string|bool $version
|
|
|
|
*/
|
2022-02-18 09:38:54 +00:00
|
|
|
private function initGitVersion($version): void
|
2020-06-17 14:59:43 +00:00
|
|
|
{
|
2016-07-02 16:20:25 +00:00
|
|
|
// reset the static version cache
|
|
|
|
$refl = new \ReflectionProperty('Composer\Util\Git', 'version');
|
|
|
|
$refl->setAccessible(true);
|
2020-06-17 14:59:43 +00:00
|
|
|
$refl->setValue(null, $version);
|
2015-12-14 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
2021-10-30 08:21:50 +00:00
|
|
|
/**
|
|
|
|
* @param ?\Composer\Config $config
|
|
|
|
*/
|
2022-02-22 15:47:09 +00:00
|
|
|
protected function setupConfig($config = null): Config
|
2017-03-08 14:07:29 +00:00
|
|
|
{
|
2012-09-07 13:02:39 +00:00
|
|
|
if (!$config) {
|
2012-09-07 23:51:33 +00:00
|
|
|
$config = new Config();
|
2012-09-07 13:02:39 +00:00
|
|
|
}
|
2015-12-10 23:55:50 +00:00
|
|
|
if (!$config->has('home')) {
|
|
|
|
$tmpDir = realpath(sys_get_temp_dir()).DIRECTORY_SEPARATOR.'cmptest-'.md5(uniqid('', true));
|
2022-08-17 12:20:07 +00:00
|
|
|
$config->merge(['config' => ['home' => $tmpDir]]);
|
2015-12-10 23:55:50 +00:00
|
|
|
}
|
2017-03-08 14:07:29 +00:00
|
|
|
|
2016-06-19 00:21:50 +00:00
|
|
|
return $config;
|
|
|
|
}
|
|
|
|
|
2021-10-30 08:21:50 +00:00
|
|
|
/**
|
|
|
|
* @param \Composer\IO\IOInterface $io
|
|
|
|
* @param \Composer\Config $config
|
|
|
|
* @param \Composer\Test\Mock\ProcessExecutorMock $executor
|
|
|
|
* @param \Composer\Util\Filesystem $filesystem
|
|
|
|
*/
|
2022-08-17 12:20:07 +00:00
|
|
|
protected function getDownloaderMock(?\Composer\IO\IOInterface $io = null, ?Config $config = null, ?\Composer\Test\Mock\ProcessExecutorMock $executor = null, ?Filesystem $filesystem = null): GitDownloader
|
2016-06-19 00:21:50 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$io = $io ?: $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
2021-12-09 16:09:07 +00:00
|
|
|
$executor = $executor ?: $this->getProcessExecutorMock();
|
2018-04-12 08:24:56 +00:00
|
|
|
$filesystem = $filesystem ?: $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
|
2016-06-19 00:21:50 +00:00
|
|
|
$config = $this->setupConfig($config);
|
2012-03-07 23:11:52 +00:00
|
|
|
|
2012-09-07 13:02:39 +00:00
|
|
|
return new GitDownloader($io, $config, $executor, $filesystem);
|
2012-03-07 23:11:52 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testDownloadForPackageWithoutSourceReference(): void
|
2012-01-22 21:06:09 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2012-01-22 21:06:09 +00:00
|
|
|
$packageMock->expects($this->once())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue(null));
|
|
|
|
|
2021-12-09 19:55:26 +00:00
|
|
|
self::expectException('InvalidArgumentException');
|
2020-09-10 15:21:11 +00:00
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock();
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, '/path');
|
|
|
|
$downloader->prepare('install', $packageMock, '/path');
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->install($packageMock, '/path');
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('install', $packageMock, '/path');
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testDownload(): void
|
2012-01-22 21:06:09 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2012-01-22 21:06:09 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
2012-07-10 17:02:06 +00:00
|
|
|
->will($this->returnValue('1234567890123456789012345678901234567890'));
|
2012-03-07 23:11:52 +00:00
|
|
|
$packageMock->expects($this->any())
|
2013-07-01 23:45:43 +00:00
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://example.com/composer/composer']));
|
2014-10-20 19:16:14 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrl')
|
|
|
|
->will($this->returnValue('https://example.com/composer/composer'));
|
2012-07-10 17:02:06 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('dev-master'));
|
2012-03-11 20:01:41 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2021-08-18 21:35:27 +00:00
|
|
|
$this->winCompat("git clone --no-checkout -- 'https://example.com/composer/composer' 'composerPath' && cd 'composerPath' && git remote add composer -- 'https://example.com/composer/composer' && git fetch composer && git remote set-url origin -- 'https://example.com/composer/composer' && git remote set-url composer -- 'https://example.com/composer/composer'"),
|
|
|
|
$this->winCompat("git branch -r"),
|
|
|
|
$this->winCompat("(git checkout 'master' -- || git checkout -B 'master' 'composer/master' --) && git reset --hard '1234567890123456789012345678901234567890' --"),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2012-06-20 10:05:18 +00:00
|
|
|
|
2021-08-18 21:35:27 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, null, $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, 'composerPath');
|
|
|
|
$downloader->prepare('install', $packageMock, 'composerPath');
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->install($packageMock, 'composerPath');
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('install', $packageMock, 'composerPath');
|
2012-03-07 23:11:52 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testDownloadWithCache(): void
|
2016-06-19 00:35:34 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2016-06-19 00:35:34 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('1234567890123456789012345678901234567890'));
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://example.com/composer/composer']));
|
2016-06-19 00:35:34 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrl')
|
|
|
|
->will($this->returnValue('https://example.com/composer/composer'));
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('dev-master'));
|
|
|
|
|
2020-06-17 14:59:43 +00:00
|
|
|
$this->initGitVersion('2.17.0');
|
2016-06-19 00:35:34 +00:00
|
|
|
|
|
|
|
$config = new Config;
|
|
|
|
$this->setupConfig($config);
|
2021-12-07 10:03:51 +00:00
|
|
|
$cachePath = $config->get('cache-vcs-dir').'/'.Preg::replace('{[^a-z0-9.]}i', '-', 'https://example.com/composer/composer').'/';
|
2016-07-02 17:34:02 +00:00
|
|
|
|
2019-10-30 14:24:53 +00:00
|
|
|
$filesystem = new \Composer\Util\Filesystem;
|
|
|
|
$filesystem->removeDirectory($cachePath);
|
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
|
|
|
['cmd' => $this->winCompat(sprintf("git clone --mirror -- 'https://example.com/composer/composer' '%s'", $cachePath)), 'callback' => static function () use ($cachePath): void {
|
2021-10-27 14:18:24 +00:00
|
|
|
@mkdir($cachePath, 0777, true);
|
2022-08-17 12:20:07 +00:00
|
|
|
}],
|
|
|
|
['cmd' => 'git rev-parse --git-dir', 'stdout' => '.'],
|
2021-08-18 21:35:27 +00:00
|
|
|
$this->winCompat('git rev-parse --quiet --verify \'1234567890123456789012345678901234567890^{commit}\''),
|
|
|
|
$this->winCompat(sprintf("git clone --no-checkout '%1\$s' 'composerPath' --dissociate --reference '%1\$s' && cd 'composerPath' && git remote set-url origin -- 'https://example.com/composer/composer' && git remote add composer -- 'https://example.com/composer/composer'", $cachePath)),
|
|
|
|
'git branch -r',
|
2021-10-27 14:18:24 +00:00
|
|
|
$this->winCompat("(git checkout 'master' -- || git checkout -B 'master' 'composer/master' --) && git reset --hard '1234567890123456789012345678901234567890' --"),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2021-08-18 21:35:27 +00:00
|
|
|
|
|
|
|
$downloader = $this->getDownloaderMock(null, $config, $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, 'composerPath');
|
|
|
|
$downloader->prepare('install', $packageMock, 'composerPath');
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->install($packageMock, 'composerPath');
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('install', $packageMock, 'composerPath');
|
2016-07-02 17:34:02 +00:00
|
|
|
@rmdir($cachePath);
|
2016-06-19 00:35:34 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testDownloadUsesVariousProtocolsAndSetsPushUrlForGithub(): void
|
2012-03-07 23:11:52 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2012-03-07 23:11:52 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
2012-03-11 20:01:41 +00:00
|
|
|
$packageMock->expects($this->any())
|
2013-07-01 23:45:43 +00:00
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://github.com/mirrors/composer', 'https://github.com/composer/composer']));
|
2014-10-20 19:16:14 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrl')
|
|
|
|
->will($this->returnValue('https://github.com/composer/composer'));
|
2012-07-10 17:02:06 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('1.0.0'));
|
2021-08-18 21:35:27 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
|
|
|
[
|
2021-08-18 21:35:27 +00:00
|
|
|
'cmd' => $this->winCompat("git clone --no-checkout -- 'https://github.com/mirrors/composer' 'composerPath' && cd 'composerPath' && git remote add composer -- 'https://github.com/mirrors/composer' && git fetch composer && git remote set-url origin -- 'https://github.com/mirrors/composer' && git remote set-url composer -- 'https://github.com/mirrors/composer'"),
|
|
|
|
'return' => 1,
|
|
|
|
'stderr' => 'Error1',
|
2022-08-17 12:20:07 +00:00
|
|
|
],
|
2021-08-18 21:35:27 +00:00
|
|
|
$this->winCompat("git clone --no-checkout -- 'git@github.com:mirrors/composer' 'composerPath' && cd 'composerPath' && git remote add composer -- 'git@github.com:mirrors/composer' && git fetch composer && git remote set-url origin -- 'git@github.com:mirrors/composer' && git remote set-url composer -- 'git@github.com:mirrors/composer'"),
|
|
|
|
$this->winCompat("git remote set-url origin -- 'https://github.com/composer/composer'"),
|
|
|
|
$this->winCompat("git remote set-url --push origin -- 'git@github.com:composer/composer.git'"),
|
|
|
|
'git branch -r',
|
|
|
|
$this->winCompat("git checkout 'ref' -- && git reset --hard 'ref' --"),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2021-08-18 21:35:27 +00:00
|
|
|
|
|
|
|
$downloader = $this->getDownloaderMock(null, new Config(), $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, 'composerPath');
|
|
|
|
$downloader->prepare('install', $packageMock, 'composerPath');
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->install($packageMock, 'composerPath');
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('install', $packageMock, 'composerPath');
|
2012-09-07 13:02:39 +00:00
|
|
|
}
|
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
public static function pushUrlProvider(): array
|
2013-06-16 02:50:16 +00:00
|
|
|
{
|
2022-08-17 12:20:07 +00:00
|
|
|
return [
|
2016-03-01 13:43:59 +00:00
|
|
|
// ssh proto should use git@ all along
|
2022-08-17 12:20:07 +00:00
|
|
|
[['ssh'], 'git@github.com:composer/composer', 'git@github.com:composer/composer.git'],
|
2016-03-01 13:43:59 +00:00
|
|
|
// auto-proto uses git@ by default for push url, but not fetch
|
2022-08-17 12:20:07 +00:00
|
|
|
[['https', 'ssh', 'git'], 'https://github.com/composer/composer', 'git@github.com:composer/composer.git'],
|
2016-03-01 13:43:59 +00:00
|
|
|
// if restricted to https then push url is not overwritten to git@
|
2022-08-17 12:20:07 +00:00
|
|
|
[['https'], 'https://github.com/composer/composer', 'https://github.com/composer/composer.git'],
|
|
|
|
];
|
2013-06-16 02:50:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider pushUrlProvider
|
2021-11-02 13:32:09 +00:00
|
|
|
* @param string[] $protocols
|
2013-06-16 02:50:16 +00:00
|
|
|
*/
|
2022-02-22 15:47:09 +00:00
|
|
|
public function testDownloadAndSetPushUrlUseCustomVariousProtocolsForGithub(array $protocols, string $url, string $pushUrl): void
|
2012-09-07 13:02:39 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2012-09-07 13:02:39 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$packageMock->expects($this->any())
|
2013-07-01 23:45:43 +00:00
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://github.com/composer/composer']));
|
2014-10-20 19:16:14 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrl')
|
|
|
|
->will($this->returnValue('https://github.com/composer/composer'));
|
2012-09-07 13:02:39 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('1.0.0'));
|
2013-06-16 02:50:16 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2021-08-18 15:12:41 +00:00
|
|
|
$this->winCompat("git clone --no-checkout -- '{$url}' 'composerPath' && cd 'composerPath' && git remote add composer -- '{$url}' && git fetch composer && git remote set-url origin -- '{$url}' && git remote set-url composer -- '{$url}'"),
|
|
|
|
$this->winCompat("git remote set-url --push origin -- '{$pushUrl}'"),
|
|
|
|
'git branch -r',
|
|
|
|
$this->winCompat("git checkout 'ref' -- && git reset --hard 'ref' --"),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2012-09-07 13:02:39 +00:00
|
|
|
|
|
|
|
$config = new Config();
|
2022-08-17 12:20:07 +00:00
|
|
|
$config->merge(['config' => ['github-protocols' => $protocols]]);
|
2012-09-07 13:02:39 +00:00
|
|
|
|
2021-08-18 15:12:41 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, $config, $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, 'composerPath');
|
|
|
|
$downloader->prepare('install', $packageMock, 'composerPath');
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->install($packageMock, 'composerPath');
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('install', $packageMock, 'composerPath');
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testDownloadThrowsRuntimeExceptionIfGitCommandFails(): void
|
2012-02-20 23:12:39 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2012-02-20 23:12:39 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
2012-03-07 23:11:52 +00:00
|
|
|
$packageMock->expects($this->any())
|
2013-07-01 23:45:43 +00:00
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://example.com/composer/composer']));
|
2021-08-18 15:12:41 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrl')
|
|
|
|
->will($this->returnValue('https://example.com/composer/composer'));
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('1.0.0'));
|
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
|
|
|
[
|
2021-08-18 15:12:41 +00:00
|
|
|
'cmd' => $this->winCompat("git clone --no-checkout -- 'https://example.com/composer/composer' 'composerPath' && cd 'composerPath' && git remote add composer -- 'https://example.com/composer/composer' && git fetch composer && git remote set-url origin -- 'https://example.com/composer/composer' && git remote set-url composer -- 'https://example.com/composer/composer'"),
|
|
|
|
'return' => 1,
|
2022-08-17 12:20:07 +00:00
|
|
|
],
|
|
|
|
]);
|
2012-02-20 23:12:39 +00:00
|
|
|
|
2019-08-29 09:37:23 +00:00
|
|
|
// not using PHPUnit's expected exception because Prophecy exceptions extend from RuntimeException too so it is not safe
|
|
|
|
try {
|
2021-08-18 15:12:41 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, null, $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, 'composerPath');
|
|
|
|
$downloader->prepare('install', $packageMock, 'composerPath');
|
|
|
|
$downloader->install($packageMock, 'composerPath');
|
|
|
|
$downloader->cleanup('install', $packageMock, 'composerPath');
|
2021-08-18 15:12:41 +00:00
|
|
|
|
2019-08-29 09:37:23 +00:00
|
|
|
$this->fail('This test should throw');
|
|
|
|
} catch (\RuntimeException $e) {
|
|
|
|
if ('RuntimeException' !== get_class($e)) {
|
|
|
|
throw $e;
|
|
|
|
}
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertEquals('RuntimeException', get_class($e));
|
2019-08-29 09:37:23 +00:00
|
|
|
}
|
2012-02-20 23:12:39 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testUpdateforPackageWithoutSourceReference(): void
|
2012-01-22 21:06:09 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$initialPackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
|
|
|
$sourcePackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2012-01-22 21:06:09 +00:00
|
|
|
$sourcePackageMock->expects($this->once())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue(null));
|
|
|
|
|
2021-12-09 19:55:26 +00:00
|
|
|
self::expectException('InvalidArgumentException');
|
2020-09-10 15:21:11 +00:00
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock();
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($sourcePackageMock, '/path', $initialPackageMock);
|
|
|
|
$downloader->prepare('update', $sourcePackageMock, '/path', $initialPackageMock);
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->update($initialPackageMock, $sourcePackageMock, '/path');
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('update', $sourcePackageMock, '/path', $initialPackageMock);
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testUpdate(): void
|
2012-01-22 21:06:09 +00:00
|
|
|
{
|
2021-04-27 11:00:40 +00:00
|
|
|
$expectedGitUpdateCommand = $this->winCompat("(git remote set-url composer -- 'https://github.com/composer/composer' && git rev-parse --quiet --verify 'ref^{commit}' || (git fetch composer && git fetch --tags composer)) && git remote set-url composer -- 'https://github.com/composer/composer'");
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2012-01-22 21:06:09 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$packageMock->expects($this->any())
|
2013-07-01 23:45:43 +00:00
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://github.com/composer/composer']));
|
2012-07-10 17:02:06 +00:00
|
|
|
$packageMock->expects($this->any())
|
2018-04-13 11:48:30 +00:00
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.0.0.0'));
|
2021-08-18 15:12:41 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('1.0.0'));
|
2019-08-29 09:37:23 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2021-08-18 15:12:41 +00:00
|
|
|
$this->winCompat('git show-ref --head -d'),
|
|
|
|
$this->winCompat('git status --porcelain --untracked-files=no'),
|
|
|
|
$this->winCompat('git remote -v'),
|
|
|
|
$expectedGitUpdateCommand,
|
|
|
|
$this->winCompat('git branch -r'),
|
|
|
|
$this->winCompat("git checkout 'ref' -- && git reset --hard 'ref' --"),
|
|
|
|
$this->winCompat('git remote -v'),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2016-04-18 09:10:12 +00:00
|
|
|
|
|
|
|
$this->fs->ensureDirectoryExists($this->workingDir.'/.git');
|
2021-08-18 15:12:41 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, new Config(), $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, $this->workingDir, $packageMock);
|
|
|
|
$downloader->prepare('update', $packageMock, $this->workingDir, $packageMock);
|
2016-04-18 09:10:12 +00:00
|
|
|
$downloader->update($packageMock, $packageMock, $this->workingDir);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('update', $packageMock, $this->workingDir, $packageMock);
|
2016-04-18 09:10:12 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testUpdateWithNewRepoUrl(): void
|
2016-04-18 09:10:12 +00:00
|
|
|
{
|
2021-04-27 11:00:40 +00:00
|
|
|
$expectedGitUpdateCommand = $this->winCompat("(git remote set-url composer -- 'https://github.com/composer/composer' && git rev-parse --quiet --verify 'ref^{commit}' || (git fetch composer && git fetch --tags composer)) && git remote set-url composer -- 'https://github.com/composer/composer'");
|
2016-04-18 09:10:12 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2016-04-18 09:10:12 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://github.com/composer/composer']));
|
2016-04-18 09:10:12 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrl')
|
|
|
|
->will($this->returnValue('https://github.com/composer/composer'));
|
|
|
|
$packageMock->expects($this->any())
|
2018-04-13 11:48:30 +00:00
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.0.0.0'));
|
2021-08-18 15:12:41 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('1.0.0'));
|
2019-08-29 09:37:23 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2021-08-18 15:12:41 +00:00
|
|
|
$this->winCompat("git show-ref --head -d"),
|
|
|
|
$this->winCompat("git status --porcelain --untracked-files=no"),
|
|
|
|
$this->winCompat("git remote -v"),
|
|
|
|
$this->winCompat($expectedGitUpdateCommand),
|
|
|
|
'git branch -r',
|
|
|
|
$this->winCompat("git checkout 'ref' -- && git reset --hard 'ref' --"),
|
2022-08-17 12:20:07 +00:00
|
|
|
[
|
2021-08-18 15:12:41 +00:00
|
|
|
'cmd' => $this->winCompat("git remote -v"),
|
|
|
|
'stdout' => 'origin https://github.com/old/url (fetch)
|
2019-08-29 09:37:23 +00:00
|
|
|
origin https://github.com/old/url (push)
|
|
|
|
composer https://github.com/old/url (fetch)
|
|
|
|
composer https://github.com/old/url (push)
|
2021-08-18 15:12:41 +00:00
|
|
|
',
|
2022-08-17 12:20:07 +00:00
|
|
|
],
|
2021-08-18 15:12:41 +00:00
|
|
|
$this->winCompat("git remote set-url origin -- 'https://github.com/composer/composer'"),
|
|
|
|
$this->winCompat("git remote set-url --push origin -- 'git@github.com:composer/composer.git'"),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2015-12-14 14:35:27 +00:00
|
|
|
$this->fs->ensureDirectoryExists($this->workingDir.'/.git');
|
2021-08-18 15:12:41 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, new Config(), $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, $this->workingDir, $packageMock);
|
|
|
|
$downloader->prepare('update', $packageMock, $this->workingDir, $packageMock);
|
2015-12-14 14:35:27 +00:00
|
|
|
$downloader->update($packageMock, $packageMock, $this->workingDir);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('update', $packageMock, $this->workingDir, $packageMock);
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
2012-02-20 23:12:39 +00:00
|
|
|
/**
|
2015-12-14 14:35:27 +00:00
|
|
|
* @group failing
|
2012-02-20 23:12:39 +00:00
|
|
|
*/
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testUpdateThrowsRuntimeExceptionIfGitCommandFails(): void
|
2012-02-20 23:12:39 +00:00
|
|
|
{
|
2021-04-27 11:00:40 +00:00
|
|
|
$expectedGitUpdateCommand = $this->winCompat("(git remote set-url composer -- 'https://github.com/composer/composer' && git rev-parse --quiet --verify 'ref^{commit}' || (git fetch composer && git fetch --tags composer)) && git remote set-url composer -- 'https://github.com/composer/composer'");
|
|
|
|
$expectedGitUpdateCommand2 = $this->winCompat("(git remote set-url composer -- 'git@github.com:composer/composer' && git rev-parse --quiet --verify 'ref^{commit}' || (git fetch composer && git fetch --tags composer)) && git remote set-url composer -- 'git@github.com:composer/composer'");
|
2012-02-20 23:12:39 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2012-02-20 23:12:39 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$packageMock->expects($this->any())
|
2013-07-01 23:45:43 +00:00
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://github.com/composer/composer']));
|
2018-04-13 11:48:30 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.0.0.0'));
|
2019-08-29 09:37:23 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2021-08-18 21:35:27 +00:00
|
|
|
$this->winCompat('git show-ref --head -d'),
|
|
|
|
$this->winCompat('git status --porcelain --untracked-files=no'),
|
|
|
|
$this->winCompat('git remote -v'),
|
2022-08-17 12:20:07 +00:00
|
|
|
[
|
2021-08-18 21:35:27 +00:00
|
|
|
'cmd' => $expectedGitUpdateCommand,
|
|
|
|
'return' => 1,
|
2022-08-17 12:20:07 +00:00
|
|
|
],
|
|
|
|
[
|
2021-08-18 21:35:27 +00:00
|
|
|
'cmd' => $expectedGitUpdateCommand2,
|
|
|
|
'return' => 1,
|
2022-08-17 12:20:07 +00:00
|
|
|
],
|
2021-08-18 21:35:27 +00:00
|
|
|
$this->winCompat('git --version'),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2016-01-21 12:01:55 +00:00
|
|
|
|
2015-12-14 14:35:27 +00:00
|
|
|
$this->fs->ensureDirectoryExists($this->workingDir.'/.git');
|
2019-08-29 09:37:23 +00:00
|
|
|
|
|
|
|
// not using PHPUnit's expected exception because Prophecy exceptions extend from RuntimeException too so it is not safe
|
|
|
|
try {
|
2021-08-18 21:35:27 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, new Config(), $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, $this->workingDir, $packageMock);
|
|
|
|
$downloader->prepare('update', $packageMock, $this->workingDir, $packageMock);
|
|
|
|
$downloader->update($packageMock, $packageMock, $this->workingDir);
|
|
|
|
$downloader->cleanup('update', $packageMock, $this->workingDir, $packageMock);
|
2021-08-18 21:35:27 +00:00
|
|
|
|
2019-08-29 09:37:23 +00:00
|
|
|
$this->fail('This test should throw');
|
|
|
|
} catch (\RuntimeException $e) {
|
|
|
|
if ('RuntimeException' !== get_class($e)) {
|
|
|
|
throw $e;
|
|
|
|
}
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertEquals('RuntimeException', get_class($e));
|
2019-08-29 09:37:23 +00:00
|
|
|
}
|
2012-02-20 23:12:39 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testUpdateDoesntThrowsRuntimeExceptionIfGitCommandFailsAtFirstButIsAbleToRecover(): void
|
2016-02-17 16:42:48 +00:00
|
|
|
{
|
2021-10-13 20:23:18 +00:00
|
|
|
$expectedFirstGitUpdateCommand = $this->winCompat("(git remote set-url composer -- '".(Platform::isWindows() ? 'C:\\' : '/')."' && git rev-parse --quiet --verify 'ref^{commit}' || (git fetch composer && git fetch --tags composer)) && git remote set-url composer -- '".(Platform::isWindows() ? 'C:\\' : '/')."'");
|
2021-04-27 11:00:40 +00:00
|
|
|
$expectedSecondGitUpdateCommand = $this->winCompat("(git remote set-url composer -- 'https://github.com/composer/composer' && git rev-parse --quiet --verify 'ref^{commit}' || (git fetch composer && git fetch --tags composer)) && git remote set-url composer -- 'https://github.com/composer/composer'");
|
2016-02-17 16:42:48 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2016-02-17 16:42:48 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
2018-04-13 11:48:30 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.0.0.0'));
|
2016-02-17 16:42:48 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue([Platform::isWindows() ? 'C:\\' : '/', 'https://github.com/composer/composer']));
|
2021-08-18 21:35:27 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('1.0.0'));
|
2019-08-29 09:37:23 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2021-08-18 21:35:27 +00:00
|
|
|
$this->winCompat('git show-ref --head -d'),
|
|
|
|
$this->winCompat('git status --porcelain --untracked-files=no'),
|
|
|
|
$this->winCompat('git remote -v'),
|
2022-08-17 12:20:07 +00:00
|
|
|
[
|
2021-08-18 21:35:27 +00:00
|
|
|
'cmd' => $expectedFirstGitUpdateCommand,
|
|
|
|
'return' => 1,
|
2022-08-17 12:20:07 +00:00
|
|
|
],
|
2021-08-18 21:35:27 +00:00
|
|
|
$this->winCompat('git --version'),
|
|
|
|
$this->winCompat('git remote -v'),
|
2022-08-17 12:20:07 +00:00
|
|
|
[
|
2021-08-18 21:35:27 +00:00
|
|
|
'cmd' => $expectedSecondGitUpdateCommand,
|
|
|
|
'return' => 0,
|
2022-08-17 12:20:07 +00:00
|
|
|
],
|
2021-08-18 21:35:27 +00:00
|
|
|
$this->winCompat('git branch -r'),
|
|
|
|
$this->winCompat("git checkout 'ref' -- && git reset --hard 'ref' --"),
|
|
|
|
$this->winCompat('git remote -v'),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2016-02-17 16:42:48 +00:00
|
|
|
|
|
|
|
$this->fs->ensureDirectoryExists($this->workingDir.'/.git');
|
2021-08-18 21:35:27 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, new Config(), $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($packageMock, $this->workingDir, $packageMock);
|
|
|
|
$downloader->prepare('update', $packageMock, $this->workingDir, $packageMock);
|
2016-02-17 16:42:48 +00:00
|
|
|
$downloader->update($packageMock, $packageMock, $this->workingDir);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('update', $packageMock, $this->workingDir, $packageMock);
|
2016-02-17 16:42:48 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testDowngradeShowsAppropriateMessage(): void
|
2018-02-15 22:38:41 +00:00
|
|
|
{
|
2019-02-18 13:03:23 +00:00
|
|
|
$oldPackage = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2018-02-15 22:38:41 +00:00
|
|
|
$oldPackage->expects($this->any())
|
2018-04-13 11:48:30 +00:00
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.2.0.0'));
|
2018-02-15 22:38:41 +00:00
|
|
|
$oldPackage->expects($this->any())
|
|
|
|
->method('getFullPrettyVersion')
|
2018-04-13 11:48:30 +00:00
|
|
|
->will($this->returnValue('1.2.0'));
|
2018-02-15 22:38:41 +00:00
|
|
|
$oldPackage->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$oldPackage->expects($this->any())
|
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['/foo/bar', 'https://github.com/composer/composer']));
|
2018-02-15 22:38:41 +00:00
|
|
|
|
2019-02-18 13:03:23 +00:00
|
|
|
$newPackage = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2018-02-15 22:38:41 +00:00
|
|
|
$newPackage->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$newPackage->expects($this->any())
|
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://github.com/composer/composer']));
|
2018-02-15 22:38:41 +00:00
|
|
|
$newPackage->expects($this->any())
|
2018-04-13 11:48:30 +00:00
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.0.0.0'));
|
2021-08-18 21:35:27 +00:00
|
|
|
$newPackage->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('1.0.0'));
|
2018-02-15 22:38:41 +00:00
|
|
|
$newPackage->expects($this->any())
|
|
|
|
->method('getFullPrettyVersion')
|
2018-04-13 11:48:30 +00:00
|
|
|
->will($this->returnValue('1.0.0'));
|
2018-02-15 22:38:41 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2018-02-15 22:38:41 +00:00
|
|
|
|
2023-06-07 12:35:16 +00:00
|
|
|
$ioMock = $this->getIOMock();
|
|
|
|
$ioMock->expects([
|
|
|
|
['text' => '{Downgrading .*}', 'regex' => true],
|
|
|
|
]);
|
2018-02-15 22:38:41 +00:00
|
|
|
|
|
|
|
$this->fs->ensureDirectoryExists($this->workingDir.'/.git');
|
2021-08-18 21:35:27 +00:00
|
|
|
$downloader = $this->getDownloaderMock($ioMock, null, $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($newPackage, $this->workingDir, $oldPackage);
|
|
|
|
$downloader->prepare('update', $newPackage, $this->workingDir, $oldPackage);
|
2018-04-13 11:48:30 +00:00
|
|
|
$downloader->update($oldPackage, $newPackage, $this->workingDir);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('update', $newPackage, $this->workingDir, $oldPackage);
|
2018-02-15 22:38:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testNotUsingDowngradingWithReferences(): void
|
2018-02-15 22:38:41 +00:00
|
|
|
{
|
2019-02-18 13:03:23 +00:00
|
|
|
$oldPackage = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2018-02-15 22:38:41 +00:00
|
|
|
$oldPackage->expects($this->any())
|
2018-04-13 11:48:30 +00:00
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('dev-ref'));
|
2018-02-15 22:38:41 +00:00
|
|
|
$oldPackage->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$oldPackage->expects($this->any())
|
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['/foo/bar', 'https://github.com/composer/composer']));
|
2018-02-15 22:38:41 +00:00
|
|
|
|
2019-02-18 13:03:23 +00:00
|
|
|
$newPackage = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2018-02-15 22:38:41 +00:00
|
|
|
$newPackage->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$newPackage->expects($this->any())
|
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['https://github.com/composer/composer']));
|
2018-02-15 22:38:41 +00:00
|
|
|
$newPackage->expects($this->any())
|
2018-04-13 11:48:30 +00:00
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('dev-ref2'));
|
2021-08-18 21:35:27 +00:00
|
|
|
$newPackage->expects($this->any())
|
|
|
|
->method('getPrettyVersion')
|
|
|
|
->will($this->returnValue('dev-ref2'));
|
2018-02-15 22:38:41 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2018-02-15 22:38:41 +00:00
|
|
|
|
2023-06-07 12:35:16 +00:00
|
|
|
$ioMock = $this->getIOMock();
|
|
|
|
$ioMock->expects([
|
|
|
|
['text' => '{Upgrading .*}', 'regex' => true],
|
|
|
|
]);
|
2018-02-15 22:38:41 +00:00
|
|
|
|
|
|
|
$this->fs->ensureDirectoryExists($this->workingDir.'/.git');
|
2021-08-18 21:35:27 +00:00
|
|
|
$downloader = $this->getDownloaderMock($ioMock, null, $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->download($newPackage, $this->workingDir, $oldPackage);
|
|
|
|
$downloader->prepare('update', $newPackage, $this->workingDir, $oldPackage);
|
2018-04-13 11:48:30 +00:00
|
|
|
$downloader->update($oldPackage, $newPackage, $this->workingDir);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('update', $newPackage, $this->workingDir, $oldPackage);
|
2018-02-15 22:38:41 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testRemove(): void
|
2012-01-22 21:06:09 +00:00
|
|
|
{
|
2021-08-18 21:35:27 +00:00
|
|
|
$expectedGitResetCommand = $this->winCompat("git status --porcelain --untracked-files=no");
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2021-08-18 21:35:27 +00:00
|
|
|
'git show-ref --head -d',
|
|
|
|
$expectedGitResetCommand,
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2021-08-18 21:35:27 +00:00
|
|
|
|
|
|
|
$this->fs->ensureDirectoryExists($this->workingDir.'/.git');
|
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$filesystem = $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
|
2020-02-07 06:35:07 +00:00
|
|
|
$filesystem->expects($this->once())
|
2021-02-25 10:28:07 +00:00
|
|
|
->method('removeDirectoryAsync')
|
2021-08-18 21:35:27 +00:00
|
|
|
->with($this->equalTo($this->workingDir))
|
2021-02-25 10:28:07 +00:00
|
|
|
->will($this->returnValue(\React\Promise\resolve(true)));
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2021-08-18 21:35:27 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, null, $process, $filesystem);
|
|
|
|
$downloader->prepare('uninstall', $packageMock, $this->workingDir);
|
|
|
|
$downloader->remove($packageMock, $this->workingDir);
|
|
|
|
$downloader->cleanup('uninstall', $packageMock, $this->workingDir);
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testGetInstallationSource(): void
|
2012-01-22 21:06:09 +00:00
|
|
|
{
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock();
|
2012-02-18 15:59:39 +00:00
|
|
|
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertEquals('source', $downloader->getInstallationSource());
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
2012-02-18 15:59:39 +00:00
|
|
|
|
2022-02-22 15:47:09 +00:00
|
|
|
private function winCompat(string $cmd): string
|
2012-02-18 15:59:39 +00:00
|
|
|
{
|
2016-02-03 21:39:16 +00:00
|
|
|
if (Platform::isWindows()) {
|
2013-06-08 14:41:34 +00:00
|
|
|
$cmd = str_replace('cd ', 'cd /D ', $cmd);
|
2022-02-22 15:47:09 +00:00
|
|
|
$cmd = str_replace('composerPath', Platform::getCwd().'/composerPath', $cmd);
|
2013-06-08 14:41:34 +00:00
|
|
|
|
2022-11-24 13:39:08 +00:00
|
|
|
return self::getCmd($cmd);
|
2012-02-18 15:59:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $cmd;
|
|
|
|
}
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|