2012-07-18 15:20:01 +00:00
< ? php
/*
* 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\Package\Loader ;
use Composer\Package\Loader\ValidatingArrayLoader ;
2012-11-02 14:14:09 +00:00
use Composer\Package\Loader\InvalidPackageException ;
2020-02-07 03:18:45 +00:00
use Composer\Test\TestCase ;
2012-07-18 15:20:01 +00:00
2017-11-04 14:52:13 +00:00
class ValidatingArrayLoaderTest extends TestCase
2012-07-18 15:20:01 +00:00
{
/**
* @ dataProvider successProvider
*/
public function testLoadSuccess ( $config )
{
2018-04-12 08:24:56 +00:00
$internalLoader = $this -> getMockBuilder ( 'Composer\Package\Loader\LoaderInterface' ) -> getMock ();
2012-07-18 15:20:01 +00:00
$internalLoader
-> expects ( $this -> once ())
-> method ( 'load' )
-> with ( $config );
2014-04-09 13:23:43 +00:00
$loader = new ValidatingArrayLoader ( $internalLoader , true , null , ValidatingArrayLoader :: CHECK_ALL );
2012-07-18 15:20:01 +00:00
$loader -> load ( $config );
}
public function successProvider ()
{
return array (
array ( // minimal
array (
'name' => 'foo/bar' ,
),
),
array ( // complete
array (
'name' => 'foo/bar' ,
'description' => 'Foo bar' ,
'version' => '1.0.0' ,
'type' => 'library' ,
2015-06-02 13:04:58 +00:00
'keywords' => array ( 'a' , 'b_c' , 'D E' , 'éîüø' , '微信' ),
2012-07-18 15:20:01 +00:00
'homepage' => 'https://foo.com' ,
'time' => '2010-10-10T10:10:10+00:00' ,
'license' => 'MIT' ,
'authors' => array (
array (
'name' => 'Alice' ,
'email' => 'alice@example.org' ,
'role' => 'Lead' ,
'homepage' => 'http://example.org' ,
),
array (
'name' => 'Bob' ,
2012-11-05 14:39:43 +00:00
'homepage' => '' ,
2012-07-18 15:20:01 +00:00
),
),
'support' => array (
'email' => 'mail@example.org' ,
'issues' => 'http://example.org/' ,
'forum' => 'http://example.org/' ,
'wiki' => 'http://example.org/' ,
'source' => 'http://example.org/' ,
'irc' => 'irc://example.org/example' ,
2016-05-16 21:23:10 +00:00
'rss' => 'http://example.org/rss' ,
2018-10-14 11:15:25 +00:00
'chat' => 'http://example.org/chat' ,
2012-07-18 15:20:01 +00:00
),
'require' => array (
'a/b' => '1.*' ,
2013-10-12 00:29:16 +00:00
'b/c' => '~2' ,
2012-07-18 15:20:01 +00:00
'example' => '>2.0-dev,<2.4-dev' ,
),
'require-dev' => array (
'a/b' => '1.*' ,
2013-10-12 00:29:16 +00:00
'b/c' => '*' ,
2012-07-18 15:20:01 +00:00
'example' => '>2.0-dev,<2.4-dev' ,
),
'conflict' => array (
'a/b' => '1.*' ,
2013-10-12 00:29:16 +00:00
'b/c' => '>2.7' ,
2012-07-18 15:20:01 +00:00
'example' => '>2.0-dev,<2.4-dev' ,
),
'replace' => array (
'a/b' => '1.*' ,
'example' => '>2.0-dev,<2.4-dev' ,
),
'provide' => array (
'a/b' => '1.*' ,
'example' => '>2.0-dev,<2.4-dev' ,
),
'suggest' => array (
'foo/bar' => 'Foo bar is very useful' ,
),
'autoload' => array (
'psr-0' => array (
'Foo\\Bar' => 'src/' ,
'' => 'fallback/libs/' ,
),
'classmap' => array (
'dir/' ,
'dir2/file.php' ,
),
'files' => array (
'functions.php' ,
),
),
'include-path' => array (
'lib/' ,
),
'target-dir' => 'Foo/Bar' ,
'minimum-stability' => 'dev' ,
'repositories' => array (
array (
'type' => 'composer' ,
2018-07-24 07:30:06 +00:00
'url' => 'https://repo.packagist.org/' ,
2015-09-28 09:51:14 +00:00
),
2012-07-18 15:20:01 +00:00
),
'config' => array (
'bin-dir' => 'bin' ,
'vendor-dir' => 'vendor' ,
'process-timeout' => 10000 ,
),
2013-02-07 14:45:58 +00:00
'archive' => array (
'exclude' => array ( '/foo/bar' , 'baz' , '!/foo/bar/baz' ),
),
2012-07-18 15:20:01 +00:00
'scripts' => array (
'post-update-cmd' => 'Foo\\Bar\\Baz::doSomething' ,
'post-install-cmd' => array (
'Foo\\Bar\\Baz::doSomething' ,
),
),
'extra' => array (
'random' => array ( 'stuff' => array ( 'deeply' => 'nested' )),
2012-11-05 13:14:55 +00:00
'branch-alias' => array (
'dev-master' => '2.0-dev' ,
'dev-old' => '1.0.x-dev' ,
2015-09-28 09:51:14 +00:00
'3.x-dev' => '3.1.x-dev' ,
2012-11-05 13:14:55 +00:00
),
2012-07-18 15:20:01 +00:00
),
'bin' => array (
'bin/foo' ,
'bin/bar' ,
),
2015-09-28 09:51:14 +00:00
'transport-options' => array ( 'ssl' => array ( 'local_cert' => '/opt/certs/test.pem' )),
2012-07-18 15:20:01 +00:00
),
),
2018-01-02 08:55:41 +00:00
array ( // test licenses as array
2012-07-18 15:20:01 +00:00
array (
'name' => 'foo/bar' ,
'license' => array ( 'MIT' , 'WTFPL' ),
),
),
2018-01-02 08:55:41 +00:00
array ( // test bin as string
array (
'name' => 'foo/bar' ,
'bin' => 'bin1' ,
),
),
2012-07-18 15:20:01 +00:00
);
}
/**
2012-11-05 11:08:02 +00:00
* @ dataProvider errorProvider
2012-07-18 15:20:01 +00:00
*/
public function testLoadFailureThrowsException ( $config , $expectedErrors )
{
2018-04-12 08:24:56 +00:00
$internalLoader = $this -> getMockBuilder ( 'Composer\Package\Loader\LoaderInterface' ) -> getMock ();
2014-04-09 13:23:43 +00:00
$loader = new ValidatingArrayLoader ( $internalLoader , true , null , ValidatingArrayLoader :: CHECK_ALL );
2012-07-18 15:20:01 +00:00
try {
$loader -> load ( $config );
$this -> fail ( 'Expected exception to be thrown' );
2012-11-02 14:14:09 +00:00
} catch ( InvalidPackageException $e ) {
$errors = $e -> getErrors ();
2012-07-18 15:20:01 +00:00
sort ( $expectedErrors );
sort ( $errors );
$this -> assertEquals ( $expectedErrors , $errors );
}
}
/**
2012-11-05 11:08:02 +00:00
* @ dataProvider warningProvider
2012-07-18 15:20:01 +00:00
*/
2012-11-05 11:08:02 +00:00
public function testLoadWarnings ( $config , $expectedWarnings )
{
2018-04-12 08:24:56 +00:00
$internalLoader = $this -> getMockBuilder ( 'Composer\Package\Loader\LoaderInterface' ) -> getMock ();
2014-04-09 13:23:43 +00:00
$loader = new ValidatingArrayLoader ( $internalLoader , true , null , ValidatingArrayLoader :: CHECK_ALL );
2012-11-05 11:08:02 +00:00
$loader -> load ( $config );
$warnings = $loader -> getWarnings ();
sort ( $expectedWarnings );
sort ( $warnings );
$this -> assertEquals ( $expectedWarnings , $warnings );
}
/**
* @ dataProvider warningProvider
*/
2014-04-09 13:23:43 +00:00
public function testLoadSkipsWarningDataWhenIgnoringErrors ( $config , $expectedWarnings , $mustCheck = true )
2012-07-18 15:20:01 +00:00
{
2014-04-09 13:23:43 +00:00
if ( ! $mustCheck ) {
$this -> assertTrue ( true );
2014-06-10 14:02:44 +00:00
2014-04-09 13:23:43 +00:00
return ;
}
2018-04-12 08:24:56 +00:00
$internalLoader = $this -> getMockBuilder ( 'Composer\Package\Loader\LoaderInterface' ) -> getMock ();
2012-07-18 15:20:01 +00:00
$internalLoader
-> expects ( $this -> once ())
-> method ( 'load' )
-> with ( array ( 'name' => 'a/b' ));
2014-04-09 13:23:43 +00:00
$loader = new ValidatingArrayLoader ( $internalLoader , true , null , ValidatingArrayLoader :: CHECK_ALL );
2012-07-18 15:20:01 +00:00
$config [ 'name' ] = 'a/b' ;
$loader -> load ( $config );
}
2012-11-05 11:08:02 +00:00
public function errorProvider ()
2012-07-18 15:20:01 +00:00
{
return array (
array (
array (
'name' => 'foo' ,
),
array (
2015-09-28 09:51:14 +00:00
'name : invalid value (foo), must match [A-Za-z0-9][A-Za-z0-9_.-]*/[A-Za-z0-9][A-Za-z0-9_.-]*' ,
),
2012-07-18 15:20:01 +00:00
),
array (
array (
2012-11-05 11:08:02 +00:00
'name' => 'foo/bar' ,
'homepage' => 43 ,
),
array (
'homepage : should be a string, integer given' ,
2015-09-28 09:51:14 +00:00
),
2012-11-05 11:08:02 +00:00
),
array (
array (
'name' => 'foo/bar' ,
'support' => array (
'source' => array (),
),
),
array (
'support.source : invalid value, must be a string' ,
2015-09-28 09:51:14 +00:00
),
2012-11-05 11:08:02 +00:00
),
2013-04-25 19:02:15 +00:00
array (
array (
'name' => 'foo/bar' ,
'autoload' => 'strings' ,
),
array (
2015-09-28 09:51:14 +00:00
'autoload : should be an array, string given' ,
),
2013-04-25 19:02:15 +00:00
),
array (
array (
'name' => 'foo/bar' ,
'autoload' => array (
'psr0' => array (
'foo' => 'src' ,
),
),
),
array (
2015-10-30 20:40:09 +00:00
'autoload : invalid value (psr0), must be one of psr-0, psr-4, classmap, files, exclude-from-classmap' ,
2015-09-28 09:51:14 +00:00
),
2013-04-25 19:02:15 +00:00
),
2013-08-19 07:40:08 +00:00
array (
array (
'name' => 'foo/bar' ,
2014-05-07 16:25:28 +00:00
'transport-options' => 'test' ,
2013-08-19 07:40:08 +00:00
),
array (
2015-09-28 09:51:14 +00:00
'transport-options : should be an array, string given' ,
),
2013-08-19 07:40:08 +00:00
),
2012-11-05 11:08:02 +00:00
);
}
public function warningProvider ()
{
return array (
array (
array (
2012-07-18 15:20:01 +00:00
'name' => 'foo/bar' ,
'homepage' => 'foo:bar' ,
),
array (
2015-09-28 09:51:14 +00:00
'homepage : invalid value (foo:bar), must be an http/https URL' ,
),
2012-07-18 15:20:01 +00:00
),
2019-03-05 09:53:43 +00:00
array (
array (
'name' => 'foo/bar.json' ,
),
array (
'Deprecation warning: Your package name foo/bar.json is invalid, package names can not end in .json, consider renaming it or perhaps using a -json suffix instead. Make sure you fix this as Composer 2.0 will error.' ,
),
),
array (
array (
'name' => 'com1/foo' ,
),
array (
'Deprecation warning: Your package name com1/foo is reserved, package and vendor names can not match any of: nul, con, prn, aux, com1, com2, com3, com4, com5, com6, com7, com8, com9, lpt1, lpt2, lpt3, lpt4, lpt5, lpt6, lpt7, lpt8, lpt9. Make sure you fix this as Composer 2.0 will error.' ,
),
),
array (
array (
'name' => 'Foo/Bar' ,
),
array (
'Deprecation warning: Your package name Foo/Bar is invalid, it should not contain uppercase characters. We suggest using foo/bar instead. Make sure you fix this as Composer 2.0 will error.' ,
),
),
2012-07-18 15:20:01 +00:00
array (
array (
'name' => 'foo/bar' ,
'support' => array (
'source' => 'foo:bar' ,
'forum' => 'foo:bar' ,
'issues' => 'foo:bar' ,
'wiki' => 'foo:bar' ,
2018-10-14 11:15:25 +00:00
'chat' => 'foo:bar' ,
2012-07-18 15:20:01 +00:00
),
),
array (
2012-11-05 19:04:29 +00:00
'support.source : invalid value (foo:bar), must be an http/https URL' ,
'support.forum : invalid value (foo:bar), must be an http/https URL' ,
'support.issues : invalid value (foo:bar), must be an http/https URL' ,
'support.wiki : invalid value (foo:bar), must be an http/https URL' ,
2018-10-14 11:15:25 +00:00
'support.chat : invalid value (foo:bar), must be an http/https URL' ,
2015-09-28 09:51:14 +00:00
),
2012-07-18 15:20:01 +00:00
),
2013-10-12 00:29:16 +00:00
array (
array (
'name' => 'foo/bar' ,
'require' => array (
'foo/baz' => '*' ,
'bar/baz' => '>=1.0' ,
'bar/foo' => 'dev-master' ,
'bar/hacked' => '@stable' ,
2016-04-15 15:37:47 +00:00
'bar/woo' => '1.0.0' ,
2014-04-09 13:23:43 +00:00
),
2013-10-12 00:29:16 +00:00
),
array (
2014-04-09 13:23:43 +00:00
'require.foo/baz : unbound version constraints (*) should be avoided' ,
'require.bar/baz : unbound version constraints (>=1.0) should be avoided' ,
'require.bar/foo : unbound version constraints (dev-master) should be avoided' ,
'require.bar/hacked : unbound version constraints (@stable) should be avoided' ,
2016-04-15 15:37:47 +00:00
'require.bar/woo : exact version constraints (1.0.0) should be avoided if the package follows semantic versioning' ,
2014-04-09 13:23:43 +00:00
),
2015-09-28 09:51:14 +00:00
false ,
2013-10-12 00:29:16 +00:00
),
2019-03-01 19:11:20 +00:00
array (
array (
'name' => 'foo/bar' ,
'require' => array (
'Foo/Baz' => '^1.0' ,
),
),
array (
'Deprecation warning: require.Foo/Baz is invalid, it should not contain uppercase characters. Please use foo/baz instead. Make sure you fix this as Composer 2.0 will error.' ,
),
false ,
),
2016-05-15 20:15:48 +00:00
array (
array (
'name' => 'foo/bar' ,
'require' => array (
'bar/unstable' => '0.3.0' ,
),
),
array (
// using an exact version constraint for an unstable version should not trigger a warning
),
false ,
),
2014-12-01 05:09:35 +00:00
array (
array (
'name' => 'foo/bar' ,
'extra' => array (
'branch-alias' => array (
2015-09-28 09:51:14 +00:00
'5.x-dev' => '3.1.x-dev' ,
2014-12-01 05:09:35 +00:00
),
2015-09-28 09:51:14 +00:00
),
2014-12-01 05:09:35 +00:00
),
array (
2015-09-28 09:51:14 +00:00
'extra.branch-alias.5.x-dev : the target branch (3.1.x-dev) is not a valid numeric alias for this version' ,
2014-12-01 05:09:35 +00:00
),
2015-09-28 09:51:14 +00:00
false ,
2014-12-01 05:09:35 +00:00
),
2015-01-20 10:26:10 +00:00
array (
array (
'name' => 'foo/bar' ,
'extra' => array (
'branch-alias' => array (
2015-09-28 09:51:14 +00:00
'5.x-dev' => '3.1-dev' ,
2015-01-20 10:26:10 +00:00
),
2015-09-28 09:51:14 +00:00
),
2015-01-20 10:26:10 +00:00
),
array (
2015-09-28 09:51:14 +00:00
'extra.branch-alias.5.x-dev : the target branch (3.1-dev) is not a valid numeric alias for this version' ,
2015-01-20 10:26:10 +00:00
),
2015-09-28 09:51:14 +00:00
false ,
2015-01-20 10:26:10 +00:00
),
2012-07-18 15:20:01 +00:00
);
}
}