2022-02-23 15:58:18 +00:00
|
|
|
<?php declare(strict_types=1);
|
2012-06-24 11:03:55 +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;
|
|
|
|
|
|
|
|
use Composer\Config;
|
2022-04-13 10:21:08 +00:00
|
|
|
use Composer\IO\BaseIO;
|
|
|
|
use Composer\IO\IOInterface;
|
|
|
|
use Composer\IO\NullIO;
|
2022-02-08 13:54:46 +00:00
|
|
|
use Composer\Util\Platform;
|
2012-06-24 11:03:55 +00:00
|
|
|
|
2017-11-04 14:52:13 +00:00
|
|
|
class ConfigTest extends TestCase
|
2012-06-24 11:03:55 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @dataProvider dataAddPackagistRepository
|
2021-11-02 13:32:09 +00:00
|
|
|
* @param mixed[] $expected
|
|
|
|
* @param mixed[] $localConfig
|
2022-02-22 15:47:09 +00:00
|
|
|
* @param ?array<mixed> $systemConfig
|
2012-06-24 11:03:55 +00:00
|
|
|
*/
|
2022-02-22 15:47:09 +00:00
|
|
|
public function testAddPackagistRepository(array $expected, array $localConfig, ?array $systemConfig = null): void
|
2012-06-24 11:03:55 +00:00
|
|
|
{
|
2014-11-21 10:15:17 +00:00
|
|
|
$config = new Config(false);
|
2012-06-24 11:03:55 +00:00
|
|
|
if ($systemConfig) {
|
|
|
|
$config->merge(array('repositories' => $systemConfig));
|
|
|
|
}
|
|
|
|
$config->merge(array('repositories' => $localConfig));
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $config->getRepositories());
|
|
|
|
}
|
|
|
|
|
2022-02-21 12:42:28 +00:00
|
|
|
public function dataAddPackagistRepository(): array
|
2012-06-24 11:03:55 +00:00
|
|
|
{
|
|
|
|
$data = array();
|
|
|
|
$data['local config inherits system defaults'] = array(
|
|
|
|
array(
|
2021-02-11 10:13:58 +00:00
|
|
|
'packagist.org' => array('type' => 'composer', 'url' => 'https://repo.packagist.org'),
|
2012-06-24 11:03:55 +00:00
|
|
|
),
|
|
|
|
array(),
|
|
|
|
);
|
|
|
|
|
|
|
|
$data['local config can disable system config by name'] = array(
|
2016-11-03 10:30:35 +00:00
|
|
|
array(),
|
|
|
|
array(
|
|
|
|
array('packagist.org' => false),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$data['local config can disable system config by name bc'] = array(
|
2012-06-24 11:03:55 +00:00
|
|
|
array(),
|
|
|
|
array(
|
|
|
|
array('packagist' => false),
|
2015-09-28 09:51:14 +00:00
|
|
|
),
|
2012-06-24 11:03:55 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$data['local config adds above defaults'] = array(
|
|
|
|
array(
|
|
|
|
1 => array('type' => 'vcs', 'url' => 'git://github.com/composer/composer.git'),
|
|
|
|
0 => array('type' => 'pear', 'url' => 'http://pear.composer.org'),
|
2021-02-11 10:13:58 +00:00
|
|
|
'packagist.org' => array('type' => 'composer', 'url' => 'https://repo.packagist.org'),
|
2012-06-24 11:03:55 +00:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
array('type' => 'vcs', 'url' => 'git://github.com/composer/composer.git'),
|
|
|
|
array('type' => 'pear', 'url' => 'http://pear.composer.org'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$data['system config adds above core defaults'] = array(
|
|
|
|
array(
|
|
|
|
'example.com' => array('type' => 'composer', 'url' => 'http://example.com'),
|
2021-02-11 10:13:58 +00:00
|
|
|
'packagist.org' => array('type' => 'composer', 'url' => 'https://repo.packagist.org'),
|
2012-06-24 11:03:55 +00:00
|
|
|
),
|
|
|
|
array(),
|
|
|
|
array(
|
|
|
|
'example.com' => array('type' => 'composer', 'url' => 'http://example.com'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$data['local config can disable repos by name and re-add them anonymously to bring them above system config'] = array(
|
|
|
|
array(
|
|
|
|
0 => array('type' => 'composer', 'url' => 'http://packagist.org'),
|
2015-09-28 09:51:14 +00:00
|
|
|
'example.com' => array('type' => 'composer', 'url' => 'http://example.com'),
|
2012-06-24 11:03:55 +00:00
|
|
|
),
|
|
|
|
array(
|
2016-11-03 10:30:35 +00:00
|
|
|
array('packagist.org' => false),
|
2015-09-28 09:51:14 +00:00
|
|
|
array('type' => 'composer', 'url' => 'http://packagist.org'),
|
2012-06-24 11:03:55 +00:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
'example.com' => array('type' => 'composer', 'url' => 'http://example.com'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$data['local config can override by name to bring a repo above system config'] = array(
|
|
|
|
array(
|
2016-11-03 10:30:35 +00:00
|
|
|
'packagist.org' => array('type' => 'composer', 'url' => 'http://packagistnew.org'),
|
2015-09-28 09:51:14 +00:00
|
|
|
'example.com' => array('type' => 'composer', 'url' => 'http://example.com'),
|
2012-06-24 11:03:55 +00:00
|
|
|
),
|
|
|
|
array(
|
2016-11-03 10:30:35 +00:00
|
|
|
'packagist.org' => array('type' => 'composer', 'url' => 'http://packagistnew.org'),
|
2012-06-24 11:03:55 +00:00
|
|
|
),
|
|
|
|
array(
|
|
|
|
'example.com' => array('type' => 'composer', 'url' => 'http://example.com'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2021-02-11 10:13:58 +00:00
|
|
|
$data['local config redefining packagist.org by URL override it if no named keys are used'] = array(
|
|
|
|
array(
|
|
|
|
array('type' => 'composer', 'url' => 'https://repo.packagist.org'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
array('type' => 'composer', 'url' => 'https://repo.packagist.org'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$data['local config redefining packagist.org by URL override it also with named keys'] = array(
|
|
|
|
array(
|
|
|
|
'example' => array('type' => 'composer', 'url' => 'https://repo.packagist.org'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'example' => array('type' => 'composer', 'url' => 'https://repo.packagist.org'),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2015-01-20 10:03:55 +00:00
|
|
|
$data['incorrect local config does not cause ErrorException'] = array(
|
|
|
|
array(
|
2021-02-11 10:13:58 +00:00
|
|
|
'packagist.org' => array('type' => 'composer', 'url' => 'https://repo.packagist.org'),
|
2015-01-20 10:03:55 +00:00
|
|
|
'type' => 'vcs',
|
|
|
|
'url' => 'http://example.com',
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'type' => 'vcs',
|
|
|
|
'url' => 'http://example.com',
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2012-06-24 11:03:55 +00:00
|
|
|
return $data;
|
|
|
|
}
|
2012-12-08 20:45:21 +00:00
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testPreferredInstallAsString(): void
|
2015-04-18 22:25:59 +00:00
|
|
|
{
|
|
|
|
$config = new Config(false);
|
|
|
|
$config->merge(array('config' => array('preferred-install' => 'source')));
|
2015-04-18 22:31:16 +00:00
|
|
|
$config->merge(array('config' => array('preferred-install' => 'dist')));
|
2015-04-18 22:25:59 +00:00
|
|
|
|
2015-04-18 22:31:16 +00:00
|
|
|
$this->assertEquals('dist', $config->get('preferred-install'));
|
2015-04-18 22:25:59 +00:00
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testMergePreferredInstall(): void
|
2015-04-18 22:25:59 +00:00
|
|
|
{
|
|
|
|
$config = new Config(false);
|
|
|
|
$config->merge(array('config' => array('preferred-install' => 'dist')));
|
|
|
|
$config->merge(array('config' => array('preferred-install' => array('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
|
|
|
|
$this->assertEquals(array('foo/*' => 'source', '*' => 'dist'), $config->get('preferred-install'));
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testMergeGithubOauth(): void
|
2012-12-08 20:45:21 +00:00
|
|
|
{
|
2014-11-21 10:15:17 +00:00
|
|
|
$config = new Config(false);
|
2012-12-08 20:45:21 +00:00
|
|
|
$config->merge(array('config' => array('github-oauth' => array('foo' => 'bar'))));
|
|
|
|
$config->merge(array('config' => array('github-oauth' => array('bar' => 'baz'))));
|
|
|
|
|
|
|
|
$this->assertEquals(array('foo' => 'bar', 'bar' => 'baz'), $config->get('github-oauth'));
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testVarReplacement(): void
|
2014-06-29 12:47:43 +00:00
|
|
|
{
|
2014-11-21 10:15:17 +00:00
|
|
|
$config = new Config(false);
|
2014-06-29 12:47:43 +00:00
|
|
|
$config->merge(array('config' => array('a' => 'b', 'c' => '{$a}')));
|
|
|
|
$config->merge(array('config' => array('bin-dir' => '$HOME', 'cache-dir' => '~/foo/')));
|
|
|
|
|
2014-09-30 14:17:53 +00:00
|
|
|
$home = rtrim(getenv('HOME') ?: getenv('USERPROFILE'), '\\/');
|
2014-06-29 12:47:43 +00:00
|
|
|
$this->assertEquals('b', $config->get('c'));
|
2016-04-13 00:02:50 +00:00
|
|
|
$this->assertEquals($home, $config->get('bin-dir'));
|
2014-06-29 12:47:43 +00:00
|
|
|
$this->assertEquals($home.'/foo', $config->get('cache-dir'));
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testRealpathReplacement(): void
|
2014-12-16 11:12:13 +00:00
|
|
|
{
|
|
|
|
$config = new Config(false, '/foo/bar');
|
|
|
|
$config->merge(array('config' => array(
|
|
|
|
'bin-dir' => '$HOME/foo',
|
|
|
|
'cache-dir' => '/baz/',
|
2015-09-28 09:51:14 +00:00
|
|
|
'vendor-dir' => 'vendor',
|
2014-12-16 11:12:13 +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'));
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testStreamWrapperDirs(): void
|
2016-01-25 23:40:16 +00:00
|
|
|
{
|
|
|
|
$config = new Config(false, '/foo/bar');
|
|
|
|
$config->merge(array('config' => array(
|
|
|
|
'cache-dir' => 's3://baz/',
|
|
|
|
)));
|
|
|
|
|
|
|
|
$this->assertEquals('s3://baz', $config->get('cache-dir'));
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testFetchingRelativePaths(): void
|
2014-12-17 21:57:27 +00:00
|
|
|
{
|
|
|
|
$config = new Config(false, '/foo/bar');
|
|
|
|
$config->merge(array('config' => array(
|
|
|
|
'bin-dir' => '{$vendor-dir}/foo',
|
2015-09-28 09:51:14 +00:00
|
|
|
'vendor-dir' => 'vendor',
|
2014-12-17 21:57:27 +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));
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testOverrideGithubProtocols(): void
|
2012-12-08 20:45:21 +00:00
|
|
|
{
|
2014-11-21 10:15:17 +00:00
|
|
|
$config = new Config(false);
|
2016-03-01 13:19:44 +00:00
|
|
|
$config->merge(array('config' => array('github-protocols' => array('https', 'ssh'))));
|
2013-06-28 18:42:06 +00:00
|
|
|
$config->merge(array('config' => array('github-protocols' => array('https'))));
|
2012-12-08 20:45:21 +00:00
|
|
|
|
2013-06-28 18:42:06 +00:00
|
|
|
$this->assertEquals(array('https'), $config->get('github-protocols'));
|
2012-12-08 20:45:21 +00:00
|
|
|
}
|
2014-02-23 10:20:48 +00:00
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testGitDisabledByDefaultInGithubProtocols(): void
|
2016-03-01 13:19:44 +00:00
|
|
|
{
|
|
|
|
$config = new Config(false);
|
|
|
|
$config->merge(array('config' => array('github-protocols' => array('https', 'git'))));
|
|
|
|
$this->assertEquals(array('https'), $config->get('github-protocols'));
|
|
|
|
|
|
|
|
$config->merge(array('config' => array('secure-http' => false)));
|
|
|
|
$this->assertEquals(array('https', 'git'), $config->get('github-protocols'));
|
|
|
|
}
|
|
|
|
|
2016-03-09 23:19:52 +00:00
|
|
|
/**
|
|
|
|
* @dataProvider allowedUrlProvider
|
2020-02-07 06:35:07 +00:00
|
|
|
* @doesNotPerformAssertions
|
2016-03-09 23:19:52 +00:00
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
*/
|
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
|
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
*/
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-11-02 13:32:09 +00:00
|
|
|
* @return string[][] List of test URLs that should pass strict security
|
2016-03-09 23:19:52 +00:00
|
|
|
*/
|
2022-02-18 10:22:01 +00:00
|
|
|
public function allowedUrlProvider(): array
|
2016-03-09 23:19:52 +00:00
|
|
|
{
|
|
|
|
$urls = array(
|
|
|
|
'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',
|
2016-04-15 22:13:07 +00:00
|
|
|
'git:Department/Repo.git',
|
|
|
|
'ssh://[user@]host.xz[:port]/path/to/repo.git/',
|
2016-03-09 23:19:52 +00:00
|
|
|
);
|
2016-04-11 14:06:57 +00:00
|
|
|
|
2022-02-21 12:42:28 +00:00
|
|
|
return array_combine($urls, array_map(function ($e): array {
|
2017-03-08 14:07:29 +00:00
|
|
|
return array($e);
|
|
|
|
}, $urls));
|
2016-03-09 23:19:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-11-02 13:32:09 +00:00
|
|
|
* @return string[][] List of test URLs that should not pass strict security
|
2016-03-09 23:19:52 +00:00
|
|
|
*/
|
2022-02-18 10:22:01 +00:00
|
|
|
public function prohibitedUrlProvider(): array
|
2016-03-09 23:19:52 +00:00
|
|
|
{
|
|
|
|
$urls = array(
|
|
|
|
'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',
|
|
|
|
);
|
2016-04-11 14:06:57 +00:00
|
|
|
|
2022-02-21 12:42:28 +00:00
|
|
|
return array_combine($urls, array_map(function ($e): array {
|
2017-03-08 14:07:29 +00:00
|
|
|
return array($e);
|
|
|
|
}, $urls));
|
2016-03-09 23:19:52 +00:00
|
|
|
}
|
2016-04-11 14:06:57 +00:00
|
|
|
|
2022-04-13 10:21:08 +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,
|
|
|
|
]
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2014-02-23 10:20:48 +00:00
|
|
|
/**
|
|
|
|
* @group TLS
|
|
|
|
*/
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testDisableTlsCanBeOverridden(): void
|
2014-02-23 10:20:48 +00:00
|
|
|
{
|
|
|
|
$config = new Config;
|
|
|
|
$config->merge(
|
|
|
|
array('config' => array('disable-tls' => 'false'))
|
|
|
|
);
|
|
|
|
$this->assertFalse($config->get('disable-tls'));
|
|
|
|
$config->merge(
|
|
|
|
array('config' => array('disable-tls' => 'true'))
|
|
|
|
);
|
|
|
|
$this->assertTrue($config->get('disable-tls'));
|
|
|
|
}
|
2016-09-21 01:13:22 +00:00
|
|
|
|
2022-02-18 09:38:54 +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
|
|
|
}
|
2017-06-15 15:06:13 +00:00
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testHtaccessProtect(): void
|
2017-06-15 15:06:13 +00:00
|
|
|
{
|
2022-02-08 13:54:46 +00:00
|
|
|
Platform::putEnv('COMPOSER_HTACCESS_PROTECT', '0');
|
2017-06-15 15:06:13 +00:00
|
|
|
$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);
|
2017-06-15 15:06:13 +00:00
|
|
|
}
|
2021-11-11 14:17:58 +00:00
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testGetSourceOfValue(): void
|
2021-11-11 14:17:58 +00:00
|
|
|
{
|
2022-02-08 13:54:46 +00:00
|
|
|
Platform::clearEnv('COMPOSER_PROCESS_TIMEOUT');
|
|
|
|
|
2021-11-11 14:17:58 +00:00
|
|
|
$config = new Config;
|
|
|
|
|
|
|
|
$this->assertSame(Config::SOURCE_DEFAULT, $config->getSourceOfValue('process-timeout'));
|
|
|
|
|
|
|
|
$config->merge(
|
|
|
|
array('config' => array('process-timeout' => 1)),
|
|
|
|
'phpunit-test'
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertSame('phpunit-test', $config->getSourceOfValue('process-timeout'));
|
|
|
|
}
|
|
|
|
|
2022-02-18 09:38:54 +00:00
|
|
|
public function testGetSourceOfValueEnvVariables(): void
|
2021-11-11 14:17:58 +00:00
|
|
|
{
|
2022-02-08 13:54:46 +00:00
|
|
|
Platform::putEnv('COMPOSER_HTACCESS_PROTECT', '0');
|
2021-11-11 14:17:58 +00:00
|
|
|
$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);
|
2021-11-11 14:17:58 +00:00
|
|
|
}
|
2022-06-03 05:43:37 +00:00
|
|
|
|
|
|
|
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
|
2022-07-01 09:08:35 +00:00
|
|
|
{
|
|
|
|
$config = new Config(false);
|
|
|
|
$config->merge(array('config' => array('allow-plugins' => array('some/plugin' => true))));
|
|
|
|
$this->assertEquals(array('some/plugin' => true), $config->get('allow-plugins'));
|
|
|
|
|
|
|
|
$config->merge(array('config' => array('allow-plugins' => array('another/plugin' => true))));
|
|
|
|
$this->assertEquals(array('some/plugin' => true, 'another/plugin' => true), $config->get('allow-plugins'));
|
|
|
|
}
|
|
|
|
|
2022-07-01 10:24:54 +00:00
|
|
|
public function testOverridesGlobalBooleanPluginsConfig(): void
|
2022-07-01 09:08:35 +00:00
|
|
|
{
|
|
|
|
$config = new Config(false);
|
|
|
|
$config->merge(array('config' => array('allow-plugins' => true)));
|
|
|
|
$this->assertEquals(true, $config->get('allow-plugins'));
|
|
|
|
|
|
|
|
$config->merge(array('config' => array('allow-plugins' => array('another/plugin' => true))));
|
|
|
|
$this->assertEquals(array('another/plugin' => true), $config->get('allow-plugins'));
|
|
|
|
}
|
|
|
|
|
2022-07-01 10:24:54 +00:00
|
|
|
public function testAllowsAllPluginsFromLocalBoolean(): void
|
2022-07-01 09:08:35 +00:00
|
|
|
{
|
|
|
|
$config = new Config(false);
|
|
|
|
$config->merge(array('config' => array('allow-plugins' => array('some/plugin' => true))));
|
|
|
|
$this->assertEquals(array('some/plugin' => true), $config->get('allow-plugins'));
|
|
|
|
|
|
|
|
$config->merge(array('config' => array('allow-plugins' => true)));
|
|
|
|
$this->assertEquals(true, $config->get('allow-plugins'));
|
|
|
|
}
|
2012-06-24 11:03:55 +00:00
|
|
|
}
|