2012-01-22 21:06:09 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Composer\Test\Downloader;
|
|
|
|
|
|
|
|
use Composer\Downloader\GitDownloader;
|
|
|
|
|
|
|
|
class GitDownloaderTest extends \PHPUnit_Framework_TestCase
|
|
|
|
{
|
2012-03-07 23:11:52 +00:00
|
|
|
protected function getDownloaderMock($io = null, $executor = null, $filesystem = null)
|
|
|
|
{
|
|
|
|
$io = $io ?: $this->getMock('Composer\IO\IOInterface');
|
|
|
|
$executor = $executor ?: $this->getMock('Composer\Util\ProcessExecutor');
|
|
|
|
$filesystem = $filesystem ?: $this->getMock('Composer\Util\Filesystem');
|
|
|
|
|
|
|
|
return new GitDownloader($io, $executor, $filesystem);
|
|
|
|
}
|
|
|
|
|
2012-01-22 21:06:09 +00:00
|
|
|
/**
|
|
|
|
* @expectedException \InvalidArgumentException
|
|
|
|
*/
|
|
|
|
public function testDownloadForPackageWithoutSourceReference()
|
|
|
|
{
|
|
|
|
$packageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$packageMock->expects($this->once())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue(null));
|
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock();
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->download($packageMock, '/path');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDownload()
|
|
|
|
{
|
|
|
|
$packageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
2012-03-07 23:11:52 +00:00
|
|
|
$packageMock->expects($this->any())
|
2012-01-22 21:06:09 +00:00
|
|
|
->method('getSourceUrl')
|
2012-03-07 23:11:52 +00:00
|
|
|
->will($this->returnValue('https://example.com/composer/composer'));
|
2012-01-22 21:06:09 +00:00
|
|
|
$processExecutor = $this->getMock('Composer\Util\ProcessExecutor');
|
2012-03-11 20:01:41 +00:00
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$expectedGitCommand = $this->getCmd("git clone 'https://example.com/composer/composer' 'composerPath' && cd 'composerPath' && git remote add composer 'https://example.com/composer/composer' && git fetch composer");
|
|
|
|
$processExecutor->expects($this->at(0))
|
2012-01-22 21:06:09 +00:00
|
|
|
->method('execute')
|
2012-02-20 23:02:34 +00:00
|
|
|
->with($this->equalTo($expectedGitCommand))
|
|
|
|
->will($this->returnValue(0));
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$processExecutor->expects($this->at(1))
|
|
|
|
->method('execute')
|
2012-07-10 17:27:02 +00:00
|
|
|
->with($this->equalTo($this->getCmd("git checkout 'ref' && git reset --hard 'ref'")), $this->equalTo(null), $this->equalTo('composerPath'))
|
2012-06-20 10:05:18 +00:00
|
|
|
->will($this->returnValue(0));
|
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, $processExecutor);
|
|
|
|
$downloader->download($packageMock, 'composerPath');
|
|
|
|
}
|
|
|
|
|
2012-03-11 20:01:41 +00:00
|
|
|
public function testDownloadUsesVariousProtocolsAndSetsPushUrlForGithub()
|
2012-03-07 23:11:52 +00:00
|
|
|
{
|
|
|
|
$packageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
2012-03-11 20:01:41 +00:00
|
|
|
$packageMock->expects($this->any())
|
2012-03-07 23:11:52 +00:00
|
|
|
->method('getSourceUrl')
|
|
|
|
->will($this->returnValue('https://github.com/composer/composer'));
|
|
|
|
$processExecutor = $this->getMock('Composer\Util\ProcessExecutor');
|
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$expectedGitCommand = $this->getCmd("git clone 'git://github.com/composer/composer' 'composerPath' && cd 'composerPath' && git remote add composer 'git://github.com/composer/composer' && git fetch composer");
|
2012-03-07 23:11:52 +00:00
|
|
|
$processExecutor->expects($this->at(0))
|
|
|
|
->method('execute')
|
|
|
|
->with($this->equalTo($expectedGitCommand))
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$expectedGitCommand = $this->getCmd("git clone 'https://github.com/composer/composer' 'composerPath' && cd 'composerPath' && git remote add composer 'https://github.com/composer/composer' && git fetch composer");
|
2012-05-18 12:41:57 +00:00
|
|
|
$processExecutor->expects($this->at(2))
|
2012-03-07 23:11:52 +00:00
|
|
|
->method('execute')
|
|
|
|
->with($this->equalTo($expectedGitCommand))
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$expectedGitCommand = $this->getCmd("git clone 'http://github.com/composer/composer' 'composerPath' && cd 'composerPath' && git remote add composer 'http://github.com/composer/composer' && git fetch composer");
|
2012-05-18 12:41:57 +00:00
|
|
|
$processExecutor->expects($this->at(4))
|
2012-03-07 23:11:52 +00:00
|
|
|
->method('execute')
|
|
|
|
->with($this->equalTo($expectedGitCommand))
|
|
|
|
->will($this->returnValue(0));
|
|
|
|
|
2012-04-04 15:11:10 +00:00
|
|
|
$expectedGitCommand = $this->getCmd("git remote set-url --push origin 'git@github.com:composer/composer.git'");
|
2012-05-18 12:41:57 +00:00
|
|
|
$processExecutor->expects($this->at(5))
|
2012-03-11 20:01:41 +00:00
|
|
|
->method('execute')
|
2012-04-04 15:11:50 +00:00
|
|
|
->with($this->equalTo($expectedGitCommand), $this->equalTo(null), $this->equalTo('composerPath'))
|
2012-03-11 20:01:41 +00:00
|
|
|
->will($this->returnValue(0));
|
|
|
|
|
2012-06-20 10:05:18 +00:00
|
|
|
$processExecutor->expects($this->at(6))
|
|
|
|
->method('execute')
|
2012-07-10 17:27:02 +00:00
|
|
|
->with($this->equalTo($this->getCmd("git checkout 'ref' && git reset --hard 'ref'")), $this->equalTo(null), $this->equalTo('composerPath'))
|
2012-06-20 10:05:18 +00:00
|
|
|
->will($this->returnValue(0));
|
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, $processExecutor);
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->download($packageMock, 'composerPath');
|
|
|
|
}
|
|
|
|
|
2012-02-20 23:12:39 +00:00
|
|
|
/**
|
|
|
|
* @expectedException \RuntimeException
|
|
|
|
*/
|
|
|
|
public function testDownloadThrowsRuntimeExceptionIfGitCommandFails()
|
|
|
|
{
|
2012-06-20 10:05:18 +00:00
|
|
|
$expectedGitCommand = $this->getCmd("git clone 'https://example.com/composer/composer' 'composerPath' && cd 'composerPath' && git remote add composer 'https://example.com/composer/composer' && git fetch composer");
|
2012-02-20 23:12:39 +00:00
|
|
|
$packageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
2012-03-07 23:11:52 +00:00
|
|
|
$packageMock->expects($this->any())
|
2012-02-20 23:12:39 +00:00
|
|
|
->method('getSourceUrl')
|
2012-03-07 23:11:52 +00:00
|
|
|
->will($this->returnValue('https://example.com/composer/composer'));
|
2012-02-20 23:12:39 +00:00
|
|
|
$processExecutor = $this->getMock('Composer\Util\ProcessExecutor');
|
2012-04-06 11:21:04 +00:00
|
|
|
$processExecutor->expects($this->at(0))
|
2012-02-20 23:12:39 +00:00
|
|
|
->method('execute')
|
|
|
|
->with($this->equalTo($expectedGitCommand))
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, $processExecutor);
|
2012-02-20 23:12:39 +00:00
|
|
|
$downloader->download($packageMock, 'composerPath');
|
|
|
|
}
|
|
|
|
|
2012-01-22 21:06:09 +00:00
|
|
|
/**
|
|
|
|
* @expectedException \InvalidArgumentException
|
|
|
|
*/
|
|
|
|
public function testUpdateforPackageWithoutSourceReference()
|
|
|
|
{
|
|
|
|
$initialPackageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$sourcePackageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$sourcePackageMock->expects($this->once())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue(null));
|
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock();
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->update($initialPackageMock, $sourcePackageMock, '/path');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdate()
|
|
|
|
{
|
2012-06-20 10:05:18 +00:00
|
|
|
$expectedGitUpdateCommand = $this->getCmd("cd 'composerPath' && git remote set-url composer 'git://github.com/composer/composer' && git fetch composer && git fetch --tags composer");
|
2012-04-27 09:23:34 +00:00
|
|
|
$expectedGitResetCommand = $this->getCmd("cd 'composerPath' && git status --porcelain --untracked-files=no");
|
2012-01-22 21:06:09 +00:00
|
|
|
|
|
|
|
$packageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrl')
|
2012-03-11 14:56:47 +00:00
|
|
|
->will($this->returnValue('https://github.com/composer/composer'));
|
2012-01-22 21:06:09 +00:00
|
|
|
$processExecutor = $this->getMock('Composer\Util\ProcessExecutor');
|
|
|
|
$processExecutor->expects($this->at(0))
|
|
|
|
->method('execute')
|
2012-02-20 23:02:34 +00:00
|
|
|
->with($this->equalTo($expectedGitResetCommand))
|
|
|
|
->will($this->returnValue(0));
|
2012-01-22 21:06:09 +00:00
|
|
|
$processExecutor->expects($this->at(1))
|
2012-04-18 16:46:26 +00:00
|
|
|
->method('execute')
|
2012-05-06 15:19:30 +00:00
|
|
|
->with($this->equalTo($this->getCmd("cd 'composerPath' && git remote -v")))
|
2012-04-18 16:46:26 +00:00
|
|
|
->will($this->returnValue(0));
|
|
|
|
$processExecutor->expects($this->at(2))
|
2012-01-22 21:06:09 +00:00
|
|
|
->method('execute')
|
2012-02-20 23:02:34 +00:00
|
|
|
->with($this->equalTo($expectedGitUpdateCommand))
|
|
|
|
->will($this->returnValue(0));
|
2012-06-20 10:05:18 +00:00
|
|
|
$processExecutor->expects($this->at(3))
|
|
|
|
->method('execute')
|
2012-07-10 17:27:02 +00:00
|
|
|
->with($this->equalTo($this->getCmd("git checkout 'ref' && git reset --hard 'ref'")), $this->equalTo(null), $this->equalTo('composerPath'))
|
2012-06-20 10:05:18 +00:00
|
|
|
->will($this->returnValue(0));
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, $processExecutor);
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->update($packageMock, $packageMock, 'composerPath');
|
|
|
|
}
|
|
|
|
|
2012-02-20 23:12:39 +00:00
|
|
|
/**
|
|
|
|
* @expectedException \RuntimeException
|
|
|
|
*/
|
|
|
|
public function testUpdateThrowsRuntimeExceptionIfGitCommandFails()
|
|
|
|
{
|
2012-06-20 10:05:18 +00:00
|
|
|
$expectedGitUpdateCommand = $this->getCmd("cd 'composerPath' && git remote set-url composer 'git://github.com/composer/composer' && git fetch composer && git fetch --tags composer");
|
2012-04-27 09:23:34 +00:00
|
|
|
$expectedGitResetCommand = $this->getCmd("cd 'composerPath' && git status --porcelain --untracked-files=no");
|
2012-02-20 23:12:39 +00:00
|
|
|
|
|
|
|
$packageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue('ref'));
|
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getSourceUrl')
|
2012-03-11 14:56:47 +00:00
|
|
|
->will($this->returnValue('https://github.com/composer/composer'));
|
2012-02-20 23:12:39 +00:00
|
|
|
$processExecutor = $this->getMock('Composer\Util\ProcessExecutor');
|
|
|
|
$processExecutor->expects($this->at(0))
|
|
|
|
->method('execute')
|
|
|
|
->with($this->equalTo($expectedGitResetCommand))
|
|
|
|
->will($this->returnValue(0));
|
|
|
|
$processExecutor->expects($this->at(1))
|
2012-04-18 16:46:26 +00:00
|
|
|
->method('execute')
|
2012-05-06 15:19:30 +00:00
|
|
|
->with($this->equalTo($this->getCmd("cd 'composerPath' && git remote -v")))
|
2012-04-18 16:46:26 +00:00
|
|
|
->will($this->returnValue(0));
|
|
|
|
$processExecutor->expects($this->at(2))
|
2012-02-20 23:12:39 +00:00
|
|
|
->method('execute')
|
|
|
|
->with($this->equalTo($expectedGitUpdateCommand))
|
|
|
|
->will($this->returnValue(1));
|
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, $processExecutor);
|
2012-02-20 23:12:39 +00:00
|
|
|
$downloader->update($packageMock, $packageMock, 'composerPath');
|
|
|
|
}
|
|
|
|
|
2012-01-22 21:06:09 +00:00
|
|
|
public function testRemove()
|
|
|
|
{
|
2012-04-27 09:23:34 +00:00
|
|
|
$expectedGitResetCommand = $this->getCmd("cd 'composerPath' && git status --porcelain --untracked-files=no");
|
2012-01-22 21:06:09 +00:00
|
|
|
|
|
|
|
$packageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$processExecutor = $this->getMock('Composer\Util\ProcessExecutor');
|
|
|
|
$processExecutor->expects($this->any())
|
|
|
|
->method('execute')
|
2012-02-20 23:02:34 +00:00
|
|
|
->with($this->equalTo($expectedGitResetCommand))
|
|
|
|
->will($this->returnValue(0));
|
2012-02-18 15:59:39 +00:00
|
|
|
$filesystem = $this->getMock('Composer\Util\Filesystem');
|
|
|
|
$filesystem->expects($this->any())
|
|
|
|
->method('removeDirectory')
|
2012-04-05 21:03:02 +00:00
|
|
|
->with($this->equalTo('composerPath'))
|
|
|
|
->will($this->returnValue(true));
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, $processExecutor, $filesystem);
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->remove($packageMock, 'composerPath');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetInstallationSource()
|
|
|
|
{
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock();
|
2012-02-18 15:59:39 +00:00
|
|
|
|
2012-01-22 21:06:09 +00:00
|
|
|
$this->assertEquals('source', $downloader->getInstallationSource());
|
|
|
|
}
|
2012-02-18 15:59:39 +00:00
|
|
|
|
|
|
|
private function getCmd($cmd)
|
|
|
|
{
|
|
|
|
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
|
|
|
|
return strtr($cmd, "'", '"');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $cmd;
|
|
|
|
}
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|