1
0
Fork 0
composer/tests/Composer/Test/Util/HttpDownloaderTest.php

86 lines
2.8 KiB
PHP

<?php declare(strict_types=1);
/*
* 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\Util;
use Composer\IO\BufferIO;
use Composer\Util\HttpDownloader;
use PHPUnit\Framework\TestCase;
class HttpDownloaderTest extends TestCase
{
/**
* @return \PHPUnit\Framework\MockObject\MockObject&\Composer\Config
*/
private function getConfigMock()
{
$config = $this->getMockBuilder('Composer\Config')->getMock();
$config->expects($this->any())
->method('get')
->will($this->returnCallback(static function ($key) {
if ($key === 'github-domains' || $key === 'gitlab-domains') {
return [];
}
}));
return $config;
}
/**
* @group slow
*/
public function testCaptureAuthenticationParamsFromUrl(): void
{
$io = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
$io->expects($this->once())
->method('setAuthentication')
->with($this->equalTo('github.com'), $this->equalTo('user'), $this->equalTo('pass'));
$fs = new HttpDownloader($io, $this->getConfigMock());
try {
$fs->get('https://user:pass@github.com/composer/composer/404');
} catch (\Composer\Downloader\TransportException $e) {
self::assertNotEquals(200, $e->getCode());
}
}
public function testOutputWarnings(): void
{
$io = new BufferIO();
HttpDownloader::outputWarnings($io, '$URL', []);
self::assertSame('', $io->getOutput());
HttpDownloader::outputWarnings($io, '$URL', [
'warning' => 'old warning msg',
'warning-versions' => '>=2.0',
'info' => 'old info msg',
'info-versions' => '>=2.0',
'warnings' => [
['message' => 'should not appear', 'versions' => '<2.2'],
['message' => 'visible warning', 'versions' => '>=2.2-dev'],
],
'infos' => [
['message' => 'should not appear', 'versions' => '<2.2'],
['message' => 'visible info', 'versions' => '>=2.2-dev'],
],
]);
// the <info> tag are consumed by the OutputFormatter, but not <warning> as that is not a default output format
self::assertSame(
'<warning>Warning from $URL: old warning msg</warning>'.PHP_EOL.
'Info from $URL: old info msg'.PHP_EOL.
'<warning>Warning from $URL: visible warning</warning>'.PHP_EOL.
'Info from $URL: visible info'.PHP_EOL,
$io->getOutput()
);
}
}