123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744 |
- <?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.
- */
- namespace Composer\Test\Downloader;
- use Composer\Downloader\GitDownloader;
- use Composer\Config;
- use Composer\Test\TestCase;
- use Composer\Util\Filesystem;
- use Composer\Util\Platform;
- use Prophecy\Argument;
- class GitDownloaderTest extends TestCase
- {
- /** @var Filesystem */
- private $fs;
- /** @var string */
- private $workingDir;
- protected function setUp()
- {
- $this->skipIfNotExecutable('git');
- $this->fs = new Filesystem;
- $this->workingDir = $this->getUniqueTmpDirectory();
- }
- protected function tearDown()
- {
- if (is_dir($this->workingDir)) {
- $this->fs->removeDirectory($this->workingDir);
- }
- // reset the static version cache
- $refl = new \ReflectionProperty('Composer\Util\Git', 'version');
- $refl->setAccessible(true);
- $refl->setValue(null, null);
- }
- protected function setupConfig($config = null)
- {
- if (!$config) {
- $config = new Config();
- }
- if (!$config->has('home')) {
- $tmpDir = realpath(sys_get_temp_dir()).DIRECTORY_SEPARATOR.'cmptest-'.md5(uniqid('', true));
- $config->merge(array('config' => array('home' => $tmpDir)));
- }
- return $config;
- }
- protected function getDownloaderMock($io = null, $config = null, $executor = null, $filesystem = null)
- {
- $io = $io ?: $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
- $executor = $executor ?: $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $filesystem = $filesystem ?: $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
- $config = $this->setupConfig($config);
- return new GitDownloader($io, $config, $executor, $filesystem);
- }
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testDownloadForPackageWithoutSourceReference()
- {
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->once())
- ->method('getSourceReference')
- ->will($this->returnValue(null));
- $downloader = $this->getDownloaderMock();
- $downloader->download($packageMock, '/path');
- $downloader->prepare('install', $packageMock, '/path');
- $downloader->install($packageMock, '/path');
- $downloader->cleanup('install', $packageMock, '/path');
- }
- public function testDownload()
- {
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('1234567890123456789012345678901234567890'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://example.com/composer/composer')));
- $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'));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->at(0))
- ->method('execute')
- ->with($this->equalTo($this->winCompat('git --version')))
- ->will($this->returnCallback(function ($command, &$output = null) {
- $output = 'git version 1.0.0';
- return 0;
- }));
- $expectedGitCommand = $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'");
- $processExecutor->expects($this->at(1))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(2))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git branch -r")), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(3))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git checkout 'master' --")), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(4))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git reset --hard '1234567890123456789012345678901234567890' --")), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $downloader = $this->getDownloaderMock(null, null, $processExecutor);
- $downloader->download($packageMock, 'composerPath');
- $downloader->prepare('install', $packageMock, 'composerPath');
- $downloader->install($packageMock, 'composerPath');
- $downloader->cleanup('install', $packageMock, 'composerPath');
- }
- public function testDownloadWithCache()
- {
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('1234567890123456789012345678901234567890'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://example.com/composer/composer')));
- $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'));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->at(0))
- ->method('execute')
- ->with($this->equalTo($this->winCompat('git --version')))
- ->will($this->returnCallback(function ($command, &$output = null) {
- $output = 'git version 2.3.1';
- return 0;
- }));
- $config = new Config;
- $this->setupConfig($config);
- $cachePath = $config->get('cache-vcs-dir').'/'.preg_replace('{[^a-z0-9.]}i', '-', 'https://example.com/composer/composer').'/';
- $filesystem = new \Composer\Util\Filesystem;
- $filesystem->removeDirectory($cachePath);
- $expectedGitCommand = $this->winCompat(sprintf("git clone --mirror 'https://example.com/composer/composer' '%s'", $cachePath));
- $processExecutor->expects($this->at(1))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand))
- ->will($this->returnCallback(function () use ($cachePath) {
- @mkdir($cachePath, 0777, true);
- return 0;
- }));
- $processExecutor->expects($this->at(2))
- ->method('execute')
- ->with($this->equalTo('git rev-parse --git-dir'), $this->anything(), $this->equalTo($this->winCompat($cachePath)))
- ->will($this->returnCallback(function ($command, &$output = null) {
- $output = '.';
- return 0;
- }));
- $processExecutor->expects($this->at(3))
- ->method('execute')
- ->with($this->equalTo($this->winCompat('git rev-parse --quiet --verify \'1234567890123456789012345678901234567890^{commit}\'')), $this->equalTo(null), $this->equalTo($this->winCompat($cachePath)))
- ->will($this->returnValue(0));
- $expectedGitCommand = $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));
- $processExecutor->expects($this->at(4))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(5))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git branch -r")), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(6))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git checkout 'master' --")), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(7))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git reset --hard '1234567890123456789012345678901234567890' --")), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $downloader = $this->getDownloaderMock(null, $config, $processExecutor);
- $downloader->download($packageMock, 'composerPath');
- $downloader->prepare('install', $packageMock, 'composerPath');
- $downloader->install($packageMock, 'composerPath');
- $downloader->cleanup('install', $packageMock, 'composerPath');
- @rmdir($cachePath);
- }
- public function testDownloadUsesVariousProtocolsAndSetsPushUrlForGithub()
- {
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://github.com/mirrors/composer', 'https://github.com/composer/composer')));
- $packageMock->expects($this->any())
- ->method('getSourceUrl')
- ->will($this->returnValue('https://github.com/composer/composer'));
- $packageMock->expects($this->any())
- ->method('getPrettyVersion')
- ->will($this->returnValue('1.0.0'));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->at(0))
- ->method('execute')
- ->with($this->equalTo($this->winCompat('git --version')))
- ->will($this->returnCallback(function ($command, &$output = null) {
- $output = 'git version 1.0.0';
- return 0;
- }));
- $expectedGitCommand = $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'");
- $processExecutor->expects($this->at(1))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand))
- ->will($this->returnValue(1));
- $processExecutor->expects($this->at(2))
- ->method('getErrorOutput')
- ->with()
- ->will($this->returnValue('Error1'));
- $expectedGitCommand = $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'");
- $processExecutor->expects($this->at(3))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand))
- ->will($this->returnValue(0));
- $expectedGitCommand = $this->winCompat("git remote set-url origin 'https://github.com/composer/composer'");
- $processExecutor->expects($this->at(4))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $expectedGitCommand = $this->winCompat("git remote set-url --push origin 'git@github.com:composer/composer.git'");
- $processExecutor->expects($this->at(5))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(6))
- ->method('execute')
- ->with($this->equalTo('git branch -r'))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(7))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git checkout 'ref' -- && git reset --hard 'ref' --")), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $downloader = $this->getDownloaderMock(null, new Config(), $processExecutor);
- $downloader->download($packageMock, 'composerPath');
- $downloader->prepare('install', $packageMock, 'composerPath');
- $downloader->install($packageMock, 'composerPath');
- $downloader->cleanup('install', $packageMock, 'composerPath');
- }
- public function pushUrlProvider()
- {
- return array(
- // ssh proto should use git@ all along
- array(array('ssh'), 'git@github.com:composer/composer', 'git@github.com:composer/composer.git'),
- // auto-proto uses git@ by default for push url, but not fetch
- array(array('https', 'ssh', 'git'), 'https://github.com/composer/composer', 'git@github.com:composer/composer.git'),
- // if restricted to https then push url is not overwritten to git@
- array(array('https'), 'https://github.com/composer/composer', 'https://github.com/composer/composer.git'),
- );
- }
- /**
- * @dataProvider pushUrlProvider
- */
- public function testDownloadAndSetPushUrlUseCustomVariousProtocolsForGithub($protocols, $url, $pushUrl)
- {
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://github.com/composer/composer')));
- $packageMock->expects($this->any())
- ->method('getSourceUrl')
- ->will($this->returnValue('https://github.com/composer/composer'));
- $packageMock->expects($this->any())
- ->method('getPrettyVersion')
- ->will($this->returnValue('1.0.0'));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->at(0))
- ->method('execute')
- ->with($this->equalTo($this->winCompat('git --version')))
- ->will($this->returnCallback(function ($command, &$output = null) {
- $output = 'git version 1.0.0';
- return 0;
- }));
- $expectedGitCommand = $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}'");
- $processExecutor->expects($this->at(1))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand))
- ->will($this->returnValue(0));
- $expectedGitCommand = $this->winCompat("git remote set-url --push origin '{$pushUrl}'");
- $processExecutor->expects($this->at(2))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand), $this->equalTo(null), $this->equalTo($this->winCompat('composerPath')))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->exactly(5))
- ->method('execute')
- ->will($this->returnValue(0));
- $config = new Config();
- $config->merge(array('config' => array('github-protocols' => $protocols)));
- $downloader = $this->getDownloaderMock(null, $config, $processExecutor);
- $downloader->download($packageMock, 'composerPath');
- $downloader->prepare('install', $packageMock, 'composerPath');
- $downloader->install($packageMock, 'composerPath');
- $downloader->cleanup('install', $packageMock, 'composerPath');
- }
- public function testDownloadThrowsRuntimeExceptionIfGitCommandFails()
- {
- $expectedGitCommand = $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'");
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://example.com/composer/composer')));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->at(0))
- ->method('execute')
- ->with($this->equalTo($this->winCompat('git --version')))
- ->will($this->returnCallback(function ($command, &$output = null) {
- $output = 'git version 1.0.0';
- return 0;
- }));
- $processExecutor->expects($this->at(1))
- ->method('execute')
- ->with($this->equalTo($expectedGitCommand))
- ->will($this->returnValue(1));
- // not using PHPUnit's expected exception because Prophecy exceptions extend from RuntimeException too so it is not safe
- try {
- $downloader = $this->getDownloaderMock(null, null, $processExecutor);
- $downloader->download($packageMock, 'composerPath');
- $downloader->prepare('install', $packageMock, 'composerPath');
- $downloader->install($packageMock, 'composerPath');
- $downloader->cleanup('install', $packageMock, 'composerPath');
- $this->fail('This test should throw');
- } catch (\RuntimeException $e) {
- if ('RuntimeException' !== get_class($e)) {
- throw $e;
- }
- $this->assertEquals('RuntimeException', get_class($e));
- }
- }
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testUpdateforPackageWithoutSourceReference()
- {
- $initialPackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $sourcePackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $sourcePackageMock->expects($this->once())
- ->method('getSourceReference')
- ->will($this->returnValue(null));
- $downloader = $this->getDownloaderMock();
- $downloader->download($sourcePackageMock, '/path', $initialPackageMock);
- $downloader->prepare('update', $sourcePackageMock, '/path', $initialPackageMock);
- $downloader->update($initialPackageMock, $sourcePackageMock, '/path');
- $downloader->cleanup('update', $sourcePackageMock, '/path', $initialPackageMock);
- }
- public function testUpdate()
- {
- $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'");
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://github.com/composer/composer')));
- $packageMock->expects($this->any())
- ->method('getVersion')
- ->will($this->returnValue('1.0.0.0'));
- $process = $this->prophesize('Composer\Util\ProcessExecutor');
- $process->execute($this->winCompat('git --version'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git show-ref --head -d'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git status --porcelain --untracked-files=no'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git remote -v'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git branch -r'), Argument::cetera())->willReturn(0);
- $process->execute($expectedGitUpdateCommand, null, $this->winCompat($this->workingDir))->willReturn(0)->shouldBeCalled();
- $process->execute($this->winCompat("git checkout 'ref' -- && git reset --hard 'ref' --"), null, $this->winCompat($this->workingDir))->willReturn(0)->shouldBeCalled();
- $this->fs->ensureDirectoryExists($this->workingDir.'/.git');
- $downloader = $this->getDownloaderMock(null, new Config(), $process->reveal());
- $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);
- }
- public function testUpdateWithNewRepoUrl()
- {
- $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'");
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://github.com/composer/composer')));
- $packageMock->expects($this->any())
- ->method('getSourceUrl')
- ->will($this->returnValue('https://github.com/composer/composer'));
- $packageMock->expects($this->any())
- ->method('getVersion')
- ->will($this->returnValue('1.0.0.0'));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->at(0))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git --version")))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(1))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git show-ref --head -d")))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(2))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git status --porcelain --untracked-files=no")))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(3))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git remote -v")))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(4))
- ->method('execute')
- ->with($this->equalTo($this->winCompat($expectedGitUpdateCommand)), $this->equalTo(null), $this->equalTo($this->winCompat($this->workingDir)))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(5))
- ->method('execute')
- ->with($this->equalTo('git branch -r'))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(6))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git checkout 'ref' -- && git reset --hard 'ref' --")), $this->equalTo(null), $this->equalTo($this->winCompat($this->workingDir)))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(7))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git remote -v")))
- ->will($this->returnCallback(function ($cmd, &$output, $cwd) {
- $output = 'origin https://github.com/old/url (fetch)
- origin https://github.com/old/url (push)
- composer https://github.com/old/url (fetch)
- composer https://github.com/old/url (push)
- ';
- return 0;
- }));
- $processExecutor->expects($this->at(8))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git remote set-url origin 'https://github.com/composer/composer'")), $this->equalTo(null), $this->equalTo($this->winCompat($this->workingDir)))
- ->will($this->returnValue(0));
- $processExecutor->expects($this->at(9))
- ->method('execute')
- ->with($this->equalTo($this->winCompat("git remote set-url --push origin 'git@github.com:composer/composer.git'")), $this->equalTo(null), $this->equalTo($this->winCompat($this->workingDir)))
- ->will($this->returnValue(0));
- $this->fs->ensureDirectoryExists($this->workingDir.'/.git');
- $downloader = $this->getDownloaderMock(null, new Config(), $processExecutor);
- $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);
- }
- /**
- * @group failing
- */
- public function testUpdateThrowsRuntimeExceptionIfGitCommandFails()
- {
- $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'");
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://github.com/composer/composer')));
- $packageMock->expects($this->any())
- ->method('getVersion')
- ->will($this->returnValue('1.0.0.0'));
- $process = $this->prophesize('Composer\Util\ProcessExecutor');
- $process->execute($this->winCompat('git --version'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git show-ref --head -d'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git status --porcelain --untracked-files=no'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git remote -v'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git branch -r'), Argument::cetera())->willReturn(0);
- $process->execute($expectedGitUpdateCommand, null, $this->winCompat($this->workingDir))->willReturn(1)->shouldBeCalled();
- $process->execute($expectedGitUpdateCommand2, null, $this->winCompat($this->workingDir))->willReturn(1)->shouldBeCalled();
- $process->getErrorOutput()->willReturn('');
- $this->fs->ensureDirectoryExists($this->workingDir.'/.git');
- // not using PHPUnit's expected exception because Prophecy exceptions extend from RuntimeException too so it is not safe
- try {
- $downloader = $this->getDownloaderMock(null, new Config(), $process->reveal());
- $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);
- $this->fail('This test should throw');
- } catch (\RuntimeException $e) {
- if ('RuntimeException' !== get_class($e)) {
- throw $e;
- }
- $this->assertEquals('RuntimeException', get_class($e));
- }
- }
- public function testUpdateDoesntThrowsRuntimeExceptionIfGitCommandFailsAtFirstButIsAbleToRecover()
- {
- $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:\\\\' : '/')."'");
- $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'");
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $packageMock->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $packageMock->expects($this->any())
- ->method('getVersion')
- ->will($this->returnValue('1.0.0.0'));
- $packageMock->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array(Platform::isWindows() ? 'C:\\' : '/', 'https://github.com/composer/composer')));
- $process = $this->prophesize('Composer\Util\ProcessExecutor');
- $process->execute($this->winCompat('git --version'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git show-ref --head -d'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git status --porcelain --untracked-files=no'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git remote -v'), Argument::cetera())->willReturn(0);
- $process->execute($this->winCompat('git branch -r'), Argument::cetera())->willReturn(0);
- $process->execute($expectedFirstGitUpdateCommand, Argument::cetera())->willReturn(1)->shouldBeCalled();
- $process->execute($expectedSecondGitUpdateCommand, Argument::cetera())->willReturn(0)->shouldBeCalled();
- $process->execute($this->winCompat("git checkout 'ref' -- && git reset --hard 'ref' --"), null, $this->winCompat($this->workingDir))->willReturn(0)->shouldBeCalled();
- $process->getErrorOutput()->willReturn('');
- $this->fs->ensureDirectoryExists($this->workingDir.'/.git');
- $downloader = $this->getDownloaderMock(null, new Config(), $process->reveal());
- $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);
- }
- public function testDowngradeShowsAppropriateMessage()
- {
- $oldPackage = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $oldPackage->expects($this->any())
- ->method('getVersion')
- ->will($this->returnValue('1.2.0.0'));
- $oldPackage->expects($this->any())
- ->method('getFullPrettyVersion')
- ->will($this->returnValue('1.2.0'));
- $oldPackage->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $oldPackage->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('/foo/bar', 'https://github.com/composer/composer')));
- $newPackage = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $newPackage->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $newPackage->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://github.com/composer/composer')));
- $newPackage->expects($this->any())
- ->method('getVersion')
- ->will($this->returnValue('1.0.0.0'));
- $newPackage->expects($this->any())
- ->method('getFullPrettyVersion')
- ->will($this->returnValue('1.0.0'));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->any())
- ->method('execute')
- ->will($this->returnValue(0));
- $ioMock = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
- $ioMock->expects($this->at(0))
- ->method('writeError')
- ->with($this->stringContains('Downgrading'));
- $this->fs->ensureDirectoryExists($this->workingDir.'/.git');
- $downloader = $this->getDownloaderMock($ioMock, null, $processExecutor);
- $downloader->download($newPackage, $this->workingDir, $oldPackage);
- $downloader->prepare('update', $newPackage, $this->workingDir, $oldPackage);
- $downloader->update($oldPackage, $newPackage, $this->workingDir);
- $downloader->cleanup('update', $newPackage, $this->workingDir, $oldPackage);
- }
- public function testNotUsingDowngradingWithReferences()
- {
- $oldPackage = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $oldPackage->expects($this->any())
- ->method('getVersion')
- ->will($this->returnValue('dev-ref'));
- $oldPackage->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $oldPackage->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('/foo/bar', 'https://github.com/composer/composer')));
- $newPackage = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $newPackage->expects($this->any())
- ->method('getSourceReference')
- ->will($this->returnValue('ref'));
- $newPackage->expects($this->any())
- ->method('getSourceUrls')
- ->will($this->returnValue(array('https://github.com/composer/composer')));
- $newPackage->expects($this->any())
- ->method('getVersion')
- ->will($this->returnValue('dev-ref2'));
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->any())
- ->method('execute')
- ->will($this->returnValue(0));
- $ioMock = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
- $ioMock->expects($this->at(0))
- ->method('writeError')
- ->with($this->stringContains('Upgrading'));
- $this->fs->ensureDirectoryExists($this->workingDir.'/.git');
- $downloader = $this->getDownloaderMock($ioMock, null, $processExecutor);
- $downloader->download($newPackage, $this->workingDir, $oldPackage);
- $downloader->prepare('update', $newPackage, $this->workingDir, $oldPackage);
- $downloader->update($oldPackage, $newPackage, $this->workingDir);
- $downloader->cleanup('update', $newPackage, $this->workingDir, $oldPackage);
- }
- public function testRemove()
- {
- $expectedGitResetCommand = $this->winCompat("cd 'composerPath' && git status --porcelain --untracked-files=no");
- $packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
- $processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
- $processExecutor->expects($this->any())
- ->method('execute')
- ->with($this->equalTo($expectedGitResetCommand))
- ->will($this->returnValue(0));
- $filesystem = $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
- $filesystem->expects($this->once())
- ->method('removeDirectory')
- ->with($this->equalTo('composerPath'))
- ->will($this->returnValue(true));
- $downloader = $this->getDownloaderMock(null, null, $processExecutor, $filesystem);
- $downloader->prepare('uninstall', $packageMock, 'composerPath');
- $downloader->remove($packageMock, 'composerPath');
- $downloader->cleanup('uninstall', $packageMock, 'composerPath');
- }
- public function testGetInstallationSource()
- {
- $downloader = $this->getDownloaderMock();
- $this->assertEquals('source', $downloader->getInstallationSource());
- }
- private function winCompat($cmd)
- {
- if (Platform::isWindows()) {
- $cmd = str_replace('cd ', 'cd /D ', $cmd);
- $cmd = str_replace('composerPath', getcwd().'/composerPath', $cmd);
- return strtr($cmd, "'", '"');
- }
- return $cmd;
- }
- }
|