161 lines
6.0 KiB
PHP
161 lines
6.0 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
/*
|
|
* 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;
|
|
use Composer\Util\Filesystem;
|
|
|
|
class HgDownloaderTest extends TestCase
|
|
{
|
|
/** @var string */
|
|
private $workingDir;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->workingDir = self::getUniqueTmpDirectory();
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
parent::tearDown();
|
|
if (is_dir($this->workingDir)) {
|
|
$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
|
|
*/
|
|
protected function getDownloaderMock(?\Composer\IO\IOInterface $io = null, ?\Composer\Config $config = null, ?\Composer\Test\Mock\ProcessExecutorMock $executor = null, ?Filesystem $filesystem = null): HgDownloader
|
|
{
|
|
$io = $io ?: $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
|
$config = $config ?: $this->getMockBuilder('Composer\Config')->getMock();
|
|
$executor = $executor ?: $this->getProcessExecutorMock();
|
|
$filesystem = $filesystem ?: $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
|
|
|
|
return new HgDownloader($io, $config, $executor, $filesystem);
|
|
}
|
|
|
|
public function testDownloadForPackageWithoutSourceReference(): void
|
|
{
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
|
$packageMock->expects($this->once())
|
|
->method('getSourceReference')
|
|
->will($this->returnValue(null));
|
|
|
|
self::expectException('InvalidArgumentException');
|
|
|
|
$downloader = $this->getDownloaderMock();
|
|
$downloader->install($packageMock, '/path');
|
|
}
|
|
|
|
public function testDownload(): void
|
|
{
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
|
$packageMock->expects($this->any())
|
|
->method('getSourceReference')
|
|
->will($this->returnValue('ref'));
|
|
$packageMock->expects($this->once())
|
|
->method('getSourceUrls')
|
|
->will($this->returnValue(['https://mercurial.dev/l3l0/composer']));
|
|
|
|
$process = $this->getProcessExecutorMock();
|
|
$process->expects([
|
|
['hg', 'clone', '--', 'https://mercurial.dev/l3l0/composer', $this->workingDir],
|
|
['hg', 'up', '--', 'ref'],
|
|
], true);
|
|
|
|
$downloader = $this->getDownloaderMock(null, null, $process);
|
|
$downloader->install($packageMock, $this->workingDir);
|
|
}
|
|
|
|
public function testUpdateforPackageWithoutSourceReference(): void
|
|
{
|
|
$initialPackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
|
$sourcePackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
|
$sourcePackageMock->expects($this->once())
|
|
->method('getSourceReference')
|
|
->will($this->returnValue(null));
|
|
|
|
self::expectException('InvalidArgumentException');
|
|
|
|
$downloader = $this->getDownloaderMock();
|
|
$downloader->prepare('update', $sourcePackageMock, '/path', $initialPackageMock);
|
|
$downloader->update($initialPackageMock, $sourcePackageMock, '/path');
|
|
$downloader->cleanup('update', $sourcePackageMock, '/path', $initialPackageMock);
|
|
}
|
|
|
|
public function testUpdate(): void
|
|
{
|
|
$fs = new Filesystem;
|
|
$fs->ensureDirectoryExists($this->workingDir.'/.hg');
|
|
$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(['https://github.com/l3l0/composer']));
|
|
|
|
$process = $this->getProcessExecutorMock();
|
|
$process->expects([
|
|
['hg', 'st'],
|
|
['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);
|
|
}
|
|
|
|
public function testRemove(): void
|
|
{
|
|
$fs = new Filesystem;
|
|
$fs->ensureDirectoryExists($this->workingDir.'/.hg');
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
|
|
|
$process = $this->getProcessExecutorMock();
|
|
$process->expects([
|
|
['hg', 'st'],
|
|
], true);
|
|
|
|
$filesystem = $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
|
|
$filesystem->expects($this->once())
|
|
->method('removeDirectoryAsync')
|
|
->with($this->equalTo($this->workingDir))
|
|
->will($this->returnValue(\React\Promise\resolve(true)));
|
|
|
|
$downloader = $this->getDownloaderMock(null, null, $process, $filesystem);
|
|
$downloader->prepare('uninstall', $packageMock, $this->workingDir);
|
|
$downloader->remove($packageMock, $this->workingDir);
|
|
$downloader->cleanup('uninstall', $packageMock, $this->workingDir);
|
|
}
|
|
|
|
public function testGetInstallationSource(): void
|
|
{
|
|
$downloader = $this->getDownloaderMock(null);
|
|
|
|
self::assertEquals('source', $downloader->getInstallationSource());
|
|
}
|
|
}
|