2013-03-19 17:00:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2013-05-07 21:08:36 +00:00
|
|
|
namespace Test;
|
2013-03-19 17:00:15 +00:00
|
|
|
|
2016-05-20 13:38:20 +00:00
|
|
|
class AutoLoaderTest extends TestCase {
|
2013-05-07 21:08:36 +00:00
|
|
|
/**
|
|
|
|
* @var \OC\Autoloader $loader
|
|
|
|
*/
|
|
|
|
private $loader;
|
|
|
|
|
2014-11-10 21:59:50 +00:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
2015-08-18 13:35:02 +00:00
|
|
|
$this->loader = new \OC\AutoLoader([]);
|
2013-05-07 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testLegacyPath() {
|
2015-11-06 12:36:19 +00:00
|
|
|
$this->assertEquals([
|
|
|
|
\OC::$SERVERROOT . '/lib/private/legacy/files.php',
|
|
|
|
], $this->loader->findClass('OC_Files'));
|
2013-05-07 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
2016-05-19 13:45:34 +00:00
|
|
|
public function testLoadTestTestCase() {
|
|
|
|
$this->assertEquals([
|
|
|
|
\OC::$SERVERROOT . '/tests/lib/TestCase.php'
|
|
|
|
], $this->loader->findClass('Test\TestCase'));
|
|
|
|
}
|
|
|
|
|
2013-05-07 22:50:33 +00:00
|
|
|
public function testLoadCore() {
|
2015-11-06 12:36:19 +00:00
|
|
|
$this->assertEquals([
|
|
|
|
\OC::$SERVERROOT . '/lib/private/legacy/foo/bar.php',
|
|
|
|
], $this->loader->findClass('OC_Foo_Bar'));
|
2013-05-07 21:08:36 +00:00
|
|
|
}
|
|
|
|
|
2013-05-07 22:50:33 +00:00
|
|
|
public function testLoadPublicNamespace() {
|
2016-05-19 14:04:09 +00:00
|
|
|
$this->assertEquals([], $this->loader->findClass('OCP\Foo\Bar'));
|
2013-05-07 22:50:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testLoadAppNamespace() {
|
|
|
|
$result = $this->loader->findClass('OCA\Files\Foobar');
|
|
|
|
$this->assertEquals(2, count($result));
|
|
|
|
$this->assertStringEndsWith('apps/files/foobar.php', $result[0]);
|
|
|
|
$this->assertStringEndsWith('apps/files/lib/foobar.php', $result[1]);
|
2013-05-07 21:08:36 +00:00
|
|
|
}
|
2015-11-06 12:36:19 +00:00
|
|
|
|
|
|
|
public function testLoadCoreNamespaceCore() {
|
2016-04-06 09:01:17 +00:00
|
|
|
$this->assertEquals([], $this->loader->findClass('OC\Core\Foo\Bar'));
|
2015-11-06 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testLoadCoreNamespaceSettings() {
|
2016-04-06 09:13:15 +00:00
|
|
|
$this->assertEquals([], $this->loader->findClass('OC\Settings\Foo\Bar'));
|
2015-11-06 12:36:19 +00:00
|
|
|
}
|
2013-03-19 17:00:15 +00:00
|
|
|
}
|