2013-09-26 21:44:21 +00:00
|
|
|
<?php
|
|
|
|
|
2015-10-13 09:34:02 +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.
|
|
|
|
*/
|
|
|
|
|
2013-09-26 21:44:21 +00:00
|
|
|
namespace Composer\Test\Autoload;
|
|
|
|
|
|
|
|
use Composer\Autoload\ClassLoader;
|
2020-02-07 03:18:45 +00:00
|
|
|
use Composer\Test\TestCase;
|
2013-09-26 21:44:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests the Composer\Autoload\ClassLoader class.
|
|
|
|
*/
|
2017-11-04 14:52:13 +00:00
|
|
|
class ClassLoaderTest extends TestCase
|
2013-09-26 21:44:21 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Tests regular PSR-0 and PSR-4 class loading.
|
|
|
|
*
|
|
|
|
* @dataProvider getLoadClassTests
|
|
|
|
*
|
2017-03-08 14:07:29 +00:00
|
|
|
* @param string $class The fully-qualified class name to test, without preceding namespace separator.
|
2013-09-26 21:44:21 +00:00
|
|
|
*/
|
2016-10-06 18:54:09 +00:00
|
|
|
public function testLoadClass($class)
|
2013-09-26 21:44:21 +00:00
|
|
|
{
|
|
|
|
$loader = new ClassLoader();
|
|
|
|
$loader->add('Namespaced\\', __DIR__ . '/Fixtures');
|
|
|
|
$loader->add('Pearlike_', __DIR__ . '/Fixtures');
|
|
|
|
$loader->addPsr4('ShinyVendor\\ShinyPackage\\', __DIR__ . '/Fixtures');
|
2016-10-06 18:54:09 +00:00
|
|
|
$loader->loadClass($class);
|
|
|
|
$this->assertTrue(class_exists($class, false), "->loadClass() loads '$class'");
|
2013-09-26 21:44:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides arguments for ->testLoadClass().
|
|
|
|
*
|
2021-10-26 19:48:56 +00:00
|
|
|
* @return array<array<string>> Array of parameter sets to test with.
|
2013-09-26 21:44:21 +00:00
|
|
|
*/
|
|
|
|
public function getLoadClassTests()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
array('Namespaced\\Foo'),
|
|
|
|
array('Pearlike_Foo'),
|
|
|
|
array('ShinyVendor\\ShinyPackage\\SubNamespace\\Foo'),
|
|
|
|
);
|
|
|
|
}
|
2014-11-16 13:24:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* getPrefixes method should return empty array if ClassLoader does not have any psr-0 configuration
|
|
|
|
*/
|
|
|
|
public function testGetPrefixesWithNoPSR0Configuration()
|
|
|
|
{
|
|
|
|
$loader = new ClassLoader();
|
|
|
|
$this->assertEmpty($loader->getPrefixes());
|
|
|
|
}
|
2013-09-26 21:44:21 +00:00
|
|
|
}
|