1
0
Fork 0
composer/tests/Composer/Test/Downloader/HgDownloaderTest.php

167 lines
6.0 KiB
PHP
Raw Normal View History

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;
use Composer\Test\TestCase;
2013-07-26 13:44:24 +00:00
use Composer\Util\Filesystem;
use Composer\Test\Mock\ProcessExecutorMock;
2012-01-22 21:06:09 +00:00
class HgDownloaderTest extends TestCase
2012-01-22 21:06:09 +00:00
{
/** @var string */
private $workingDir;
2021-12-08 16:03:05 +00:00
protected function setUp(): void
{
$this->workingDir = $this->getUniqueTmpDirectory();
}
2021-12-08 16:03:05 +00:00
protected function tearDown(): void
{
if (is_dir($this->workingDir)) {
2015-12-14 15:50:04 +00:00
$fs = new Filesystem;
$fs->removeDirectory($this->workingDir);
}
}
/**
* @param \Composer\IO\IOInterface $io
* @param \Composer\Config $config
* @param \Composer\Test\Mock\ProcessExecutorMock $executor
* @param \Composer\Util\Filesystem $filesystem
* @return HgDownloader
*/
protected function getDownloaderMock($io = null, $config = null, $executor = null, $filesystem = null)
{
$io = $io ?: $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
$config = $config ?: $this->getMockBuilder('Composer\Config')->getMock();
$executor = $executor ?: new ProcessExecutorMock;
$filesystem = $filesystem ?: $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
return new HgDownloader($io, $config, $executor, $filesystem);
}
2012-01-22 21:06:09 +00:00
public function testDownloadForPackageWithoutSourceReference()
{
$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));
$this->setExpectedException('InvalidArgumentException');
$downloader = $this->getDownloaderMock();
$downloader->install($packageMock, '/path');
2012-01-22 21:06:09 +00:00
}
public function testDownload()
{
$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())
->method('getSourceUrls')
->will($this->returnValue(array('https://mercurial.dev/l3l0/composer')));
$process = new ProcessExecutorMock;
$process->expects(array(
$this->getCmd('hg clone -- \'https://mercurial.dev/l3l0/composer\' \'composerPath\''),
$this->getCmd('hg up -- \'ref\''),
), true);
$downloader = $this->getDownloaderMock(null, null, $process);
$downloader->install($packageMock, 'composerPath');
$process->assertComplete($this);
2012-01-22 21:06:09 +00:00
}
public function testUpdateforPackageWithoutSourceReference()
{
$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));
$this->setExpectedException('InvalidArgumentException');
$downloader = $this->getDownloaderMock();
$downloader->prepare('update', $sourcePackageMock, '/path', $initialPackageMock);
2012-01-22 21:06:09 +00:00
$downloader->update($initialPackageMock, $sourcePackageMock, '/path');
$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;
$fs->ensureDirectoryExists($this->workingDir.'/.hg');
$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())
->method('getVersion')
->will($this->returnValue('1.0.0.0'));
2012-01-22 21:06:09 +00:00
$packageMock->expects($this->any())
->method('getSourceUrls')
->will($this->returnValue(array('https://github.com/l3l0/composer')));
$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);
$downloader->prepare('update', $packageMock, $this->workingDir, $packageMock);
$downloader->update($packageMock, $packageMock, $this->workingDir);
$downloader->cleanup('update', $packageMock, $this->workingDir, $packageMock);
$process->assertComplete($this);
2012-01-22 21:06:09 +00:00
}
public function testRemove()
{
$fs = new Filesystem;
$fs->ensureDirectoryExists($this->workingDir.'/.hg');
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
$process = new ProcessExecutorMock;
$process->expects(array(
$this->getCmd('hg st'),
), true);
$filesystem = $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
$filesystem->expects($this->once())
2021-02-25 10:28:07 +00:00
->method('removeDirectoryAsync')
->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
$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()
{
$downloader = $this->getDownloaderMock(null);
2012-01-22 21:06:09 +00:00
$this->assertEquals('source', $downloader->getInstallationSource());
}
}