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
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @expectedException \InvalidArgumentException
|
|
|
|
*/
|
|
|
|
public function testDownloadForPackageWithoutSourceReference()
|
|
|
|
{
|
|
|
|
$packageMock = $this->getMock('Composer\Package\PackageInterface');
|
|
|
|
$packageMock->expects($this->once())
|
|
|
|
->method('getSourceReference')
|
|
|
|
->will($this->returnValue(null));
|
|
|
|
|
2012-01-23 07:40:34 +00:00
|
|
|
$downloader = new GitDownloader($this->getMock('Composer\IO\IOInterface'));
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->download($packageMock, '/path');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDownload()
|
|
|
|
{
|
2012-02-18 15:59:39 +00:00
|
|
|
$expectedGitCommand = $this->getCmd('git clone \'https://github.com/l3l0/composer\' \'composerPath\' && cd \'composerPath\' && git checkout \'ref\' && git reset --hard \'ref\'');
|
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->once())
|
|
|
|
->method('getSourceUrl')
|
|
|
|
->will($this->returnValue('https://github.com/l3l0/composer'));
|
|
|
|
$processExecutor = $this->getMock('Composer\Util\ProcessExecutor');
|
|
|
|
$processExecutor->expects($this->once())
|
|
|
|
->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-01-23 07:40:34 +00:00
|
|
|
$downloader = new GitDownloader($this->getMock('Composer\IO\IOInterface'), $processExecutor);
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->download($packageMock, 'composerPath');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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-01-23 07:40:34 +00:00
|
|
|
$downloader = new GitDownloader($this->getMock('Composer\IO\IOInterface'));
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->update($initialPackageMock, $sourcePackageMock, '/path');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdate()
|
|
|
|
{
|
2012-02-18 15:59:39 +00:00
|
|
|
$expectedGitUpdateCommand = $this->getCmd('cd \'composerPath\' && git fetch && git checkout \'ref\' && git reset --hard \'ref\'');
|
|
|
|
$expectedGitResetCommand = $this->getCmd('cd \'composerPath\' && git status --porcelain');
|
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')
|
|
|
|
->will($this->returnValue('https://github.com/l3l0/composer'));
|
|
|
|
$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))
|
|
|
|
->method('execute')
|
2012-02-20 23:02:34 +00:00
|
|
|
->with($this->equalTo($expectedGitUpdateCommand))
|
|
|
|
->will($this->returnValue(0));
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2012-01-23 07:40:34 +00:00
|
|
|
$downloader = new GitDownloader($this->getMock('Composer\IO\IOInterface'), $processExecutor);
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->update($packageMock, $packageMock, 'composerPath');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRemove()
|
|
|
|
{
|
2012-02-18 15:59:39 +00:00
|
|
|
$expectedGitResetCommand = $this->getCmd('cd \'composerPath\' && git status --porcelain');
|
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')
|
|
|
|
->with($this->equalTo('composerPath'));
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2012-02-18 15:59:39 +00:00
|
|
|
$downloader = new GitDownloader($this->getMock('Composer\IO\IOInterface'), $processExecutor, $filesystem);
|
2012-01-22 21:06:09 +00:00
|
|
|
$downloader->remove($packageMock, 'composerPath');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetInstallationSource()
|
|
|
|
{
|
2012-01-23 07:40:34 +00:00
|
|
|
$downloader = new GitDownloader($this->getMock('Composer\IO\IOInterface'));
|
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
|
|
|
}
|