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

168 lines
6.2 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
2016-06-25 01:09:49 +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\FossilDownloader;
use Composer\Test\TestCase;
2016-06-25 01:09:49 +00:00
use Composer\Util\Filesystem;
class FossilDownloaderTest extends TestCase
{
/** @var string */
private $workingDir;
2021-12-08 16:03:05 +00:00
protected function setUp(): void
2016-06-25 01:09:49 +00:00
{
$this->workingDir = self::getUniqueTmpDirectory();
2016-06-25 01:09:49 +00:00
}
2021-12-08 16:03:05 +00:00
protected function tearDown(): void
2016-06-25 01:09:49 +00:00
{
parent::tearDown();
2016-06-25 01:09:49 +00:00
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
*/
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): FossilDownloader
2016-06-25 01:09:49 +00:00
{
$io = $io ?: $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
2022-02-22 15:47:09 +00:00
$config = $config ?: $this->getConfig(['secure-http' => false]);
$executor = $executor ?: $this->getProcessExecutorMock();
$filesystem = $filesystem ?: $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
2016-06-25 01:09:49 +00:00
return new FossilDownloader($io, $config, $executor, $filesystem);
}
public function testInstallForPackageWithoutSourceReference(): void
2016-06-25 01:09:49 +00:00
{
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
2016-06-25 01:09:49 +00:00
$packageMock->expects($this->once())
->method('getSourceReference')
->will($this->returnValue(null));
2021-12-09 19:55:26 +00:00
self::expectException('InvalidArgumentException');
2016-06-25 01:09:49 +00:00
$downloader = $this->getDownloaderMock();
2022-02-23 15:57:47 +00:00
$downloader->install($packageMock, $this->workingDir . '/path');
2016-06-25 01:09:49 +00:00
}
public function testInstall(): void
2016-06-25 01:09:49 +00:00
{
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
2016-06-25 01:09:49 +00:00
$packageMock->expects($this->any())
->method('getSourceReference')
->will($this->returnValue('trunk'));
$packageMock->expects($this->once())
->method('getSourceUrls')
2022-08-17 12:20:07 +00:00
->will($this->returnValue(['http://fossil.kd2.org/kd2fw/']));
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
self::getCmd('fossil clone -- \'http://fossil.kd2.org/kd2fw/\' \''.$this->workingDir.'.fossil\''),
self::getCmd('fossil open --nested -- \''.$this->workingDir.'.fossil\''),
self::getCmd('fossil update -- \'trunk\''),
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);
2016-06-25 01:09:49 +00:00
}
public function testUpdateforPackageWithoutSourceReference(): void
2016-06-25 01:09:49 +00:00
{
$initialPackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
$sourcePackageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
2016-06-25 01:09:49 +00:00
$sourcePackageMock->expects($this->once())
->method('getSourceReference')
->will($this->returnValue(null));
2021-12-09 19:55:26 +00:00
self::expectException('InvalidArgumentException');
2016-06-25 01:09:49 +00:00
$downloader = $this->getDownloaderMock();
$downloader->prepare('update', $sourcePackageMock, '/path', $initialPackageMock);
2016-06-25 01:09:49 +00:00
$downloader->update($initialPackageMock, $sourcePackageMock, '/path');
$downloader->cleanup('update', $sourcePackageMock, '/path', $initialPackageMock);
2016-06-25 01:09:49 +00:00
}
public function testUpdate(): void
2016-06-25 01:09:49 +00:00
{
// Ensure file exists
$file = $this->workingDir . '/.fslckout';
if (!file_exists($file)) {
touch($file);
}
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
2016-06-25 01:09:49 +00:00
$packageMock->expects($this->any())
->method('getSourceReference')
->will($this->returnValue('trunk'));
$packageMock->expects($this->any())
->method('getSourceUrls')
2022-08-17 12:20:07 +00:00
->will($this->returnValue(['http://fossil.kd2.org/kd2fw/']));
$packageMock->expects($this->any())
->method('getVersion')
->will($this->returnValue('1.0.0.0'));
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
self::getCmd("fossil changes"),
self::getCmd("fossil pull && fossil up 'trunk'"),
2022-08-17 12:20:07 +00:00
], true);
$downloader = $this->getDownloaderMock(null, null, $process);
$downloader->prepare('update', $packageMock, $this->workingDir, $packageMock);
2016-06-25 01:09:49 +00:00
$downloader->update($packageMock, $packageMock, $this->workingDir);
$downloader->cleanup('update', $packageMock, $this->workingDir, $packageMock);
2016-06-25 01:09:49 +00:00
}
public function testRemove(): void
2016-06-25 01:09:49 +00:00
{
// Ensure file exists
$file = $this->workingDir . '/.fslckout';
touch($file);
2016-06-25 01:09:49 +00:00
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
$process = $this->getProcessExecutorMock();
2022-08-17 12:20:07 +00:00
$process->expects([
self::getCmd('fossil changes'),
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)));
2016-06-25 01:09:49 +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);
2016-06-25 01:09:49 +00:00
}
public function testGetInstallationSource(): void
2016-06-25 01:09:49 +00:00
{
$downloader = $this->getDownloaderMock(null);
self::assertEquals('source', $downloader->getInstallationSource());
2016-06-25 01:09:49 +00:00
}
}