mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
* Move a-b to PSR-4 * Move c-d to PSR-4 * Move e+g to PSR-4 * Move h-l to PSR-4 * Move m-r to PSR-4 * Move s-u to PSR-4 * Move files/ to PSR-4 * Move remaining tests to PSR-4 * Remove Test\ from old autoloader
72 lines
2 KiB
PHP
72 lines
2 KiB
PHP
<?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.
|
|
*/
|
|
|
|
namespace Test;
|
|
|
|
class AutoLoaderTest extends TestCase {
|
|
/**
|
|
* @var \OC\Autoloader $loader
|
|
*/
|
|
private $loader;
|
|
|
|
protected function setUp() {
|
|
parent::setUp();
|
|
$this->loader = new \OC\AutoLoader([]);
|
|
}
|
|
|
|
public function testLeadingSlashOnClassName() {
|
|
$this->assertEquals([
|
|
\OC::$SERVERROOT . '/lib/public/files/storage/local.php',
|
|
], $this->loader->findClass('\OCP\Files\Storage\Local'));
|
|
}
|
|
|
|
public function testNoLeadingSlashOnClassName() {
|
|
$this->assertEquals([
|
|
\OC::$SERVERROOT . '/lib/public/files/storage/local.php',
|
|
], $this->loader->findClass('OCP\Files\Storage\Local'));
|
|
}
|
|
|
|
public function testLegacyPath() {
|
|
$this->assertEquals([
|
|
\OC::$SERVERROOT . '/lib/private/legacy/files.php',
|
|
], $this->loader->findClass('OC_Files'));
|
|
}
|
|
|
|
public function testLoadTestTestCase() {
|
|
$this->assertEquals([
|
|
\OC::$SERVERROOT . '/tests/lib/TestCase.php'
|
|
], $this->loader->findClass('Test\TestCase'));
|
|
}
|
|
|
|
public function testLoadCore() {
|
|
$this->assertEquals([
|
|
\OC::$SERVERROOT . '/lib/private/legacy/foo/bar.php',
|
|
], $this->loader->findClass('OC_Foo_Bar'));
|
|
}
|
|
|
|
public function testLoadPublicNamespace() {
|
|
$this->assertEquals([
|
|
\OC::$SERVERROOT . '/lib/public/foo/bar.php',
|
|
], $this->loader->findClass('OCP\Foo\Bar'));
|
|
}
|
|
|
|
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]);
|
|
}
|
|
|
|
public function testLoadCoreNamespaceCore() {
|
|
$this->assertEquals([], $this->loader->findClass('OC\Core\Foo\Bar'));
|
|
}
|
|
|
|
public function testLoadCoreNamespaceSettings() {
|
|
$this->assertEquals([], $this->loader->findClass('OC\Settings\Foo\Bar'));
|
|
}
|
|
}
|