1
0
Fork 0
composer/tests/Composer/Test/ConfigTest.php

436 lines
15 KiB
PHP
Raw Normal View History

2022-02-23 15:58:18 +00:00
<?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;
use Composer\Config;
use Composer\IO\IOInterface;
2022-02-08 13:54:46 +00:00
use Composer\Util\Platform;
class ConfigTest extends TestCase
{
/**
* @dataProvider dataAddPackagistRepository
* @param mixed[] $expected
* @param mixed[] $localConfig
2022-02-22 15:47:09 +00:00
* @param ?array<mixed> $systemConfig
*/
2022-02-22 15:47:09 +00:00
public function testAddPackagistRepository(array $expected, array $localConfig, ?array $systemConfig = null): void
{
$config = new Config(false);
if ($systemConfig) {
2022-08-17 12:20:07 +00:00
$config->merge(['repositories' => $systemConfig]);
}
2022-08-17 12:20:07 +00:00
$config->merge(['repositories' => $localConfig]);
$this->assertEquals($expected, $config->getRepositories());
}
public static function dataAddPackagistRepository(): array
{
2022-08-17 12:20:07 +00:00
$data = [];
$data['local config inherits system defaults'] = [
[
'packagist.org' => ['type' => 'composer', 'url' => 'https://repo.packagist.org'],
],
[],
];
2022-08-17 12:20:07 +00:00
$data['local config can disable system config by name'] = [
[],
[
['packagist.org' => false],
],
];
2016-11-03 10:30:35 +00:00
2022-08-17 12:20:07 +00:00
$data['local config can disable system config by name bc'] = [
[],
[
['packagist' => false],
],
];
2022-08-17 12:20:07 +00:00
$data['local config adds above defaults'] = [
[
1 => ['type' => 'vcs', 'url' => 'git://github.com/composer/composer.git'],
0 => ['type' => 'pear', 'url' => 'http://pear.composer.org'],
'packagist.org' => ['type' => 'composer', 'url' => 'https://repo.packagist.org'],
],
[
['type' => 'vcs', 'url' => 'git://github.com/composer/composer.git'],
['type' => 'pear', 'url' => 'http://pear.composer.org'],
],
];
2022-08-17 12:20:07 +00:00
$data['system config adds above core defaults'] = [
[
'example.com' => ['type' => 'composer', 'url' => 'http://example.com'],
'packagist.org' => ['type' => 'composer', 'url' => 'https://repo.packagist.org'],
],
[],
[
'example.com' => ['type' => 'composer', 'url' => 'http://example.com'],
],
];
2022-08-17 12:20:07 +00:00
$data['local config can disable repos by name and re-add them anonymously to bring them above system config'] = [
[
0 => ['type' => 'composer', 'url' => 'http://packagist.org'],
'example.com' => ['type' => 'composer', 'url' => 'http://example.com'],
],
[
['packagist.org' => false],
['type' => 'composer', 'url' => 'http://packagist.org'],
],
[
'example.com' => ['type' => 'composer', 'url' => 'http://example.com'],
],
];
2022-08-17 12:20:07 +00:00
$data['local config can override by name to bring a repo above system config'] = [
[
'packagist.org' => ['type' => 'composer', 'url' => 'http://packagistnew.org'],
'example.com' => ['type' => 'composer', 'url' => 'http://example.com'],
],
[
'packagist.org' => ['type' => 'composer', 'url' => 'http://packagistnew.org'],
],
[
'example.com' => ['type' => 'composer', 'url' => 'http://example.com'],
],
];
2022-08-17 12:20:07 +00:00
$data['local config redefining packagist.org by URL override it if no named keys are used'] = [
[
['type' => 'composer', 'url' => 'https://repo.packagist.org'],
],
[
['type' => 'composer', 'url' => 'https://repo.packagist.org'],
],
];
2022-08-17 12:20:07 +00:00
$data['local config redefining packagist.org by URL override it also with named keys'] = [
[
'example' => ['type' => 'composer', 'url' => 'https://repo.packagist.org'],
],
[
'example' => ['type' => 'composer', 'url' => 'https://repo.packagist.org'],
],
];
2022-08-17 12:20:07 +00:00
$data['incorrect local config does not cause ErrorException'] = [
[
'packagist.org' => ['type' => 'composer', 'url' => 'https://repo.packagist.org'],
'type' => 'vcs',
'url' => 'http://example.com',
2022-08-17 12:20:07 +00:00
],
[
'type' => 'vcs',
'url' => 'http://example.com',
2022-08-17 12:20:07 +00:00
],
];
return $data;
}
2012-12-08 20:45:21 +00:00
public function testPreferredInstallAsString(): void
{
$config = new Config(false);
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['preferred-install' => 'source']]);
$config->merge(['config' => ['preferred-install' => 'dist']]);
$this->assertEquals('dist', $config->get('preferred-install'));
}
public function testMergePreferredInstall(): void
{
$config = new Config(false);
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['preferred-install' => 'dist']]);
$config->merge(['config' => ['preferred-install' => ['foo/*' => 'source']]]);
// This assertion needs to make sure full wildcard preferences are placed last
// Handled by composer because we convert string preferences for BC, all other
// care for ordering and collision prevention is up to the user
2022-08-17 12:20:07 +00:00
$this->assertEquals(['foo/*' => 'source', '*' => 'dist'], $config->get('preferred-install'));
}
public function testMergeGithubOauth(): void
2012-12-08 20:45:21 +00:00
{
$config = new Config(false);
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['github-oauth' => ['foo' => 'bar']]]);
$config->merge(['config' => ['github-oauth' => ['bar' => 'baz']]]);
2012-12-08 20:45:21 +00:00
2022-08-17 12:20:07 +00:00
$this->assertEquals(['foo' => 'bar', 'bar' => 'baz'], $config->get('github-oauth'));
2012-12-08 20:45:21 +00:00
}
public function testVarReplacement(): void
{
$config = new Config(false);
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['a' => 'b', 'c' => '{$a}']]);
$config->merge(['config' => ['bin-dir' => '$HOME', 'cache-dir' => '~/foo/']]);
2014-09-30 14:17:53 +00:00
$home = rtrim(getenv('HOME') ?: getenv('USERPROFILE'), '\\/');
$this->assertEquals('b', $config->get('c'));
$this->assertEquals($home, $config->get('bin-dir'));
$this->assertEquals($home.'/foo', $config->get('cache-dir'));
}
public function testRealpathReplacement(): void
{
$config = new Config(false, '/foo/bar');
2022-08-17 12:20:07 +00:00
$config->merge(['config' => [
'bin-dir' => '$HOME/foo',
'cache-dir' => '/baz/',
2015-09-28 09:51:14 +00:00
'vendor-dir' => 'vendor',
2022-08-17 12:20:07 +00:00
]]);
$home = rtrim(getenv('HOME') ?: getenv('USERPROFILE'), '\\/');
$this->assertEquals('/foo/bar/vendor', $config->get('vendor-dir'));
$this->assertEquals($home.'/foo', $config->get('bin-dir'));
$this->assertEquals('/baz', $config->get('cache-dir'));
}
public function testStreamWrapperDirs(): void
{
$config = new Config(false, '/foo/bar');
2022-08-17 12:20:07 +00:00
$config->merge(['config' => [
'cache-dir' => 's3://baz/',
2022-08-17 12:20:07 +00:00
]]);
$this->assertEquals('s3://baz', $config->get('cache-dir'));
}
public function testFetchingRelativePaths(): void
{
$config = new Config(false, '/foo/bar');
2022-08-17 12:20:07 +00:00
$config->merge(['config' => [
'bin-dir' => '{$vendor-dir}/foo',
2015-09-28 09:51:14 +00:00
'vendor-dir' => 'vendor',
2022-08-17 12:20:07 +00:00
]]);
$this->assertEquals('/foo/bar/vendor', $config->get('vendor-dir'));
$this->assertEquals('/foo/bar/vendor/foo', $config->get('bin-dir'));
$this->assertEquals('vendor', $config->get('vendor-dir', Config::RELATIVE_PATHS));
$this->assertEquals('vendor/foo', $config->get('bin-dir', Config::RELATIVE_PATHS));
}
public function testOverrideGithubProtocols(): void
2012-12-08 20:45:21 +00:00
{
$config = new Config(false);
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['github-protocols' => ['https', 'ssh']]]);
$config->merge(['config' => ['github-protocols' => ['https']]]);
2012-12-08 20:45:21 +00:00
2022-08-17 12:20:07 +00:00
$this->assertEquals(['https'], $config->get('github-protocols'));
2012-12-08 20:45:21 +00:00
}
public function testGitDisabledByDefaultInGithubProtocols(): void
{
$config = new Config(false);
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['github-protocols' => ['https', 'git']]]);
$this->assertEquals(['https'], $config->get('github-protocols'));
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['secure-http' => false]]);
$this->assertEquals(['https', 'git'], $config->get('github-protocols'));
}
2016-03-09 23:19:52 +00:00
/**
* @dataProvider allowedUrlProvider
* @doesNotPerformAssertions
2016-03-09 23:19:52 +00:00
*/
2022-02-22 15:47:09 +00:00
public function testAllowedUrlsPass(string $url): void
2016-03-09 23:19:52 +00:00
{
$config = new Config(false);
$config->prohibitUrlByConfig($url);
}
/**
* @dataProvider prohibitedUrlProvider
*/
2022-02-22 15:47:09 +00:00
public function testProhibitedUrlsThrowException(string $url): void
2016-03-09 23:19:52 +00:00
{
2021-12-09 19:55:26 +00:00
self::expectException('Composer\Downloader\TransportException');
self::expectExceptionMessage('Your configuration does not allow connections to ' . $url);
2016-03-09 23:19:52 +00:00
$config = new Config(false);
$config->prohibitUrlByConfig($url);
}
/**
* @return string[][] List of test URLs that should pass strict security
2016-03-09 23:19:52 +00:00
*/
public static function allowedUrlProvider(): array
2016-03-09 23:19:52 +00:00
{
2022-08-17 12:20:07 +00:00
$urls = [
2016-03-09 23:19:52 +00:00
'https://packagist.org',
'git@github.com:composer/composer.git',
'hg://user:pass@my.satis/satis',
'\\myserver\myplace.git',
'file://myserver.localhost/mygit.git',
'file://example.org/mygit.git',
'git:Department/Repo.git',
'ssh://[user@]host.xz[:port]/path/to/repo.git/',
2022-08-17 12:20:07 +00:00
];
2022-08-17 12:20:07 +00:00
return array_combine($urls, array_map(static function ($e): array {
return [$e];
2017-03-08 14:07:29 +00:00
}, $urls));
2016-03-09 23:19:52 +00:00
}
/**
* @return string[][] List of test URLs that should not pass strict security
2016-03-09 23:19:52 +00:00
*/
public static function prohibitedUrlProvider(): array
2016-03-09 23:19:52 +00:00
{
2022-08-17 12:20:07 +00:00
$urls = [
2016-03-09 23:19:52 +00:00
'http://packagist.org',
'http://10.1.0.1/satis',
'http://127.0.0.1/satis',
'svn://localhost/trunk',
'svn://will.not.resolve/trunk',
'svn://192.168.0.1/trunk',
'svn://1.2.3.4/trunk',
'git://5.6.7.8/git.git',
2022-08-17 12:20:07 +00:00
];
2022-08-17 12:20:07 +00:00
return array_combine($urls, array_map(static function ($e): array {
return [$e];
2017-03-08 14:07:29 +00:00
}, $urls));
2016-03-09 23:19:52 +00:00
}
public function testProhibitedUrlsWarningVerifyPeer(): void
{
$io = $this->getMockBuilder(IOInterface::class)->disableOriginalConstructor()->getMock();
$io
->expects($this->once())
->method('writeError')
->with($this->equalTo('<warning>Warning: Accessing example.org with verify_peer and verify_peer_name disabled.</warning>'));
$config = new Config(false);
$config->prohibitUrlByConfig('https://example.org', $io, [
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false,
2022-08-17 12:20:07 +00:00
],
]);
}
/**
* @group TLS
*/
public function testDisableTlsCanBeOverridden(): void
{
$config = new Config;
$config->merge(
2022-08-17 12:20:07 +00:00
['config' => ['disable-tls' => 'false']]
);
$this->assertFalse($config->get('disable-tls'));
$config->merge(
2022-08-17 12:20:07 +00:00
['config' => ['disable-tls' => 'true']]
);
$this->assertTrue($config->get('disable-tls'));
}
2016-09-21 01:13:22 +00:00
public function testProcessTimeout(): void
2016-09-21 01:13:22 +00:00
{
2022-02-08 13:54:46 +00:00
Platform::putEnv('COMPOSER_PROCESS_TIMEOUT', '0');
2016-09-21 01:13:22 +00:00
$config = new Config(true);
2022-02-15 15:42:50 +00:00
$result = $config->get('process-timeout');
2022-02-08 13:54:46 +00:00
Platform::clearEnv('COMPOSER_PROCESS_TIMEOUT');
2022-02-15 15:42:50 +00:00
$this->assertEquals(0, $result);
2016-09-21 01:13:22 +00:00
}
public function testHtaccessProtect(): void
{
2022-02-08 13:54:46 +00:00
Platform::putEnv('COMPOSER_HTACCESS_PROTECT', '0');
$config = new Config(true);
2022-02-15 15:42:50 +00:00
$result = $config->get('htaccess-protect');
2022-02-08 13:54:46 +00:00
Platform::clearEnv('COMPOSER_HTACCESS_PROTECT');
2022-02-15 15:42:50 +00:00
$this->assertEquals(0, $result);
}
public function testGetSourceOfValue(): void
{
2022-02-08 13:54:46 +00:00
Platform::clearEnv('COMPOSER_PROCESS_TIMEOUT');
$config = new Config;
$this->assertSame(Config::SOURCE_DEFAULT, $config->getSourceOfValue('process-timeout'));
$config->merge(
2022-08-17 12:20:07 +00:00
['config' => ['process-timeout' => 1]],
'phpunit-test'
);
$this->assertSame('phpunit-test', $config->getSourceOfValue('process-timeout'));
}
public function testGetSourceOfValueEnvVariables(): void
{
2022-02-08 13:54:46 +00:00
Platform::putEnv('COMPOSER_HTACCESS_PROTECT', '0');
$config = new Config;
2022-02-15 15:42:50 +00:00
$result = $config->getSourceOfValue('htaccess-protect');
2022-02-08 13:54:46 +00:00
Platform::clearEnv('COMPOSER_HTACCESS_PROTECT');
2022-02-15 15:42:50 +00:00
$this->assertEquals('COMPOSER_HTACCESS_PROTECT', $result);
}
public function testGetDefaultsToAnEmptyArray(): void
{
$config = new Config;
$keys = [
'bitbucket-oauth',
'github-oauth',
'gitlab-oauth',
'gitlab-token',
'http-basic',
'bearer',
];
foreach ($keys as $key) {
$value = $config->get($key);
$this->assertIsArray($value);
$this->assertCount(0, $value);
}
}
2022-07-01 10:05:18 +00:00
2022-07-01 10:24:54 +00:00
public function testMergesPluginConfig(): void
{
$config = new Config(false);
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['allow-plugins' => ['some/plugin' => true]]]);
$this->assertEquals(['some/plugin' => true], $config->get('allow-plugins'));
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['allow-plugins' => ['another/plugin' => true]]]);
$this->assertEquals(['some/plugin' => true, 'another/plugin' => true], $config->get('allow-plugins'));
}
2022-07-01 10:24:54 +00:00
public function testOverridesGlobalBooleanPluginsConfig(): void
{
$config = new Config(false);
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['allow-plugins' => true]]);
$this->assertEquals(true, $config->get('allow-plugins'));
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['allow-plugins' => ['another/plugin' => true]]]);
$this->assertEquals(['another/plugin' => true], $config->get('allow-plugins'));
}
2022-07-01 10:24:54 +00:00
public function testAllowsAllPluginsFromLocalBoolean(): void
{
$config = new Config(false);
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['allow-plugins' => ['some/plugin' => true]]]);
$this->assertEquals(['some/plugin' => true], $config->get('allow-plugins'));
2022-08-17 12:20:07 +00:00
$config->merge(['config' => ['allow-plugins' => true]]);
$this->assertEquals(true, $config->get('allow-plugins'));
}
}