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\HgDownloader;
|
2018-11-12 14:23:32 +00:00
|
|
|
use Composer\Test\TestCase;
|
2013-07-26 13:44:24 +00:00
|
|
|
use Composer\Util\Filesystem;
|
2021-08-18 21:35:27 +00:00
|
|
|
use Composer\Test\Mock\ProcessExecutorMock;
|
2012-01-22 21:06:09 +00:00
|
|
|
|
2016-01-21 12:01:55 +00:00
|
|
|
class HgDownloaderTest extends TestCase
|
2012-01-22 21:06:09 +00:00
|
|
|
{
|
2015-12-14 14:35:27 +00:00
|
|
|
/** @var string */
|
|
|
|
private $workingDir;
|
|
|
|
|
|
|
|
protected function setUp()
|
|
|
|
{
|
2016-01-21 12:01:55 +00:00
|
|
|
$this->workingDir = $this->getUniqueTmpDirectory();
|
2015-12-14 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function tearDown()
|
|
|
|
{
|
|
|
|
if (is_dir($this->workingDir)) {
|
2015-12-14 15:50:04 +00:00
|
|
|
$fs = new Filesystem;
|
|
|
|
$fs->removeDirectory($this->workingDir);
|
2015-12-14 14:35:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-07 22:45:18 +00:00
|
|
|
protected function getDownloaderMock($io = null, $config = null, $executor = null, $filesystem = null)
|
2012-03-07 23:11:52 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +00:00
|
|
|
$io = $io ?: $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
|
|
|
$config = $config ?: $this->getMockBuilder('Composer\Config')->getMock();
|
2021-08-18 21:35:27 +00:00
|
|
|
$executor = $executor ?: new ProcessExecutorMock;
|
2018-04-12 08:24:56 +00:00
|
|
|
$filesystem = $filesystem ?: $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
|
2012-03-07 23:11:52 +00:00
|
|
|
|
2012-09-07 22:45:18 +00:00
|
|
|
return new HgDownloader($io, $config, $executor, $filesystem);
|
2012-03-07 23:11:52 +00:00
|
|
|
}
|
|
|
|
|
2012-01-22 21:06:09 +00:00
|
|
|
public function testDownloadForPackageWithoutSourceReference()
|
|
|
|
{
|
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));
|
|
|
|
|
2020-09-10 15:21:11 +00:00
|
|
|
$this->setExpectedException('InvalidArgumentException');
|
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock();
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->install($packageMock, '/path');
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testDownload()
|
|
|
|
{
|
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->once())
|
2013-07-01 23:45:43 +00:00
|
|
|
->method('getSourceUrls')
|
|
|
|
->will($this->returnValue(array('https://mercurial.dev/l3l0/composer')));
|
2013-06-08 14:40:42 +00:00
|
|
|
|
2021-08-18 21:35:27 +00:00
|
|
|
$process = new ProcessExecutorMock;
|
|
|
|
$process->expects(array(
|
|
|
|
$this->getCmd('hg clone -- \'https://mercurial.dev/l3l0/composer\' \'composerPath\''),
|
|
|
|
$this->getCmd('hg up -- \'ref\''),
|
|
|
|
), true);
|
2013-06-08 14:40:42 +00:00
|
|
|
|
2021-08-18 21:35:27 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null, null, $process);
|
2019-01-17 16:12:33 +00:00
|
|
|
$downloader->install($packageMock, 'composerPath');
|
2021-08-18 21:35:27 +00:00
|
|
|
|
|
|
|
$process->assertComplete($this);
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateforPackageWithoutSourceReference()
|
|
|
|
{
|
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));
|
|
|
|
|
2020-09-10 15:21:11 +00:00
|
|
|
$this->setExpectedException('InvalidArgumentException');
|
|
|
|
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock();
|
2019-08-29 09:37:23 +00:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdate()
|
|
|
|
{
|
2013-07-26 13:44:24 +00:00
|
|
|
$fs = new Filesystem;
|
2015-12-14 14:35:27 +00:00
|
|
|
$fs->ensureDirectoryExists($this->workingDir.'/.hg');
|
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'));
|
2018-04-13 11:48:30 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.0.0.0'));
|
2012-01-22 21:06:09 +00:00
|
|
|
$packageMock->expects($this->any())
|
2013-07-01 23:45:43 +00:00
|
|
|
->method('getSourceUrls')
|
|
|
|
->will($this->returnValue(array('https://github.com/l3l0/composer')));
|
2021-08-18 21:35:27 +00:00
|
|
|
|
|
|
|
$process = new ProcessExecutorMock;
|
|
|
|
$process->expects(array(
|
|
|
|
$this->getCmd('hg st'),
|
|
|
|
$this->getCmd("hg pull -- 'https://github.com/l3l0/composer' && hg up -- 'ref'"),
|
|
|
|
), true);
|
|
|
|
|
|
|
|
$downloader = $this->getDownloaderMock(null, null, $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$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);
|
2021-08-18 21:35:27 +00:00
|
|
|
|
|
|
|
$process->assertComplete($this);
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRemove()
|
|
|
|
{
|
2021-08-18 21:35:27 +00:00
|
|
|
$fs = new Filesystem;
|
|
|
|
$fs->ensureDirectoryExists($this->workingDir.'/.hg');
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2021-08-18 21:35:27 +00:00
|
|
|
|
|
|
|
$process = new ProcessExecutorMock;
|
|
|
|
$process->expects(array(
|
|
|
|
$this->getCmd('hg st'),
|
|
|
|
), true);
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
$process->assertComplete($this);
|
2012-01-22 21:06:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetInstallationSource()
|
|
|
|
{
|
2012-03-07 23:11:52 +00:00
|
|
|
$downloader = $this->getDownloaderMock(null);
|
2012-02-18 15:59:39 +00:00
|
|
|
|
2012-01-22 21:06:09 +00:00
|
|
|
$this->assertEquals('source', $downloader->getInstallationSource());
|
|
|
|
}
|
|
|
|
}
|