2022-05-11 14:05:35 +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\Command ;
use Composer\Test\TestCase ;
class ConfigCommandTest extends TestCase
{
/**
* @ dataProvider provideConfigUpdates
* @ param array < mixed > $before
* @ param array < mixed > $command
* @ param array < mixed > $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 ));
}
2022-11-24 13:39:08 +00:00
public static function provideConfigUpdates () : \Generator
2022-05-11 14:05:35 +00:00
{
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 < mixed > $composerJson
* @ param array < mixed > $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' );
}
2022-11-24 13:39:08 +00:00
public static function provideConfigReads () : \Generator
2022-05-11 14:05:35 +00:00
{
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' => [
2022-08-16 08:41:58 +00:00
[ 'repositories' => [ 'foo' => [ 'type' => 'vcs' , 'url' => 'https://example.org' ], 'packagist.org' => [ 'type' => 'composer' , 'url' => 'https://repo.packagist.org' ]]],
2022-05-11 14:05:35 +00:00
[ 'setting-key' => 'repositories.foo' ],
'{"type":"vcs","url":"https://example.org"}' ,
];
yield 'read repos by numeric index' => [
2022-08-16 08:41:58 +00:00
[ 'repositories' => [[ 'type' => 'vcs' , 'url' => 'https://example.org' ], 'packagist.org' => [ 'type' => 'composer' , 'url' => 'https://repo.packagist.org' ]]],
2022-05-11 14:05:35 +00:00
[ 'setting-key' => 'repos.0' ],
'{"type":"vcs","url":"https://example.org"}' ,
];
yield 'read all repos includes the default packagist' => [
2022-08-16 08:41:58 +00:00
[ 'repositories' => [ 'foo' => [ 'type' => 'vcs' , 'url' => 'https://example.org' ], 'packagist.org' => [ 'type' => 'composer' , 'url' => 'https://repo.packagist.org' ]]],
2022-05-11 14:05:35 +00:00
[ '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"}}' ,
];
}
}