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;
|
2018-11-12 14:23:32 +00:00
|
|
|
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
|
|
|
{
|
2022-05-11 14:05:35 +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
|
|
|
{
|
2021-12-09 16:09:07 +00:00
|
|
|
parent::tearDown();
|
2016-06-25 01:09:49 +00:00
|
|
|
if (is_dir($this->workingDir)) {
|
|
|
|
$fs = new Filesystem;
|
|
|
|
$fs->removeDirectory($this->workingDir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-30 08:21:50 +00:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
{
|
2018-04-12 08:24:56 +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]);
|
2021-12-09 16:09:07 +00:00
|
|
|
$executor = $executor ?: $this->getProcessExecutorMock();
|
2018-04-12 08:24:56 +00:00
|
|
|
$filesystem = $filesystem ?: $this->getMockBuilder('Composer\Util\Filesystem')->getMock();
|
2016-06-25 01:09:49 +00:00
|
|
|
|
|
|
|
return new FossilDownloader($io, $config, $executor, $filesystem);
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testInstallForPackageWithoutSourceReference(): void
|
2016-06-25 01:09:49 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +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');
|
2020-09-10 15:21:11 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testInstall(): void
|
2016-06-25 01:09:49 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +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/']));
|
2021-08-19 11:00:30 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2022-11-24 13:39:08 +00:00
|
|
|
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);
|
2021-08-19 11:00:30 +00:00
|
|
|
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testUpdateforPackageWithoutSourceReference(): void
|
2016-06-25 01:09:49 +00:00
|
|
|
{
|
2018-04-12 08:24:56 +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');
|
2020-09-10 15:21:11 +00:00
|
|
|
|
2016-06-25 01:09:49 +00:00
|
|
|
$downloader = $this->getDownloaderMock();
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->prepare('update', $sourcePackageMock, '/path', $initialPackageMock);
|
2016-06-25 01:09:49 +00:00
|
|
|
$downloader->update($initialPackageMock, $sourcePackageMock, '/path');
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('update', $sourcePackageMock, '/path', $initialPackageMock);
|
2016-06-25 01:09:49 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +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);
|
|
|
|
}
|
|
|
|
|
2018-04-12 08:24:56 +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->any())
|
|
|
|
->method('getSourceUrls')
|
2022-08-17 12:20:07 +00:00
|
|
|
->will($this->returnValue(['http://fossil.kd2.org/kd2fw/']));
|
2018-04-13 11:48:30 +00:00
|
|
|
$packageMock->expects($this->any())
|
|
|
|
->method('getVersion')
|
|
|
|
->will($this->returnValue('1.0.0.0'));
|
2021-08-19 11:00:30 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2022-11-24 13:39:08 +00:00
|
|
|
self::getCmd("fossil changes"),
|
|
|
|
self::getCmd("fossil pull && fossil up 'trunk'"),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2021-08-19 11:00:30 +00:00
|
|
|
|
|
|
|
$downloader = $this->getDownloaderMock(null, null, $process);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->prepare('update', $packageMock, $this->workingDir, $packageMock);
|
2016-06-25 01:09:49 +00:00
|
|
|
$downloader->update($packageMock, $packageMock, $this->workingDir);
|
2019-08-29 09:37:23 +00:00
|
|
|
$downloader->cleanup('update', $packageMock, $this->workingDir, $packageMock);
|
2016-06-25 01:09:49 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testRemove(): void
|
2016-06-25 01:09:49 +00:00
|
|
|
{
|
2021-08-19 11:00:30 +00:00
|
|
|
// Ensure file exists
|
|
|
|
$file = $this->workingDir . '/.fslckout';
|
|
|
|
touch($file);
|
2016-06-25 01:09:49 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$packageMock = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
|
2021-08-19 11:00:30 +00:00
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
$process = $this->getProcessExecutorMock();
|
2022-08-17 12:20:07 +00:00
|
|
|
$process->expects([
|
2022-11-24 13:39:08 +00:00
|
|
|
self::getCmd('fossil changes'),
|
2022-08-17 12:20:07 +00:00
|
|
|
], true);
|
2021-08-19 11:00:30 +00:00
|
|
|
|
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-19 11:00:30 +00:00
|
|
|
->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
|
|
|
|
2021-08-19 11:00:30 +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
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testGetInstallationSource(): void
|
2016-06-25 01:09:49 +00:00
|
|
|
{
|
|
|
|
$downloader = $this->getDownloaderMock(null);
|
|
|
|
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertEquals('source', $downloader->getInstallationSource());
|
2016-06-25 01:09:49 +00:00
|
|
|
}
|
|
|
|
}
|