* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Test\Command; use Composer\Test\TestCase; class ConfigCommandTest extends TestCase { /** * @dataProvider provideConfigUpdates * @param array $before * @param array $command * @param array $expected */ public function testConfigUpdates(array $before, array $command, array $expected): void { $this->initTempComposer($before); $appTester = $this->getApplicationTester(); $appTester->run(array_merge(['command' => 'config'], $command)); $appTester->assertCommandIsSuccessful($appTester->getDisplay()); $this->assertSame($expected, json_decode((string) file_get_contents('composer.json'), true)); } public function provideConfigUpdates(): \Generator { yield 'set scripts' => [ [], ['setting-key' => 'scripts.test', 'setting-value' => ['foo bar']], ['scripts' => ['test' => 'foo bar']], ]; yield 'unset scripts' => [ ['scripts' => ['test' => 'foo bar', 'lala' => 'baz']], ['setting-key' => 'scripts.lala', '--unset' => true], ['scripts' => ['test' => 'foo bar']], ]; yield 'set single config with bool normalizer' => [ [], ['setting-key' => 'use-github-api', 'setting-value' => ['1']], ['config' => ['use-github-api' => true]], ]; yield 'set multi config' => [ [], ['setting-key' => 'github-protocols', 'setting-value' => ['https', 'git']], ['config' => ['github-protocols' => ['https', 'git']]], ]; yield 'set version' => [ [], ['setting-key' => 'version', 'setting-value' => ['1.0.0']], ['version' => '1.0.0'], ]; yield 'unset version' => [ ['version' => '1.0.0'], ['setting-key' => 'version', '--unset' => true], [], ]; yield 'unset arbitrary property' => [ ['random-prop' => '1.0.0'], ['setting-key' => 'random-prop', '--unset' => true], [], ]; yield 'set preferred-install' => [ [], ['setting-key' => 'preferred-install.foo/*', 'setting-value' => ['source']], ['config' => ['preferred-install' => ['foo/*' => 'source']]], ]; yield 'unset preferred-install' => [ ['config' => ['preferred-install' => ['foo/*' => 'source']]], ['setting-key' => 'preferred-install.foo/*', '--unset' => true], ['config' => ['preferred-install' => []]], ]; } /** * @dataProvider provideConfigReads * @param array $composerJson * @param array $command */ public function testConfigReads(array $composerJson, array $command, string $expected): void { $this->initTempComposer($composerJson); $appTester = $this->getApplicationTester(); $appTester->run(array_merge(['command' => 'config'], $command)); $appTester->assertCommandIsSuccessful(); $this->assertSame($expected, trim($appTester->getDisplay(true))); $this->assertSame($composerJson, json_decode((string) file_get_contents('composer.json'), true), 'The composer.json should not be modified by config reads'); } public function provideConfigReads(): \Generator { yield 'read description' => [ ['description' => 'foo bar'], ['setting-key' => 'description'], 'foo bar', ]; yield 'read vendor-dir with source' => [ ['config' => ['vendor-dir' => 'lala']], ['setting-key' => 'vendor-dir', '--source' => true], 'lala (./composer.json)', ]; yield 'read default vendor-dir' => [ [], ['setting-key' => 'vendor-dir'], 'vendor', ]; yield 'read repos by named key' => [ ['repositories' => ['foo' => ['type' => 'vcs', 'url' => 'https://example.org'], 'packagist.org' => ['type' => 'composer', 'url' => 'https://repo.packagist.org']]], ['setting-key' => 'repositories.foo'], '{"type":"vcs","url":"https://example.org"}', ]; yield 'read repos by numeric index' => [ ['repositories' => [['type' => 'vcs', 'url' => 'https://example.org'], 'packagist.org' => ['type' => 'composer', 'url' => 'https://repo.packagist.org']]], ['setting-key' => 'repos.0'], '{"type":"vcs","url":"https://example.org"}', ]; yield 'read all repos includes the default packagist' => [ ['repositories' => ['foo' => ['type' => 'vcs', 'url' => 'https://example.org'], 'packagist.org' => ['type' => 'composer', 'url' => 'https://repo.packagist.org']]], ['setting-key' => 'repos'], '{"foo":{"type":"vcs","url":"https://example.org"},"packagist.org":{"type":"composer","url":"https://repo.packagist.org"}}', ]; yield 'read all repos does not include the disabled packagist' => [ ['repositories' => ['foo' => ['type' => 'vcs', 'url' => 'https://example.org'], 'packagist.org' => false]], ['setting-key' => 'repos'], '{"foo":{"type":"vcs","url":"https://example.org"}}', ]; } }