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

357 lines
14 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?php declare(strict_types=1);
2012-03-29 13:34:57 +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 React\Promise\PromiseInterface;
2012-03-29 13:34:57 +00:00
use Composer\Downloader\ZipDownloader;
2017-03-14 22:43:48 +00:00
use Composer\Package\PackageInterface;
use Composer\Test\TestCase;
use Composer\Util\Filesystem;
use Composer\Util\HttpDownloader;
use Composer\Util\Loop;
2012-03-29 13:34:57 +00:00
class ZipDownloaderTest extends TestCase
2012-03-29 13:34:57 +00:00
{
/** @var string */
2015-12-14 15:50:04 +00:00
private $testDir;
/** @var \Composer\Util\HttpDownloader */
2019-01-07 15:22:41 +00:00
private $httpDownloader;
/** @var \Composer\IO\IOInterface&\PHPUnit\Framework\MockObject\MockObject */
private $io;
/** @var \Composer\Config&\PHPUnit\Framework\MockObject\MockObject */
private $config;
/** @var \Composer\Package\PackageInterface&\PHPUnit\Framework\MockObject\MockObject */
private $package;
/** @var string */
private $filename;
2021-12-08 16:03:05 +00:00
public function setUp(): void
2012-03-29 13:34:57 +00:00
{
$this->testDir = self::getUniqueTmpDirectory();
$this->io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
$this->config = $this->getMockBuilder('Composer\Config')->getMock();
$dlConfig = $this->getMockBuilder('Composer\Config')->getMock();
$this->httpDownloader = new HttpDownloader($this->io, $dlConfig);
$this->package = $this->getMockBuilder('Composer\Package\PackageInterface')->getMock();
$this->filename = $this->testDir.'/composer-test.zip';
file_put_contents($this->filename, 'zip');
}
protected function tearDown(): void
{
parent::tearDown();
2015-12-14 15:50:04 +00:00
$fs = new Filesystem;
$fs->removeDirectory($this->testDir);
2017-03-30 07:24:48 +00:00
$this->setPrivateProperty('hasZipArchive', null);
2017-03-14 22:43:48 +00:00
}
/**
* @param mixed $value
* @param ?\Composer\Test\Downloader\MockedZipDownloader $obj
*/
2022-02-22 15:47:09 +00:00
public function setPrivateProperty(string $name, $value, $obj = null): void
2017-03-14 22:43:48 +00:00
{
$reflectionClass = new \ReflectionClass('Composer\Downloader\ZipDownloader');
$reflectedProperty = $reflectionClass->getProperty($name);
$reflectedProperty->setAccessible(true);
$reflectedProperty->setValue($obj, $value);
2012-03-29 13:34:57 +00:00
}
public function testErrorMessages(): void
2012-03-29 13:34:57 +00:00
{
2017-02-13 14:54:55 +00:00
if (!class_exists('ZipArchive')) {
$this->markTestSkipped('zip extension missing');
}
$this->config->expects($this->any())
2017-03-14 22:43:48 +00:00
->method('get')
->with('vendor-dir')
->will($this->returnValue($this->testDir));
$this->package->expects($this->any())
2012-03-29 13:34:57 +00:00
->method('getDistUrl')
->will($this->returnValue($distUrl = 'file://'.__FILE__))
;
$this->package->expects($this->any())
->method('getDistUrls')
2022-08-17 12:20:07 +00:00
->will($this->returnValue([$distUrl]))
2012-03-29 13:34:57 +00:00
;
$this->package->expects($this->atLeastOnce())
->method('getTransportOptions')
2022-08-17 12:20:07 +00:00
->will($this->returnValue([]))
2012-03-29 13:34:57 +00:00
;
$downloader = new ZipDownloader($this->io, $this->config, $this->httpDownloader);
2017-03-14 22:43:48 +00:00
2012-03-29 13:34:57 +00:00
try {
$loop = new Loop($this->httpDownloader);
$promise = $downloader->download($this->package, $path = sys_get_temp_dir().'/composer-zip-test');
2022-08-17 12:20:07 +00:00
$loop->wait([$promise]);
$downloader->install($this->package, $path);
2012-03-29 13:34:57 +00:00
$this->fail('Download of invalid zip files should throw an exception');
2017-03-14 22:43:48 +00:00
} catch (\Exception $e) {
self::assertStringContainsString('is not a zip archive', $e->getMessage());
2012-03-29 13:34:57 +00:00
}
}
2017-02-13 14:54:55 +00:00
public function testZipArchiveOnlyFailed(): void
2017-03-14 22:43:48 +00:00
{
2021-12-09 19:55:26 +00:00
self::expectException('RuntimeException');
self::expectExceptionMessage('There was an error extracting the ZIP file');
if (!class_exists('ZipArchive')) {
$this->markTestSkipped('zip extension missing');
}
2017-03-30 07:24:48 +00:00
$this->setPrivateProperty('hasZipArchive', true);
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader);
2021-12-09 12:02:20 +00:00
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
2021-12-08 21:06:17 +00:00
$zipArchive->expects($this->once())
2017-03-14 22:43:48 +00:00
->method('open')
->will($this->returnValue(true));
2021-12-08 21:06:17 +00:00
$zipArchive->expects($this->once())
2017-03-14 22:43:48 +00:00
->method('extractTo')
->will($this->returnValue(false));
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
$promise = $downloader->extract($this->package, $this->filename, 'vendor/dir');
2020-06-05 12:05:19 +00:00
$this->wait($promise);
2017-02-13 14:54:55 +00:00
}
public function testZipArchiveExtractOnlyFailed(): void
{
2021-12-09 19:55:26 +00:00
self::expectException('RuntimeException');
self::expectExceptionMessage('The archive may contain identical file names with different capitalization (which fails on case insensitive filesystems): Not a directory');
if (!class_exists('ZipArchive')) {
$this->markTestSkipped('zip extension missing');
}
$this->setPrivateProperty('hasZipArchive', true);
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader);
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
2021-12-09 12:02:20 +00:00
$zipArchive->expects($this->once())
->method('open')
->will($this->returnValue(true));
2021-12-09 12:02:20 +00:00
$zipArchive->expects($this->once())
->method('extractTo')
->will($this->throwException(new \ErrorException('Not a directory')));
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
$promise = $downloader->extract($this->package, $this->filename, 'vendor/dir');
2020-06-05 12:05:19 +00:00
$this->wait($promise);
}
public function testZipArchiveOnlyGood(): void
2017-03-14 22:43:48 +00:00
{
if (!class_exists('ZipArchive')) {
$this->markTestSkipped('zip extension missing');
}
2017-03-30 07:24:48 +00:00
$this->setPrivateProperty('hasZipArchive', true);
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader);
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
2021-12-09 12:02:20 +00:00
$zipArchive->expects($this->once())
2017-03-14 22:43:48 +00:00
->method('open')
->will($this->returnValue(true));
2021-12-09 12:02:20 +00:00
$zipArchive->expects($this->once())
2017-03-14 22:43:48 +00:00
->method('extractTo')
->will($this->returnValue(true));
2024-05-29 20:08:42 +00:00
$zipArchive->expects($this->once())
->method('count')
->will($this->returnValue(0));
2017-03-14 22:43:48 +00:00
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
$promise = $downloader->extract($this->package, $this->filename, 'vendor/dir');
2020-06-05 12:05:19 +00:00
$this->wait($promise);
2017-02-13 14:54:55 +00:00
}
public function testSystemUnzipOnlyFailed(): void
2017-03-14 22:43:48 +00:00
{
2021-12-09 19:55:26 +00:00
self::expectException('Exception');
self::expectExceptionMessage('Failed to extract : (1) unzip');
$this->setPrivateProperty('isWindows', false);
2017-03-30 07:24:48 +00:00
$this->setPrivateProperty('hasZipArchive', false);
2022-08-17 12:20:07 +00:00
$this->setPrivateProperty('unzipCommands', [['unzip', 'unzip -qq %s -d %s']]);
$procMock = $this->getMockBuilder('Symfony\Component\Process\Process')->disableOriginalConstructor()->getMock();
$procMock->expects($this->any())
->method('getExitCode')
->will($this->returnValue(1));
$procMock->expects($this->any())
->method('isSuccessful')
->will($this->returnValue(false));
$procMock->expects($this->any())
->method('getErrorOutput')
->will($this->returnValue('output'));
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
2021-12-09 12:02:20 +00:00
$processExecutor->expects($this->once())
->method('executeAsync')
->will($this->returnValue(\React\Promise\resolve($procMock)));
2017-03-14 22:43:48 +00:00
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
$promise = $downloader->extract($this->package, $this->filename, 'vendor/dir');
2020-06-05 12:05:19 +00:00
$this->wait($promise);
2017-02-13 14:54:55 +00:00
}
public function testSystemUnzipOnlyGood(): void
2017-03-14 22:43:48 +00:00
{
$this->setPrivateProperty('isWindows', false);
2017-03-30 07:24:48 +00:00
$this->setPrivateProperty('hasZipArchive', false);
2022-08-17 12:20:07 +00:00
$this->setPrivateProperty('unzipCommands', [['unzip', 'unzip -qq %s -d %s']]);
$procMock = $this->getMockBuilder('Symfony\Component\Process\Process')->disableOriginalConstructor()->getMock();
$procMock->expects($this->any())
->method('getExitCode')
->will($this->returnValue(0));
$procMock->expects($this->any())
->method('isSuccessful')
->will($this->returnValue(true));
$procMock->expects($this->any())
->method('getErrorOutput')
->will($this->returnValue('output'));
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
2021-12-09 12:02:20 +00:00
$processExecutor->expects($this->once())
->method('executeAsync')
->will($this->returnValue(\React\Promise\resolve($procMock)));
2017-03-14 22:43:48 +00:00
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
$promise = $downloader->extract($this->package, $this->filename, 'vendor/dir');
2020-06-05 12:05:19 +00:00
$this->wait($promise);
2017-02-13 14:54:55 +00:00
}
public function testNonWindowsFallbackGood(): void
2017-03-14 22:43:48 +00:00
{
if (!class_exists('ZipArchive')) {
$this->markTestSkipped('zip extension missing');
}
2017-03-30 07:24:48 +00:00
$this->setPrivateProperty('isWindows', false);
$this->setPrivateProperty('hasZipArchive', true);
2017-03-14 22:43:48 +00:00
$procMock = $this->getMockBuilder('Symfony\Component\Process\Process')->disableOriginalConstructor()->getMock();
$procMock->expects($this->any())
->method('getExitCode')
->will($this->returnValue(1));
$procMock->expects($this->any())
->method('isSuccessful')
->will($this->returnValue(false));
$procMock->expects($this->any())
->method('getErrorOutput')
->will($this->returnValue('output'));
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
2021-12-09 12:02:20 +00:00
$processExecutor->expects($this->once())
->method('executeAsync')
->will($this->returnValue(\React\Promise\resolve($procMock)));
2017-03-14 22:43:48 +00:00
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
2021-12-09 12:02:20 +00:00
$zipArchive->expects($this->once())
2017-03-14 22:43:48 +00:00
->method('open')
->will($this->returnValue(true));
2021-12-09 12:02:20 +00:00
$zipArchive->expects($this->once())
2017-03-14 22:43:48 +00:00
->method('extractTo')
->will($this->returnValue(true));
2024-05-29 20:08:42 +00:00
$zipArchive->expects($this->once())
->method('count')
->will($this->returnValue(0));
2017-03-14 22:43:48 +00:00
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
2017-03-14 22:43:48 +00:00
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
$promise = $downloader->extract($this->package, $this->filename, 'vendor/dir');
2020-06-05 12:05:19 +00:00
$this->wait($promise);
2017-02-13 14:54:55 +00:00
}
public function testNonWindowsFallbackFailed(): void
2017-03-14 22:43:48 +00:00
{
2021-12-09 19:55:26 +00:00
self::expectException('Exception');
self::expectExceptionMessage('There was an error extracting the ZIP file');
if (!class_exists('ZipArchive')) {
$this->markTestSkipped('zip extension missing');
}
2017-03-30 07:24:48 +00:00
$this->setPrivateProperty('isWindows', false);
$this->setPrivateProperty('hasZipArchive', true);
2017-03-14 22:43:48 +00:00
2020-06-05 12:05:19 +00:00
$procMock = $this->getMockBuilder('Symfony\Component\Process\Process')->disableOriginalConstructor()->getMock();
$procMock->expects($this->any())
->method('getExitCode')
->will($this->returnValue(1));
$procMock->expects($this->any())
->method('isSuccessful')
->will($this->returnValue(false));
$procMock->expects($this->any())
->method('getErrorOutput')
->will($this->returnValue('output'));
$processExecutor = $this->getMockBuilder('Composer\Util\ProcessExecutor')->getMock();
2021-12-09 12:02:20 +00:00
$processExecutor->expects($this->once())
2020-06-05 12:05:19 +00:00
->method('executeAsync')
->will($this->returnValue(\React\Promise\resolve($procMock)));
2017-03-14 22:43:48 +00:00
$zipArchive = $this->getMockBuilder('ZipArchive')->getMock();
2021-12-09 12:02:20 +00:00
$zipArchive->expects($this->once())
2017-03-14 22:43:48 +00:00
->method('open')
->will($this->returnValue(true));
2021-12-09 12:02:20 +00:00
$zipArchive->expects($this->once())
2017-03-14 22:43:48 +00:00
->method('extractTo')
->will($this->returnValue(false));
$downloader = new MockedZipDownloader($this->io, $this->config, $this->httpDownloader, null, null, null, $processExecutor);
2017-03-14 22:43:48 +00:00
$this->setPrivateProperty('zipArchiveObject', $zipArchive, $downloader);
$promise = $downloader->extract($this->package, $this->filename, 'vendor/dir');
2020-06-05 12:05:19 +00:00
$this->wait($promise);
}
/**
* @param ?\React\Promise\PromiseInterface<mixed> $promise
*/
private function wait($promise): void
2020-06-05 12:05:19 +00:00
{
if (null === $promise) {
return;
}
$e = null;
2022-08-17 12:20:07 +00:00
$promise->then(static function (): void {
2020-06-05 12:05:19 +00:00
// noop
2022-08-17 12:20:07 +00:00
}, static function ($ex) use (&$e): void {
2020-06-05 12:05:19 +00:00
$e = $ex;
});
if ($e !== null) {
2020-06-05 12:05:19 +00:00
throw $e;
}
2017-02-13 14:54:55 +00:00
}
2017-03-14 22:43:48 +00:00
}
2017-02-13 14:54:55 +00:00
2017-03-14 22:43:48 +00:00
class MockedZipDownloader extends ZipDownloader
{
2022-08-17 12:20:07 +00:00
public function download(PackageInterface $package, $path, ?PackageInterface $prevPackage = null, bool $output = true): PromiseInterface
2017-03-14 22:43:48 +00:00
{
return \React\Promise\resolve(null);
2017-02-13 14:54:55 +00:00
}
2022-08-17 12:20:07 +00:00
public function install(PackageInterface $package, $path, bool $output = true): PromiseInterface
{
return \React\Promise\resolve(null);
}
2022-02-22 21:10:52 +00:00
public function extract(PackageInterface $package, $file, $path): PromiseInterface
2017-03-14 22:43:48 +00:00
{
return parent::extract($package, $file, $path);
2017-02-13 14:54:55 +00:00
}
2012-03-29 13:34:57 +00:00
}