2022-02-23 15:58:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2015-11-03 22:20:23 +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\XzDownloader;
|
2018-11-12 14:23:32 +00:00
|
|
|
use Composer\Test\TestCase;
|
2015-12-14 14:35:27 +00:00
|
|
|
use Composer\Util\Filesystem;
|
2016-02-03 21:39:16 +00:00
|
|
|
use Composer\Util\Platform;
|
2019-01-17 16:12:33 +00:00
|
|
|
use Composer\Util\Loop;
|
2018-10-31 11:44:54 +00:00
|
|
|
use Composer\Util\HttpDownloader;
|
2015-11-03 22:20:23 +00:00
|
|
|
|
2016-01-21 12:01:55 +00:00
|
|
|
class XzDownloaderTest extends TestCase
|
2015-11-03 22:20:23 +00:00
|
|
|
{
|
2015-12-14 14:35:27 +00:00
|
|
|
/**
|
|
|
|
* @var Filesystem
|
|
|
|
*/
|
|
|
|
private $fs;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2016-01-09 18:39:18 +00:00
|
|
|
private $testDir;
|
2015-12-14 14:35:27 +00:00
|
|
|
|
2021-12-08 16:03:05 +00:00
|
|
|
public function setUp(): void
|
2015-11-03 22:20:23 +00:00
|
|
|
{
|
2016-02-03 21:39:16 +00:00
|
|
|
if (Platform::isWindows()) {
|
2015-11-03 22:20:23 +00:00
|
|
|
$this->markTestSkipped('Skip test on Windows');
|
|
|
|
}
|
2022-05-11 14:05:35 +00:00
|
|
|
$this->testDir = self::getUniqueTmpDirectory();
|
2015-12-14 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
2021-12-09 16:09:07 +00:00
|
|
|
protected function tearDown(): void
|
2015-12-14 14:35:27 +00:00
|
|
|
{
|
2021-12-31 16:08:31 +00:00
|
|
|
if (Platform::isWindows()) {
|
|
|
|
return;
|
|
|
|
}
|
2021-12-09 16:09:07 +00:00
|
|
|
parent::tearDown();
|
2015-12-14 15:50:04 +00:00
|
|
|
$this->fs = new Filesystem;
|
2016-01-09 18:39:18 +00:00
|
|
|
$this->fs->removeDirectory($this->testDir);
|
2015-11-03 22:20:23 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testErrorMessages(): void
|
2015-11-03 22:20:23 +00:00
|
|
|
{
|
2022-11-24 13:39:08 +00:00
|
|
|
$package = self::getPackage();
|
2022-02-22 15:47:09 +00:00
|
|
|
$package->setDistUrl($distUrl = 'file://'.__FILE__);
|
2015-11-03 22:20:23 +00:00
|
|
|
|
2018-04-12 08:24:56 +00:00
|
|
|
$io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
|
2022-02-22 15:47:09 +00:00
|
|
|
$config = $this->getConfig(['vendor-dir' => $this->testDir]);
|
|
|
|
$downloader = new XzDownloader($io, $config, $httpDownloader = new HttpDownloader($io, $config), null, null, null);
|
2015-11-03 22:20:23 +00:00
|
|
|
|
|
|
|
try {
|
2019-01-17 16:12:33 +00:00
|
|
|
$loop = new Loop($httpDownloader);
|
2022-02-22 15:47:09 +00:00
|
|
|
$promise = $downloader->download($package, $this->testDir.'/install-path');
|
2022-08-17 12:20:07 +00:00
|
|
|
$loop->wait([$promise]);
|
2022-02-22 15:47:09 +00:00
|
|
|
$downloader->install($package, $this->testDir.'/install-path');
|
2019-01-17 16:12:33 +00:00
|
|
|
|
2015-11-03 22:20:23 +00:00
|
|
|
$this->fail('Download of invalid tarball should throw an exception');
|
|
|
|
} catch (\RuntimeException $e) {
|
2024-05-29 21:12:06 +00:00
|
|
|
self::assertMatchesRegularExpression('/(File format not recognized|Unrecognized archive format)/i', $e->getMessage());
|
2015-11-03 22:20:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|