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

160 lines
6.0 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
2012-01-22 21:06:09 +00:00
/*
* 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;
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 = self::getUniqueTmpDirectory();
}
2021-12-08 16:03:05 +00:00
protected function tearDown(): void
{
parent::tearDown();
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
*/
2022-08-17 12:20:07 +00:00
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
2012-01-22 21:06:09 +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));
2021-12-09 19:55:26 +00:00
self::expectException('InvalidArgumentException');
$downloader = $this->getDownloaderMock();
$downloader->install($packageMock, '/path');
2012-01-22 21:06:09 +00:00
}
public function testDownload(): void
2012-01-22 21:06:09 +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())
->method('getSourceUrls')
2022-08-17 12:20:07 +00:00
->will($this->returnValue(['https://mercurial.dev/l3l0/composer']));
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
self::getCmd('hg clone -- \'https://mercurial.dev/l3l0/composer\' \''.$this->workingDir.'\''),
self::getCmd('hg up -- \'ref\''),
2022-08-17 12:20:07 +00:00
], true);
$downloader = $this->getDownloaderMock(null, null, $process);
2022-02-23 15:57:47 +00:00
$downloader->install($packageMock, $this->workingDir);
2012-01-22 21:06:09 +00:00
}
public function testUpdateforPackageWithoutSourceReference(): void
2012-01-22 21:06:09 +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));
2021-12-09 19:55:26 +00:00
self::expectException('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(): void
2012-01-22 21:06:09 +00:00
{
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')
2022-08-17 12:20:07 +00:00
->will($this->returnValue(['https://github.com/l3l0/composer']));
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
self::getCmd('hg st'),
self::getCmd("hg pull -- 'https://github.com/l3l0/composer' && hg up -- 'ref'"),
2022-08-17 12:20:07 +00:00
], 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);
2012-01-22 21:06:09 +00:00
}
public function testRemove(): void
2012-01-22 21:06:09 +00:00
{
$fs = new Filesystem;
$fs->ensureDirectoryExists($this->workingDir.'/.hg');
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
self::getCmd('hg st'),
2022-08-17 12:20:07 +00:00
], 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);
2012-01-22 21:06:09 +00:00
}
public function testGetInstallationSource(): void
2012-01-22 21:06:09 +00:00
{
$downloader = $this->getDownloaderMock(null);
2012-01-22 21:06:09 +00:00
$this->assertEquals('source', $downloader->getInstallationSource());
}
}