2011-03-18 17:35:20 +11:00
|
|
|
<?php
|
2016-08-19 10:51:35 +12:00
|
|
|
|
2016-12-16 17:34:21 +13:00
|
|
|
namespace SilverStripe\Core\Tests\Manifest;
|
|
|
|
|
2017-03-14 15:20:51 +13:00
|
|
|
use Exception;
|
2016-09-09 18:43:05 +12:00
|
|
|
use SilverStripe\Core\Manifest\ClassManifest;
|
2016-08-19 10:51:35 +12:00
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
|
|
|
2011-03-18 17:35:20 +11:00
|
|
|
/**
|
2016-09-09 18:43:05 +12:00
|
|
|
* Tests for the {@link ClassManifest} class.
|
2011-03-18 17:35:20 +11:00
|
|
|
*/
|
2016-12-16 17:34:21 +13:00
|
|
|
class ClassManifestTest extends SapphireTest
|
|
|
|
{
|
|
|
|
|
2017-03-14 15:20:51 +13:00
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
2016-12-16 17:34:21 +13:00
|
|
|
protected $base;
|
2017-03-14 15:20:51 +13:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var ClassManifest
|
|
|
|
*/
|
2016-12-16 17:34:21 +13:00
|
|
|
protected $manifest;
|
2017-03-14 15:20:51 +13:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var ClassManifest
|
|
|
|
*/
|
2016-12-16 17:34:21 +13:00
|
|
|
protected $manifestTests;
|
|
|
|
|
2017-03-24 16:00:54 +13:00
|
|
|
protected function setUp()
|
2016-12-16 17:34:21 +13:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->base = dirname(__FILE__) . '/fixtures/classmanifest';
|
2017-06-22 22:50:45 +12:00
|
|
|
$this->manifest = new ClassManifest($this->base);
|
|
|
|
$this->manifest->init(false);
|
|
|
|
$this->manifestTests = new ClassManifest($this->base);
|
|
|
|
$this->manifestTests->init(true);
|
2016-12-16 17:34:21 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetItemPath()
|
|
|
|
{
|
|
|
|
$expect = array(
|
|
|
|
'CLASSA' => 'module/classes/ClassA.php',
|
|
|
|
'ClassA' => 'module/classes/ClassA.php',
|
|
|
|
'classa' => 'module/classes/ClassA.php',
|
|
|
|
'INTERFACEA' => 'module/interfaces/InterfaceA.php',
|
|
|
|
'InterfaceA' => 'module/interfaces/InterfaceA.php',
|
|
|
|
'interfacea' => 'module/interfaces/InterfaceA.php',
|
|
|
|
'TestTraitA' => 'module/traits/TestTraitA.php',
|
|
|
|
'TestNamespace\Testing\TestTraitB' => 'module/traits/TestTraitB.php'
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($expect as $name => $path) {
|
|
|
|
$this->assertEquals("{$this->base}/$path", $this->manifest->getItemPath($name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetClasses()
|
|
|
|
{
|
|
|
|
$expect = array(
|
|
|
|
'classa' => "{$this->base}/module/classes/ClassA.php",
|
|
|
|
'classb' => "{$this->base}/module/classes/ClassB.php",
|
|
|
|
'classc' => "{$this->base}/module/classes/ClassC.php",
|
|
|
|
'classd' => "{$this->base}/module/classes/ClassD.php",
|
2017-02-20 21:57:20 +00:00
|
|
|
'classe' => "{$this->base}/module/classes/ClassE.php",
|
2016-12-16 17:34:21 +13:00
|
|
|
);
|
|
|
|
$this->assertEquals($expect, $this->manifest->getClasses());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetClassNames()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2017-09-19 16:55:39 +12:00
|
|
|
[
|
|
|
|
'classa' => 'ClassA',
|
|
|
|
'classb' => 'ClassB',
|
|
|
|
'classc' => 'ClassC',
|
|
|
|
'classd' => 'ClassD',
|
|
|
|
'classe' => 'ClassE',
|
|
|
|
],
|
2016-12-16 17:34:21 +13:00
|
|
|
$this->manifest->getClassNames()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetTraitNames()
|
|
|
|
{
|
|
|
|
$this->assertEquals(
|
2017-09-19 16:55:39 +12:00
|
|
|
array(
|
|
|
|
'testtraita' => 'TestTraitA',
|
|
|
|
'testnamespace\testing\testtraitb' => 'TestNamespace\Testing\TestTraitB',
|
|
|
|
),
|
2016-12-16 17:34:21 +13:00
|
|
|
$this->manifest->getTraitNames()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetDescendants()
|
|
|
|
{
|
2017-09-19 16:55:39 +12:00
|
|
|
$expect = [
|
|
|
|
'classa' => [
|
|
|
|
'classc' => 'ClassC',
|
|
|
|
'classd' => 'ClassD',
|
|
|
|
],
|
|
|
|
'classc' => [
|
|
|
|
'classd' => 'ClassD',
|
|
|
|
],
|
|
|
|
];
|
2016-12-16 17:34:21 +13:00
|
|
|
$this->assertEquals($expect, $this->manifest->getDescendants());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetDescendantsOf()
|
|
|
|
{
|
2017-09-19 16:55:39 +12:00
|
|
|
$expect = [
|
|
|
|
'CLASSA' => ['classc' => 'ClassC', 'classd' => 'ClassD'],
|
|
|
|
'classa' => ['classc' => 'ClassC', 'classd' => 'ClassD'],
|
|
|
|
'CLASSC' => ['classd' => 'ClassD'],
|
|
|
|
'classc' => ['classd' => 'ClassD'],
|
|
|
|
];
|
2016-12-16 17:34:21 +13:00
|
|
|
|
|
|
|
foreach ($expect as $class => $desc) {
|
|
|
|
$this->assertEquals($desc, $this->manifest->getDescendantsOf($class));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetInterfaces()
|
|
|
|
{
|
|
|
|
$expect = array(
|
|
|
|
'interfacea' => "{$this->base}/module/interfaces/InterfaceA.php",
|
|
|
|
'interfaceb' => "{$this->base}/module/interfaces/InterfaceB.php"
|
|
|
|
);
|
|
|
|
$this->assertEquals($expect, $this->manifest->getInterfaces());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetImplementors()
|
|
|
|
{
|
2017-09-19 16:55:39 +12:00
|
|
|
$expect = [
|
|
|
|
'interfacea' => ['classb' => 'ClassB'],
|
|
|
|
'interfaceb' => ['classc' => 'ClassC'],
|
|
|
|
];
|
2016-12-16 17:34:21 +13:00
|
|
|
$this->assertEquals($expect, $this->manifest->getImplementors());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetImplementorsOf()
|
|
|
|
{
|
2017-09-19 16:55:39 +12:00
|
|
|
$expect = [
|
|
|
|
'INTERFACEA' => ['classb' => 'ClassB'],
|
|
|
|
'interfacea' => ['classb' => 'ClassB'],
|
|
|
|
'INTERFACEB' => ['classc' => 'ClassC'],
|
|
|
|
'interfaceb' => ['classc' => 'ClassC'],
|
|
|
|
];
|
2016-12-16 17:34:21 +13:00
|
|
|
|
|
|
|
foreach ($expect as $interface => $impl) {
|
|
|
|
$this->assertEquals($impl, $this->manifest->getImplementorsOf($interface));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testTestManifestIncludesTestClasses()
|
|
|
|
{
|
2017-09-19 16:55:39 +12:00
|
|
|
$this->assertArrayNotHasKey('testclassa', $this->manifest->getClasses());
|
|
|
|
$this->assertArrayHasKey('testclassa', $this->manifestTests->getClasses());
|
2016-12-16 17:34:21 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testManifestExcludeFilesPrefixedWithUnderscore()
|
|
|
|
{
|
2017-09-19 16:55:39 +12:00
|
|
|
$this->assertArrayNotHasKey('ignore', $this->manifest->getClasses());
|
2016-12-16 17:34:21 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assert that ClassManifest throws an exception when it encounters two files
|
|
|
|
* which contain classes with the same name
|
|
|
|
*/
|
|
|
|
public function testManifestWarnsAboutDuplicateClasses()
|
|
|
|
{
|
2017-05-17 17:40:13 +12:00
|
|
|
$this->expectException(Exception::class);
|
2017-06-22 22:50:45 +12:00
|
|
|
$manifest = new ClassManifest(dirname(__FILE__) . '/fixtures/classmanifest_duplicates');
|
|
|
|
$manifest->init();
|
2016-12-16 17:34:21 +13:00
|
|
|
}
|
2012-03-24 16:04:52 +13:00
|
|
|
}
|